Class: Aws::RDS::Types::DBClusterMember
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::DBClusterMember
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Contains information about an instance that is part of a DB cluster.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_cluster_parameter_group_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the status of the DB cluster parameter group for this member of the DB cluster. 
- 
  
    
      #db_instance_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the instance identifier for this member of the DB cluster. 
- 
  
    
      #is_cluster_writer  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Indicates whether the cluster member is the primary DB instance for the DB cluster. 
- 
  
    
      #promotion_tier  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. 
Instance Attribute Details
#db_cluster_parameter_group_status ⇒ String
Specifies the status of the DB cluster parameter group for this member of the DB cluster.
| 7808 7809 7810 7811 7812 7813 7814 7815 | # File 'lib/aws-sdk-rds/types.rb', line 7808 class DBClusterMember < Struct.new( :db_instance_identifier, :is_cluster_writer, :db_cluster_parameter_group_status, :promotion_tier) SENSITIVE = [] include Aws::Structure end | 
#db_instance_identifier ⇒ String
Specifies the instance identifier for this member of the DB cluster.
| 7808 7809 7810 7811 7812 7813 7814 7815 | # File 'lib/aws-sdk-rds/types.rb', line 7808 class DBClusterMember < Struct.new( :db_instance_identifier, :is_cluster_writer, :db_cluster_parameter_group_status, :promotion_tier) SENSITIVE = [] include Aws::Structure end | 
#is_cluster_writer ⇒ Boolean
Indicates whether the cluster member is the primary DB instance for the DB cluster.
| 7808 7809 7810 7811 7812 7813 7814 7815 | # File 'lib/aws-sdk-rds/types.rb', line 7808 class DBClusterMember < Struct.new( :db_instance_identifier, :is_cluster_writer, :db_cluster_parameter_group_status, :promotion_tier) SENSITIVE = [] include Aws::Structure end | 
#promotion_tier ⇒ Integer
A value that specifies the order in which an Aurora Replica is promoted to the primary instance after a failure of the existing primary instance. For more information, see [ Fault Tolerance for an Aurora DB Cluster] in the *Amazon Aurora User Guide*.
| 7808 7809 7810 7811 7812 7813 7814 7815 | # File 'lib/aws-sdk-rds/types.rb', line 7808 class DBClusterMember < Struct.new( :db_instance_identifier, :is_cluster_writer, :db_cluster_parameter_group_status, :promotion_tier) SENSITIVE = [] include Aws::Structure end |