Class: Aws::DocDB::Types::ModifyGlobalClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::ModifyGlobalClusterMessage
- Defined in:
- gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb
Overview
Represents the input to ModifyGlobalCluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deletion_protection ⇒ Boolean
Indicates if the global cluster has deletion protection enabled.
-
#global_cluster_identifier ⇒ String
The identifier for the global cluster being modified.
-
#new_global_cluster_identifier ⇒ String
The new identifier for a global cluster when you modify a global cluster.
Instance Attribute Details
#deletion_protection ⇒ Boolean
Indicates if the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled.
4659 4660 4661 4662 4663 4664 4665 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 4659 class ModifyGlobalClusterMessage < Struct.new( :global_cluster_identifier, :new_global_cluster_identifier, :deletion_protection) SENSITIVE = [] include Aws::Structure end |
#global_cluster_identifier ⇒ String
The identifier for the global cluster being modified. This parameter isn't case-sensitive.
Constraints:
- Must match the identifier of an existing global cluster.
^
4659 4660 4661 4662 4663 4664 4665 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 4659 class ModifyGlobalClusterMessage < Struct.new( :global_cluster_identifier, :new_global_cluster_identifier, :deletion_protection) SENSITIVE = [] include Aws::Structure end |
#new_global_cluster_identifier ⇒ String
The new identifier for a global cluster when you modify a global cluster. This value is stored as a lowercase string.
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
4659 4660 4661 4662 4663 4664 4665 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 4659 class ModifyGlobalClusterMessage < Struct.new( :global_cluster_identifier, :new_global_cluster_identifier, :deletion_protection) SENSITIVE = [] include Aws::Structure end |