Class: Aws::DocDB::Types::GlobalClusterMember
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::GlobalClusterMember
- Defined in:
- gems/aws-sdk-docdb/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.
3890 3891 3892 3893 3894 3895 3896 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 3890 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.
3890 3891 3892 3893 3894 3895 3896 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 3890 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.
3890 3891 3892 3893 3894 3895 3896 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 3890 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer) SENSITIVE = [] include Aws::Structure end |