Class: Aws::Redshift::Types::DeleteClusterSnapshotMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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",
}

Instance Attribute Summary collapse

Instance Attribute Details

#snapshot_cluster_identifierString

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.

Returns:

  • (String)


2670
2671
2672
2673
2674
# File 'lib/aws-sdk-redshift/types.rb', line 2670

class DeleteClusterSnapshotMessage < Struct.new(
  :snapshot_identifier,
  :snapshot_cluster_identifier)
  include Aws::Structure
end

#snapshot_identifierString

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.

Returns:

  • (String)


2670
2671
2672
2673
2674
# File 'lib/aws-sdk-redshift/types.rb', line 2670

class DeleteClusterSnapshotMessage < Struct.new(
  :snapshot_identifier,
  :snapshot_cluster_identifier)
  include Aws::Structure
end