Class: Aws::RDS::Types::TenantDatabasePendingModifiedValues

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

A response element in the ModifyTenantDatabase operation that describes changes that will be applied. Specific changes are identified by subelements.

Constant Summary collapse

SENSITIVE =
[:master_user_password]

Instance Attribute Summary collapse

Instance Attribute Details

#master_user_passwordString

The master password for the tenant database.

Returns:

  • (String)


30000
30001
30002
30003
30004
30005
# File 'lib/aws-sdk-rds/types.rb', line 30000

class TenantDatabasePendingModifiedValues < Struct.new(
  :master_user_password,
  :tenant_db_name)
  SENSITIVE = [:master_user_password]
  include Aws::Structure
end

#tenant_db_nameString

The name of the tenant database.

Returns:

  • (String)


30000
30001
30002
30003
30004
30005
# File 'lib/aws-sdk-rds/types.rb', line 30000

class TenantDatabasePendingModifiedValues < Struct.new(
  :master_user_password,
  :tenant_db_name)
  SENSITIVE = [:master_user_password]
  include Aws::Structure
end