Class: Aws::Neptune::Types::GlobalClusterMember
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptune::Types::GlobalClusterMember
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptune/types.rb
Overview
A data structure with information about any primary and secondary clusters associated with an Neptune global database.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_cluster_arn ⇒ String
The Amazon Resource Name (ARN) for each Neptune cluster.
-
#is_writer ⇒ Boolean
Specifies whether the Neptune cluster is the primary cluster (that is, has read-write capability) for the Neptune global database with which it is associated.
-
#readers ⇒ Array<String>
The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.
Instance Attribute Details
#db_cluster_arn ⇒ String
The Amazon Resource Name (ARN) for each Neptune cluster.
5351 5352 5353 5354 5355 5356 5357 |
# File 'lib/aws-sdk-neptune/types.rb', line 5351 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer) SENSITIVE = [] include Aws::Structure end |
#is_writer ⇒ Boolean
Specifies whether the Neptune cluster is the primary cluster (that is, has read-write capability) for the Neptune global database with which it is associated.
5351 5352 5353 5354 5355 5356 5357 |
# File 'lib/aws-sdk-neptune/types.rb', line 5351 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 Neptune global database.
5351 5352 5353 5354 5355 5356 5357 |
# File 'lib/aws-sdk-neptune/types.rb', line 5351 class GlobalClusterMember < Struct.new( :db_cluster_arn, :readers, :is_writer) SENSITIVE = [] include Aws::Structure end |