Class: Aws::RDS::Types::FailoverDBClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::FailoverDBClusterMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_cluster_identifier ⇒ String
The identifier of the DB cluster to force a failover for.
-
#target_db_instance_identifier ⇒ String
The name of the DB instance to promote to the primary DB instance.
Instance Attribute Details
#db_cluster_identifier ⇒ String
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.
^
15965 15966 15967 15968 15969 15970 |
# File 'lib/aws-sdk-rds/types.rb', line 15965 class FailoverDBClusterMessage < Struct.new( :db_cluster_identifier, :target_db_instance_identifier) SENSITIVE = [] include Aws::Structure end |
#target_db_instance_identifier ⇒ String
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.
15965 15966 15967 15968 15969 15970 |
# File 'lib/aws-sdk-rds/types.rb', line 15965 class FailoverDBClusterMessage < Struct.new( :db_cluster_identifier, :target_db_instance_identifier) SENSITIVE = [] include Aws::Structure end |