Class: Aws::RDS::Types::TenantDatabasePendingModifiedValues
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::TenantDatabasePendingModifiedValues
 
- 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
- 
  
    
      #master_user_password  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The master password for the tenant database. 
- 
  
    
      #tenant_db_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the tenant database. 
Instance Attribute Details
#master_user_password ⇒ String
The master password for the tenant database.
| 27429 27430 27431 27432 27433 27434 | # File 'lib/aws-sdk-rds/types.rb', line 27429 class TenantDatabasePendingModifiedValues < Struct.new( :master_user_password, :tenant_db_name) SENSITIVE = [:master_user_password] include Aws::Structure end | 
#tenant_db_name ⇒ String
The name of the tenant database.
| 27429 27430 27431 27432 27433 27434 | # File 'lib/aws-sdk-rds/types.rb', line 27429 class TenantDatabasePendingModifiedValues < Struct.new( :master_user_password, :tenant_db_name) SENSITIVE = [:master_user_password] include Aws::Structure end |