Class: Aws::RDS::Types::FailoverDBClusterMessage

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#db_cluster_identifierString

The identifier of the DB cluster to force a failover for. This parameter isn't case-sensitive.

Constraints:

  • Must match the identifier of an existing DB cluster.

^

Returns:

  • (String)


15549
15550
15551
15552
15553
15554
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 15549

class FailoverDBClusterMessage < Struct.new(
  :db_cluster_identifier,
  :target_db_instance_identifier)
  SENSITIVE = []
  include Aws::Structure
end

#target_db_instance_identifierString

The name of the DB instance to promote to the primary DB instance.

Specify the DB instance identifier for an Aurora Replica or a Multi-AZ readable standby in the DB cluster, for example mydbcluster-replica1.

This setting isn't supported for RDS for MySQL Multi-AZ DB clusters.

Returns:

  • (String)


15549
15550
15551
15552
15553
15554
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 15549

class FailoverDBClusterMessage < Struct.new(
  :db_cluster_identifier,
  :target_db_instance_identifier)
  SENSITIVE = []
  include Aws::Structure
end