Class: Aws::Neptune::Types::FailoverDBClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptune::Types::FailoverDBClusterMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptune/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_cluster_identifier ⇒ String
A DB cluster identifier to force a failover for.
-
#target_db_instance_identifier ⇒ String
The name of the instance to promote to the primary instance.
Instance Attribute Details
#db_cluster_identifier ⇒ String
A DB cluster identifier to force a failover for. This parameter is not case-sensitive.
Constraints:
-
Must match the identifier of an existing DBCluster.
^
5177 5178 5179 5180 5181 5182 |
# File 'lib/aws-sdk-neptune/types.rb', line 5177 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 instance to promote to the primary instance.
You must specify the instance identifier for an Read Replica in the DB cluster. For example, ‘mydbcluster-replica1`.
5177 5178 5179 5180 5181 5182 |
# File 'lib/aws-sdk-neptune/types.rb', line 5177 class FailoverDBClusterMessage < Struct.new( :db_cluster_identifier, :target_db_instance_identifier) SENSITIVE = [] include Aws::Structure end |