Class: Aws::ElastiCache::Types::DeleteCacheSecurityGroupMessage

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

{
  cache_security_group_name: "String", # required
}

Represents the input of a ‘DeleteCacheSecurityGroup` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#cache_security_group_nameString

The name of the cache security group to delete.

<note markdown=“1”> You cannot delete the default security group.

</note>

Returns:

  • (String)


2368
2369
2370
2371
# File 'lib/aws-sdk-elasticache/types.rb', line 2368

class DeleteCacheSecurityGroupMessage < Struct.new(
  :cache_security_group_name)
  include Aws::Structure
end