Class: Aws::Neptune::Types::GlobalClusterMember

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-neptune/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

Instance Attribute Details

#db_cluster_arnString

The Amazon Resource Name (ARN) for each Neptune cluster.

Returns:

  • (String)


5351
5352
5353
5354
5355
5356
5357
# File 'gems/aws-sdk-neptune/lib/aws-sdk-neptune/types.rb', line 5351

class GlobalClusterMember < Struct.new(
  :db_cluster_arn,
  :readers,
  :is_writer)
  SENSITIVE = []
  include Aws::Structure
end

#is_writerBoolean

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.

Returns:

  • (Boolean)


5351
5352
5353
5354
5355
5356
5357
# File 'gems/aws-sdk-neptune/lib/aws-sdk-neptune/types.rb', line 5351

class GlobalClusterMember < Struct.new(
  :db_cluster_arn,
  :readers,
  :is_writer)
  SENSITIVE = []
  include Aws::Structure
end

#readersArray<String>

The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.

Returns:

  • (Array<String>)


5351
5352
5353
5354
5355
5356
5357
# File 'gems/aws-sdk-neptune/lib/aws-sdk-neptune/types.rb', line 5351

class GlobalClusterMember < Struct.new(
  :db_cluster_arn,
  :readers,
  :is_writer)
  SENSITIVE = []
  include Aws::Structure
end