Class: Aws::DocDB::Types::GlobalClusterMember
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DocDB::Types::GlobalClusterMember
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-docdb/types.rb
 
Overview
A data structure with information about any primary and secondary clusters associated with an Amazon DocumentDB global clusters.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #db_cluster_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) for each Amazon DocumentDB cluster.
 - 
  
    
      #is_writer  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether the Amazon DocumentDB cluster is the primary cluster (that is, has read-write capability) for the Amazon DocumentDB global cluster with which it is associated.
 - 
  
    
      #readers  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Aurora global cluster.
 
Instance Attribute Details
#db_cluster_arn ⇒ String
The Amazon Resource Name (ARN) for each Amazon DocumentDB cluster.
      3684 3685 3686 3687 3688 3689 3690  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 3684 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer) SENSITIVE = [] include Aws::Structure end  | 
  
#is_writer ⇒ Boolean
Specifies whether the Amazon DocumentDB cluster is the primary cluster (that is, has read-write capability) for the Amazon DocumentDB global cluster with which it is associated.
      3684 3685 3686 3687 3688 3689 3690  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 3684 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer) SENSITIVE = [] include Aws::Structure end  | 
  
#readers ⇒ Array<String>
The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Aurora global cluster.
      3684 3685 3686 3687 3688 3689 3690  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 3684 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer) SENSITIVE = [] include Aws::Structure end  |