Class: Aws::Redshift::Types::DeleteClusterSnapshotMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::DeleteClusterSnapshotMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Note:
When making an API call, you may pass DeleteClusterSnapshotMessage data as a hash:
{
snapshot_identifier: "String", # required
snapshot_cluster_identifier: "String",
}
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.
3662 3663 3664 3665 3666 3667 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 3662 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.
3662 3663 3664 3665 3666 3667 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 3662 class DeleteClusterSnapshotMessage < Struct.new( :snapshot_identifier, :snapshot_cluster_identifier) SENSITIVE = [] include Aws::Structure end |