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

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


26967
26968
26969
26970
26971
26972
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 26967

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)


26967
26968
26969
26970
26971
26972
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 26967

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