Class: Aws::OpenSearchService::Types::MasterUserOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-opensearchservice/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

Instance Attribute Details

#master_user_arnString

Amazon Resource Name (ARN) for the master user. Only specify if InternalUserDatabaseEnabled is false.

Returns:

  • (String)


4571
4572
4573
4574
4575
4576
4577
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4571

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_nameString

User name for the master user. Only specify if InternalUserDatabaseEnabled is true.

Returns:

  • (String)


4571
4572
4573
4574
4575
4576
4577
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4571

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_passwordString

Password for the master user. Only specify if InternalUserDatabaseEnabled is true.

Returns:

  • (String)


4571
4572
4573
4574
4575
4576
4577
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 4571

class MasterUserOptions < Struct.new(
  :master_user_arn,
  :master_user_name,
  :master_user_password)
  SENSITIVE = [:master_user_name, :master_user_password]
  include Aws::Structure
end