Class: Aws::DocDB::Types::GlobalClusterMember

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#db_cluster_arnString

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

Returns:

  • (String)


3974
3975
3976
3977
3978
3979
3980
# File 'lib/aws-sdk-docdb/types.rb', line 3974

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

#is_writerBoolean

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.

Returns:

  • (Boolean)


3974
3975
3976
3977
3978
3979
3980
# File 'lib/aws-sdk-docdb/types.rb', line 3974

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 Aurora global cluster.

Returns:

  • (Array<String>)


3974
3975
3976
3977
3978
3979
3980
# File 'lib/aws-sdk-docdb/types.rb', line 3974

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