getLink method

Future<GetLinkResponse> getLink({
  1. required String gatewayId,
  2. required String linkId,
})

Retrieves information about a link between gateways.

Returns detailed information about the link configuration, status, and associated gateways.

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.

Parameter linkId : The unique identifier of the link.

Implementation

Future<GetLinkResponse> getLink({
  required String gatewayId,
  required String linkId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/gateway/${Uri.encodeComponent(gatewayId)}/link/${Uri.encodeComponent(linkId)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetLinkResponse.fromJson(response);
}