Class: Aws::ElasticsearchService::Types::MasterUserOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::MasterUserOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Credentials for the master user: username and password, ARN, or both.
Constant Summary collapse
- SENSITIVE =
[:master_user_name, :master_user_password]
Instance Attribute Summary collapse
-
#master_user_arn ⇒ String
ARN for the master user (if IAM is enabled).
-
#master_user_name ⇒ String
The master user’s username, which is stored in the Amazon Elasticsearch Service domain’s internal database.
-
#master_user_password ⇒ String
The master user’s password, which is stored in the Amazon Elasticsearch Service domain’s internal database.
Instance Attribute Details
#master_user_arn ⇒ String
ARN for the master user (if IAM is enabled).
3133 3134 3135 3136 3137 3138 3139 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3133 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
The master user’s username, which is stored in the Amazon Elasticsearch Service domain’s internal database.
3133 3134 3135 3136 3137 3138 3139 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3133 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
The master user’s password, which is stored in the Amazon Elasticsearch Service domain’s internal database.
3133 3134 3135 3136 3137 3138 3139 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3133 class MasterUserOptions < Struct.new( :master_user_arn, :master_user_name, :master_user_password) SENSITIVE = [:master_user_name, :master_user_password] include Aws::Structure end |