deleteInputSecurityGroup method

Future<void> deleteInputSecurityGroup({
  1. required String inputSecurityGroupId,
})

Deletes an Input Security Group

May throw BadRequestException. May throw InternalServerErrorException. May throw ForbiddenException. May throw BadGatewayException. May throw NotFoundException. May throw GatewayTimeoutException. May throw TooManyRequestsException.

Parameter inputSecurityGroupId : The Input Security Group to delete

Implementation

Future<void> deleteInputSecurityGroup({
  required String inputSecurityGroupId,
}) async {
  ArgumentError.checkNotNull(inputSecurityGroupId, 'inputSecurityGroupId');
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/prod/inputSecurityGroups/${Uri.encodeComponent(inputSecurityGroupId)}',
    exceptionFnMap: _exceptionFns,
  );
}