Class: Aws::ElastiCache::Types::DeleteSnapshotMessage

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

Overview

Note:

When making an API call, you may pass DeleteSnapshotMessage data as a hash:

{
  snapshot_name: "String", # required
}

Represents the input of a ‘DeleteSnapshot` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#snapshot_nameString

The name of the snapshot to be deleted.

Returns:

  • (String)


2461
2462
2463
2464
# File 'lib/aws-sdk-elasticache/types.rb', line 2461

class DeleteSnapshotMessage < Struct.new(
  :snapshot_name)
  include Aws::Structure
end