Class: Aws::RDS::Types::SwitchoverGlobalClusterMessage

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#global_cluster_identifierString

The identifier of the global database cluster to switch over. This parameter isn’t case-sensitive.

Constraints:

  • Must match the identifier of an existing global database cluster (Aurora global database).

^

Returns:

  • (String)


27193
27194
27195
27196
27197
27198
# File 'lib/aws-sdk-rds/types.rb', line 27193

class SwitchoverGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :target_db_cluster_identifier)
  SENSITIVE = []
  include Aws::Structure
end

#target_db_cluster_identifierString

The identifier of the secondary Aurora DB cluster to promote to the new primary for the global database cluster. Use the Amazon Resource Name (ARN) for the identifier so that Aurora can locate the cluster in its Amazon Web Services Region.

Returns:

  • (String)


27193
27194
27195
27196
27197
27198
# File 'lib/aws-sdk-rds/types.rb', line 27193

class SwitchoverGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :target_db_cluster_identifier)
  SENSITIVE = []
  include Aws::Structure
end