Class: Aws::Redshift::Types::DeleteClusterSnapshotMessage
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Redshift::Types::DeleteClusterSnapshotMessage
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-redshift/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #snapshot_cluster_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the cluster the snapshot was created from.
 - 
  
    
      #snapshot_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier of the manual snapshot to be deleted.
 
Instance Attribute Details
#snapshot_cluster_identifier ⇒ String
The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
Constraints: Must be the name of valid cluster.
      3594 3595 3596 3597 3598 3599  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 3594 class DeleteClusterSnapshotMessage < Struct.new( :snapshot_identifier, :snapshot_cluster_identifier) SENSITIVE = [] include Aws::Structure end  | 
  
#snapshot_identifier ⇒ String
The unique identifier of the manual snapshot to be deleted.
Constraints: Must be the name of an existing snapshot that is in the ‘available`, `failed`, or `cancelled` state.
      3594 3595 3596 3597 3598 3599  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 3594 class DeleteClusterSnapshotMessage < Struct.new( :snapshot_identifier, :snapshot_cluster_identifier) SENSITIVE = [] include Aws::Structure end  |