Class: Aws::RDS::Types::GlobalClusterMember
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::GlobalClusterMember
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
A data structure with information about any primary and secondary clusters associated with a global cluster (Aurora global database).
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #db_cluster_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) for each Aurora DB cluster in the global cluster.
 - 
  
    
      #global_write_forwarding_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of write forwarding for a secondary cluster in the global cluster.
 - 
  
    
      #is_writer  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the Aurora DB cluster is the primary cluster (that is, has read-write capability) for the global cluster with which it is associated.
 - 
  
    
      #readers  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the global cluster.
 - 
  
    
      #synchronization_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of synchronization of each Aurora DB cluster in the global cluster.
 
Instance Attribute Details
#db_cluster_arn ⇒ String
The Amazon Resource Name (ARN) for each Aurora DB cluster in the global cluster.
      16394 16395 16396 16397 16398 16399 16400 16401 16402  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 16394 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer, :global_write_forwarding_status, :synchronization_status) SENSITIVE = [] include Aws::Structure end  | 
  
#global_write_forwarding_status ⇒ String
The status of write forwarding for a secondary cluster in the global cluster.
      16394 16395 16396 16397 16398 16399 16400 16401 16402  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 16394 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer, :global_write_forwarding_status, :synchronization_status) SENSITIVE = [] include Aws::Structure end  | 
  
#is_writer ⇒ Boolean
Indicates whether the Aurora DB cluster is the primary cluster (that is, has read-write capability) for the global cluster with which it is associated.
      16394 16395 16396 16397 16398 16399 16400 16401 16402  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 16394 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer, :global_write_forwarding_status, :synchronization_status) SENSITIVE = [] include Aws::Structure end  | 
  
#readers ⇒ Array<String>
The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the global cluster.
      16394 16395 16396 16397 16398 16399 16400 16401 16402  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 16394 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer, :global_write_forwarding_status, :synchronization_status) SENSITIVE = [] include Aws::Structure end  | 
  
#synchronization_status ⇒ String
The status of synchronization of each Aurora DB cluster in the global cluster.
      16394 16395 16396 16397 16398 16399 16400 16401 16402  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 16394 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer, :global_write_forwarding_status, :synchronization_status) SENSITIVE = [] include Aws::Structure end  |