deleteInputSecurityGroup method

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

Deletes an Input Security Group

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

Parameter inputSecurityGroupId : The Input Security Group to delete

Implementation

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