removeBridgeOutput method

Future<RemoveBridgeOutputResponse> removeBridgeOutput({
  1. required String bridgeArn,
  2. required String outputName,
})

Removes an output from a bridge.

May throw BadRequestException. May throw ConflictException. May throw ForbiddenException. May throw InternalServerErrorException. May throw NotFoundException. May throw ServiceUnavailableException. May throw TooManyRequestsException.

Parameter bridgeArn : The Amazon Resource Name (ARN) of the bridge that you want to update.

Parameter outputName : The name of the bridge output that you want to remove.

Implementation

Future<RemoveBridgeOutputResponse> removeBridgeOutput({
  required String bridgeArn,
  required String outputName,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/v1/bridges/${Uri.encodeComponent(bridgeArn)}/outputs/${Uri.encodeComponent(outputName)}',
    exceptionFnMap: _exceptionFns,
  );
  return RemoveBridgeOutputResponse.fromJson(response);
}