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:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.MasterUserOptionsPropertystatic final classAn implementation forCfnDomain.MasterUserOptionsProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getMasterUserArn
Amazon Resource Name (ARN) for the master user.The ARN can point to an IAM user or role. This property is required for Amazon Cognito to work, and it must match the role configured for Cognito. Only specify if
InternalUserDatabaseEnabledis false in AdvancedSecurityOptionsInput .- See Also:
 
 - 
getMasterUserName
Username for the master user. Only specify ifInternalUserDatabaseEnabledis true in AdvancedSecurityOptionsInput .If you don't want to specify this value directly within the template, you can use a dynamic reference instead.
- See Also:
 
 - 
getMasterUserPassword
Password for the master user. Only specify ifInternalUserDatabaseEnabledis true in AdvancedSecurityOptionsInput .If you don't want to specify this value directly within the template, you can use a dynamic reference instead.
- See Also:
 
 - 
builder
 
 -