deleteCacheSecurityGroup method
Deletes a cache security group.
May throw CacheSecurityGroupNotFoundFault.
May throw InvalidCacheSecurityGroupStateFault.
May throw InvalidParameterCombinationException.
May throw InvalidParameterValueException.
Parameter cacheSecurityGroupName :
The name of the cache security group to delete.
Implementation
Future<void> deleteCacheSecurityGroup({
required String cacheSecurityGroupName,
}) async {
final $request = <String, String>{
'CacheSecurityGroupName': cacheSecurityGroupName,
};
await _protocol.send(
$request,
action: 'DeleteCacheSecurityGroup',
version: '2015-02-02',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
);
}