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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-redshift/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

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)


3595
3596
3597
3598
3599
3600
# File 'lib/aws-sdk-redshift/types.rb', line 3595

class DeleteClusterSnapshotMessage < Struct.new(
  :snapshot_identifier,
  :snapshot_cluster_identifier)
  SENSITIVE = []
  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)


3595
3596
3597
3598
3599
3600
# File 'lib/aws-sdk-redshift/types.rb', line 3595

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