Class: Aws::ElastiCache::Types::DeleteSnapshotMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::DeleteSnapshotMessage
- Defined in:
- gems/aws-sdk-elasticache/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#snapshot_name ⇒ String
The name of the snapshot to be deleted.
Instance Attribute Details
#snapshot_name ⇒ String
The name of the snapshot to be deleted.
3533 3534 3535 3536 3537 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3533 class DeleteSnapshotMessage < Struct.new( :snapshot_name) SENSITIVE = [] include Aws::Structure end |