Class: Aws::OpenSearchService::Types::MasterUserOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::MasterUserOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opensearchservice/types.rb
Overview
Credentials for the master user for a domain.
Constant Summary collapse
- SENSITIVE =
[:master_user_name, :master_user_password]
Instance Attribute Summary collapse
-
#master_user_arn ⇒ String
Amazon Resource Name (ARN) for the master user.
-
#master_user_name ⇒ String
User name for the master user.
-
#master_user_password ⇒ String
Password for the master user.
Instance Attribute Details
#master_user_arn ⇒ String
Amazon Resource Name (ARN) for the master user. Only specify if ‘InternalUserDatabaseEnabled` is `false`.
4721 4722 4723 4724 4725 4726 4727 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4721 class MasterUserOptions < Struct.new( :master_user_arn, :master_user_name, :master_user_password) SENSITIVE = [:master_user_name, :master_user_password] include Aws::Structure end |
#master_user_name ⇒ String
User name for the master user. Only specify if ‘InternalUserDatabaseEnabled` is `true`.
4721 4722 4723 4724 4725 4726 4727 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4721 class MasterUserOptions < Struct.new( :master_user_arn, :master_user_name, :master_user_password) SENSITIVE = [:master_user_name, :master_user_password] include Aws::Structure end |
#master_user_password ⇒ String
Password for the master user. Only specify if ‘InternalUserDatabaseEnabled` is `true`.
4721 4722 4723 4724 4725 4726 4727 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4721 class MasterUserOptions < Struct.new( :master_user_arn, :master_user_name, :master_user_password) SENSITIVE = [:master_user_name, :master_user_password] include Aws::Structure end |