Interface CfnBroker.LdapServerMetadataProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBroker.LdapServerMetadataProperty.Jsii$Proxy
Enclosing class:
CfnBroker

@Stability(Stable) public static interface CfnBroker.LdapServerMetadataProperty extends software.amazon.jsii.JsiiSerializable
Optional. The metadata of the LDAP server used to authenticate and authorize connections to the broker.

Does not apply to RabbitMQ brokers.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.amazonmq.*;
 LdapServerMetadataProperty ldapServerMetadataProperty = LdapServerMetadataProperty.builder()
         .hosts(List.of("hosts"))
         .roleBase("roleBase")
         .roleSearchMatching("roleSearchMatching")
         .serviceAccountPassword("serviceAccountPassword")
         .serviceAccountUsername("serviceAccountUsername")
         .userBase("userBase")
         .userSearchMatching("userSearchMatching")
         // the properties below are optional
         .roleName("roleName")
         .roleSearchSubtree(false)
         .userRoleName("userRoleName")
         .userSearchSubtree(false)
         .build();
 

See Also: