Class: Aws::ElastiCache::Types::DeleteCacheClusterMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::DeleteCacheClusterMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
Represents the input of a ‘DeleteCacheCluster` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cache_cluster_id ⇒ String
The cluster identifier for the cluster to be deleted.
-
#final_snapshot_identifier ⇒ String
The user-supplied name of a final cluster snapshot.
Instance Attribute Details
#cache_cluster_id ⇒ String
The cluster identifier for the cluster to be deleted. This parameter is not case sensitive.
3366 3367 3368 3369 3370 3371 |
# File 'lib/aws-sdk-elasticache/types.rb', line 3366 class DeleteCacheClusterMessage < Struct.new( :cache_cluster_id, :final_snapshot_identifier) SENSITIVE = [] include Aws::Structure end |
#final_snapshot_identifier ⇒ String
The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. ElastiCache creates the snapshot, and then deletes the cluster immediately afterward.
3366 3367 3368 3369 3370 3371 |
# File 'lib/aws-sdk-elasticache/types.rb', line 3366 class DeleteCacheClusterMessage < Struct.new( :cache_cluster_id, :final_snapshot_identifier) SENSITIVE = [] include Aws::Structure end |