Class: Aws::RDS::Types::ModifyGlobalClusterMessage

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

Overview

Note:

When making an API call, you may pass ModifyGlobalClusterMessage data as a hash:

{
  global_cluster_identifier: "String",
  new_global_cluster_identifier: "String",
  deletion_protection: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#deletion_protectionBoolean

Indicates if the global database cluster has deletion protection enabled. The global database cluster can’t be deleted when this value is set to true.

Returns:

  • (Boolean)


11131
11132
11133
11134
11135
11136
# File 'lib/aws-sdk-rds/types.rb', line 11131

class ModifyGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :new_global_cluster_identifier,
  :deletion_protection)
  include Aws::Structure
end

#global_cluster_identifierString

The DB cluster identifier for the global cluster being modified. This parameter is not case-sensitive.

Constraints:

  • Must match the identifier of an existing global database cluster.

^

Returns:

  • (String)


11131
11132
11133
11134
11135
11136
# File 'lib/aws-sdk-rds/types.rb', line 11131

class ModifyGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :new_global_cluster_identifier,
  :deletion_protection)
  include Aws::Structure
end

#new_global_cluster_identifierString

The new cluster identifier for the global database cluster when modifying a global database cluster. This value is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens

  • The first character must be a letter

  • Can’t end with a hyphen or contain two consecutive hyphens

Example: ‘my-cluster2`

Returns:

  • (String)


11131
11132
11133
11134
11135
11136
# File 'lib/aws-sdk-rds/types.rb', line 11131

class ModifyGlobalClusterMessage < Struct.new(
  :global_cluster_identifier,
  :new_global_cluster_identifier,
  :deletion_protection)
  include Aws::Structure
end