Delete Cache Parameter Group
elasticache_delete_cache_parameter_group | R Documentation |
Deletes the specified cache parameter group¶
Description¶
Deletes the specified cache parameter group. You cannot delete a cache parameter group if it is associated with any cache clusters. You cannot delete the default cache parameter groups in your account.
Usage¶
elasticache_delete_cache_parameter_group(CacheParameterGroupName)
Arguments¶
CacheParameterGroupName |
[required] The name of the cache parameter group to delete. The specified cache security group must not be associated with any clusters. |
Value¶
An empty list.
Request syntax¶
svc$delete_cache_parameter_group(
CacheParameterGroupName = "string"
)
Examples¶
## Not run:
# Deletes the Amazon ElastiCache parameter group custom-mem1-4.
svc$delete_cache_parameter_group(
CacheParameterGroupName = "custom-mem1-4"
)
## End(Not run)