Class: Aws::RDS::Types::CreateDBClusterSnapshotMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::CreateDBClusterSnapshotMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #db_cluster_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the DB cluster to create a snapshot for.
 - 
  
    
      #db_cluster_snapshot_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the DB cluster snapshot.
 - 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The tags to be assigned to the DB cluster snapshot.
 
Instance Attribute Details
#db_cluster_identifier ⇒ String
The identifier of the DB cluster to create a snapshot for. This parameter isn’t case-sensitive.
Constraints:
- 
Must match the identifier of an existing DBCluster.
 
^
Example: ‘my-cluster1`
      3375 3376 3377 3378 3379 3380 3381  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 3375 class CreateDBClusterSnapshotMessage < Struct.new( :db_cluster_snapshot_identifier, :db_cluster_identifier, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#db_cluster_snapshot_identifier ⇒ String
The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string.
Constraints:
- 
Must contain from 1 to 63 letters, numbers, or hyphens.
 - 
First character must be a letter.
 - 
Can’t end with a hyphen or contain two consecutive hyphens.
 
Example: ‘my-cluster1-snapshot1`
      3375 3376 3377 3378 3379 3380 3381  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 3375 class CreateDBClusterSnapshotMessage < Struct.new( :db_cluster_snapshot_identifier, :db_cluster_identifier, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Array<Types::Tag>
The tags to be assigned to the DB cluster snapshot.
      3375 3376 3377 3378 3379 3380 3381  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 3375 class CreateDBClusterSnapshotMessage < Struct.new( :db_cluster_snapshot_identifier, :db_cluster_identifier, :tags) SENSITIVE = [] include Aws::Structure end  |