deleteRequesterGateway method

Future<DeleteRequesterGatewayResponse> deleteRequesterGateway({
  1. required String gatewayId,
})

Deletes a requester gateway.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter gatewayId : The unique identifier of the gateway.

Implementation

Future<DeleteRequesterGatewayResponse> deleteRequesterGateway({
  required String gatewayId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/requester-gateway/${Uri.encodeComponent(gatewayId)}',
    exceptionFnMap: _exceptionFns,
  );
  return DeleteRequesterGatewayResponse.fromJson(response);
}