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

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

Instance Attribute Details

#db_cluster_arnString

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

Returns:

  • (String)


3813
3814
3815
3816
3817
3818
3819
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 3813

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)


3813
3814
3815
3816
3817
3818
3819
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 3813

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>)


3813
3814
3815
3816
3817
3818
3819
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 3813

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