Class: Aws::RDS::Types::GlobalClusterMember

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

A data structure with information about any primary and secondary clusters associated with an Aurora global database.

Instance Attribute Summary collapse

Instance Attribute Details

#db_cluster_arnString

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

Returns:

  • (String)


9355
9356
9357
9358
9359
9360
# File 'lib/aws-sdk-rds/types.rb', line 9355

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

#is_writerBoolean

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.

Returns:

  • (Boolean)


9355
9356
9357
9358
9359
9360
# File 'lib/aws-sdk-rds/types.rb', line 9355

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

#readersArray<String>

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

Returns:

  • (Array<String>)


9355
9356
9357
9358
9359
9360
# File 'lib/aws-sdk-rds/types.rb', line 9355

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