Class: Aws::Neptune::Types::FailoverGlobalClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptune::Types::FailoverGlobalClusterMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptune/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#global_cluster_identifier ⇒ String
Identifier of the Neptune global database that should be failed over.
-
#target_db_cluster_identifier ⇒ String
The Amazon Resource Name (ARN) of the secondary Neptune DB cluster that you want to promote to primary for the global database.
Instance Attribute Details
#global_cluster_identifier ⇒ String
Identifier of the Neptune global database that should be failed over. The identifier is the unique key assigned by the user when the Neptune global database was created. In other words, it’s the name of the global database that you want to fail over.
Constraints: Must match the identifier of an existing Neptune global database.
5216 5217 5218 5219 5220 5221 |
# File 'lib/aws-sdk-neptune/types.rb', line 5216 class FailoverGlobalClusterMessage < Struct.new( :global_cluster_identifier, :target_db_cluster_identifier) SENSITIVE = [] include Aws::Structure end |
#target_db_cluster_identifier ⇒ String
The Amazon Resource Name (ARN) of the secondary Neptune DB cluster that you want to promote to primary for the global database.
5216 5217 5218 5219 5220 5221 |
# File 'lib/aws-sdk-neptune/types.rb', line 5216 class FailoverGlobalClusterMessage < Struct.new( :global_cluster_identifier, :target_db_cluster_identifier) SENSITIVE = [] include Aws::Structure end |