Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

delete_cache_security_group

delete_cache_security_group(**kwargs)

Deletes a cache security group.

Note

You cannot delete a cache security group if it is associated with any clusters.

See also: AWS API Documentation

Request Syntax

response = client.delete_cache_security_group(
    CacheSecurityGroupName='string'
)
Parameters
CacheSecurityGroupName (string) --

[REQUIRED]

The name of the cache security group to delete.

Note

You cannot delete the default security group.

Returns
None

Exceptions

  • ElastiCache.Client.exceptions.InvalidCacheSecurityGroupStateFault
  • ElastiCache.Client.exceptions.CacheSecurityGroupNotFoundFault
  • ElastiCache.Client.exceptions.InvalidParameterValueException
  • ElastiCache.Client.exceptions.InvalidParameterCombinationException

Examples

Deletes a cache security group.

response = client.delete_cache_security_group(
    CacheSecurityGroupName='my-sec-group',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}