Interface CfnDomain.MasterUserOptionsProperty

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

@Stability(Stable) public static interface CfnDomain.MasterUserOptionsProperty extends software.amazon.jsii.JsiiSerializable
Specifies information about the master user.

Required if InternalUserDatabaseEnabled is true in AdvancedSecurityOptions .

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.opensearchservice.*;
 MasterUserOptionsProperty masterUserOptionsProperty = MasterUserOptionsProperty.builder()
         .masterUserArn("masterUserArn")
         .masterUserName("masterUserName")
         .masterUserPassword("masterUserPassword")
         .build();
 

See Also: