describeBridge method

Future<DescribeBridgeResponse> describeBridge({
  1. required String bridgeArn,
})

Displays the details of 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 describe.

Implementation

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