Class: Aws::RDS::Types::GlobalClusterMember
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::GlobalClusterMember
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
A data structure with information about any primary and secondary clusters associated with an Aurora global database.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_cluster_arn ⇒ String
The Amazon Resource Name (ARN) for each Aurora cluster.
-
#global_write_forwarding_status ⇒ String
Specifies whether a secondary cluster in an Aurora global database has write forwarding enabled, not enabled, or is in the process of enabling it.
-
#is_writer ⇒ Boolean
Specifies whether the Aurora cluster is the primary cluster (that is, has read-write capability) for the Aurora global database with which it is associated.
-
#readers ⇒ Array<String>
The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Aurora global database.
Instance Attribute Details
#db_cluster_arn ⇒ String
The Amazon Resource Name (ARN) for each Aurora cluster.
14138 14139 14140 14141 14142 14143 14144 14145 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 14138 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer, :global_write_forwarding_status) SENSITIVE = [] include Aws::Structure end |
#global_write_forwarding_status ⇒ String
Specifies whether a secondary cluster in an Aurora global database has write forwarding enabled, not enabled, or is in the process of enabling it.
14138 14139 14140 14141 14142 14143 14144 14145 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 14138 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer, :global_write_forwarding_status) SENSITIVE = [] include Aws::Structure end |
#is_writer ⇒ Boolean
Specifies whether the Aurora cluster is the primary cluster (that is, has read-write capability) for the Aurora global database with which it is associated.
14138 14139 14140 14141 14142 14143 14144 14145 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 14138 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer, :global_write_forwarding_status) SENSITIVE = [] include Aws::Structure end |
#readers ⇒ Array<String>
The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Aurora global database.
14138 14139 14140 14141 14142 14143 14144 14145 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 14138 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer, :global_write_forwarding_status) SENSITIVE = [] include Aws::Structure end |