Delete Cache Security Group
elasticache_delete_cache_security_group | R Documentation |
Deletes a cache security group¶
Description¶
Deletes a cache security group.
You cannot delete a cache security group if it is associated with any clusters.
Usage¶
elasticache_delete_cache_security_group(CacheSecurityGroupName)
Arguments¶
CacheSecurityGroupName |
[required] The name of the cache security group to delete. You cannot delete the default security group. |
Value¶
An empty list.
Request syntax¶
svc$delete_cache_security_group(
CacheSecurityGroupName = "string"
)
Examples¶
## Not run:
# Deletes a cache security group.
svc$delete_cache_security_group(
CacheSecurityGroupName = "my-sec-group"
)
## End(Not run)