Class: Aws::OpenSearchService::Types::MasterUserOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::MasterUserOptions
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/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 OpenSearch Service domain's internal database.
-
#master_user_password ⇒ String
The master user's password, which is stored in the Amazon OpenSearch Service domain's internal database.
Instance Attribute Details
#master_user_arn ⇒ String
ARN for the master user (if IAM is enabled).
3695 3696 3697 3698 3699 3700 3701 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3695 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 OpenSearch Service domain's internal database.
3695 3696 3697 3698 3699 3700 3701 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3695 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 OpenSearch Service domain's internal database.
3695 3696 3697 3698 3699 3700 3701 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3695 class MasterUserOptions < Struct.new( :master_user_arn, :master_user_name, :master_user_password) SENSITIVE = [:master_user_name, :master_user_password] include Aws::Structure end |