LdapsSettingsArgs

data class LdapsSettingsArgs(val externalAccess: Output<Either<String, ExternalAccess>>? = null, val ldaps: Output<Either<String, Ldaps>>? = null, val pfxCertificate: Output<String>? = null, val pfxCertificatePassword: Output<String>? = null) : ConvertibleToJava<LdapsSettingsArgs>

Secure LDAP Settings

Constructors

Link copied to clipboard
constructor(externalAccess: Output<Either<String, ExternalAccess>>? = null, ldaps: Output<Either<String, Ldaps>>? = null, pfxCertificate: Output<String>? = null, pfxCertificatePassword: Output<String>? = null)

Properties

Link copied to clipboard
val externalAccess: Output<Either<String, ExternalAccess>>? = null

A flag to determine whether or not Secure LDAP access over the internet is enabled or disabled.

Link copied to clipboard
val ldaps: Output<Either<String, Ldaps>>? = null

A flag to determine whether or not Secure LDAP is enabled or disabled.

Link copied to clipboard
val pfxCertificate: Output<String>? = null

The certificate required to configure Secure LDAP. The parameter passed here should be a base64encoded representation of the certificate pfx file.

Link copied to clipboard
val pfxCertificatePassword: Output<String>? = null

The password to decrypt the provided Secure LDAP certificate pfx file.

Functions

Link copied to clipboard
open override fun toJava(): LdapsSettingsArgs