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`.
5386 5387 5388 5389 5390 5391 5392 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5386 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`.
5386 5387 5388 5389 5390 5391 5392 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5386 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`.
5386 5387 5388 5389 5390 5391 5392 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5386 class MasterUserOptions < Struct.new( :master_user_arn, :master_user_name, :master_user_password) SENSITIVE = [:master_user_name, :master_user_password] include Aws::Structure end |