Class: Aws::RDS::Types::PromoteReadReplicaDBClusterMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::PromoteReadReplicaDBClusterMessage
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_cluster_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The identifier of the DB cluster read replica to promote. 
Instance Attribute Details
#db_cluster_identifier ⇒ String
The identifier of the DB cluster read replica to promote. This parameter isn’t case-sensitive.
Constraints:
- 
Must match the identifier of an existing DB cluster read replica. 
^
Example: ‘my-cluster-replica1`
| 21251 21252 21253 21254 21255 | # File 'lib/aws-sdk-rds/types.rb', line 21251 class PromoteReadReplicaDBClusterMessage < Struct.new( :db_cluster_identifier) SENSITIVE = [] include Aws::Structure end |