Interface MasterUserOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MasterUserOptions.Builder,MasterUserOptions>,SdkBuilder<MasterUserOptions.Builder,MasterUserOptions>,SdkPojo
- Enclosing class:
- MasterUserOptions
public static interface MasterUserOptions.Builder extends SdkPojo, CopyableBuilder<MasterUserOptions.Builder,MasterUserOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MasterUserOptions.BuildermasterUserARN(String masterUserARN)ARN for the master user (if IAM is enabled).MasterUserOptions.BuildermasterUserName(String masterUserName)The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.MasterUserOptions.BuildermasterUserPassword(String masterUserPassword)The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
masterUserARN
MasterUserOptions.Builder masterUserARN(String masterUserARN)
ARN for the master user (if IAM is enabled).
- Parameters:
masterUserARN- ARN for the master user (if IAM is enabled).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
masterUserName
MasterUserOptions.Builder masterUserName(String masterUserName)
The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.
- Parameters:
masterUserName- The master user's username, which is stored in the Amazon Elasticsearch Service domain's internal database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
masterUserPassword
MasterUserOptions.Builder masterUserPassword(String masterUserPassword)
The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.
- Parameters:
masterUserPassword- The master user's password, which is stored in the Amazon Elasticsearch Service domain's internal database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-