Class: Aws::ElastiCache::Types::DeleteCacheClusterMessage

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#cache_cluster_idString

The cluster identifier for the cluster to be deleted. This parameter is not case sensitive.

Returns:

  • (String)


3363
3364
3365
3366
3367
3368
# File 'lib/aws-sdk-elasticache/types.rb', line 3363

class DeleteCacheClusterMessage < Struct.new(
  :cache_cluster_id,
  :final_snapshot_identifier)
  SENSITIVE = []
  include Aws::Structure
end

#final_snapshot_identifierString

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.

Returns:

  • (String)


3363
3364
3365
3366
3367
3368
# File 'lib/aws-sdk-elasticache/types.rb', line 3363

class DeleteCacheClusterMessage < Struct.new(
  :cache_cluster_id,
  :final_snapshot_identifier)
  SENSITIVE = []
  include Aws::Structure
end