Class: Aws::DocDB::Types::ModifyGlobalClusterMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DocDB::Types::ModifyGlobalClusterMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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.
      4401 4402 4403 4404 4405 4406 4407  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 4401 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.
 
^
      4401 4402 4403 4404 4405 4406 4407  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 4401 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`
      4401 4402 4403 4404 4405 4406 4407  | 
    
      # File 'lib/aws-sdk-docdb/types.rb', line 4401 class ModifyGlobalClusterMessage < Struct.new( :global_cluster_identifier, :new_global_cluster_identifier, :deletion_protection) SENSITIVE = [] include Aws::Structure end  |