Class: Aws::ElastiCache::Types::DeleteCacheSubnetGroupMessage

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

{
  cache_subnet_group_name: "String", # required
}

Represents the input of a ‘DeleteCacheSubnetGroup` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#cache_subnet_group_nameString

The name of the cache subnet group to delete.

Constraints: Must contain no more than 255 alphanumeric characters or hyphens.

Returns:

  • (String)


2391
2392
2393
2394
# File 'lib/aws-sdk-elasticache/types.rb', line 2391

class DeleteCacheSubnetGroupMessage < Struct.new(
  :cache_subnet_group_name)
  include Aws::Structure
end