Class: Aws::Neptune::Types::FailoverGlobalClusterMessage

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#global_cluster_identifierString

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.

Returns:

  • (String)


5216
5217
5218
5219
5220
5221
# File 'gems/aws-sdk-neptune/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_identifierString

The Amazon Resource Name (ARN) of the secondary Neptune DB cluster that you want to promote to primary for the global database.

Returns:

  • (String)


5216
5217
5218
5219
5220
5221
# File 'gems/aws-sdk-neptune/lib/aws-sdk-neptune/types.rb', line 5216

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