Class: Aws::Redshift::Types::BatchDeleteClusterSnapshotsRequest

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 BatchDeleteClusterSnapshotsRequest data as a hash:

{
  identifiers: [ # required
    {
      snapshot_identifier: "String", # required
      snapshot_cluster_identifier: "String",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#identifiersArray<Types::DeleteClusterSnapshotMessage>

A list of identifiers for the snapshots that you want to delete.



249
250
251
252
# File 'lib/aws-sdk-redshift/types.rb', line 249

class BatchDeleteClusterSnapshotsRequest < Struct.new(
  :identifiers)
  include Aws::Structure
end