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.
3650 3651 3652 3653 3654 3655 |
# File 'lib/aws-sdk-redshift/types.rb', line 3650 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.
3650 3651 3652 3653 3654 3655 |
# File 'lib/aws-sdk-redshift/types.rb', line 3650 class DeleteClusterSnapshotMessage < Struct.new( :snapshot_identifier, :snapshot_cluster_identifier) SENSITIVE = [] include Aws::Structure end |