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

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

{
  cache_cluster_id: "String", # required
  final_snapshot_identifier: "String",
}

Represents the input of a ‘DeleteCacheCluster` operation.

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)


2307
2308
2309
2310
2311
# File 'lib/aws-sdk-elasticache/types.rb', line 2307

class DeleteCacheClusterMessage < Struct.new(
  :cache_cluster_id,
  :final_snapshot_identifier)
  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)


2307
2308
2309
2310
2311
# File 'lib/aws-sdk-elasticache/types.rb', line 2307

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