Class: Aws::ElasticsearchService::Types::MasterUserOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::MasterUserOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Note:
When making an API call, you may pass MasterUserOptions data as a hash:
{
master_user_arn: "ARN",
master_user_name: "Username",
master_user_password: "Password",
}
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).
3457 3458 3459 3460 3461 3462 3463 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3457 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.
3457 3458 3459 3460 3461 3462 3463 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3457 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.
3457 3458 3459 3460 3461 3462 3463 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3457 class MasterUserOptions < Struct.new( :master_user_arn, :master_user_name, :master_user_password) SENSITIVE = [:master_user_name, :master_user_password] include Aws::Structure end |