getCloudConnector method

Future<GetCloudConnectorResponse> getCloudConnector({
  1. required String identifier,
})

Get configuration details for a cloud connector.

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

Parameter identifier : The identifier of the C2C connector.

Implementation

Future<GetCloudConnectorResponse> getCloudConnector({
  required String identifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/cloud-connectors/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetCloudConnectorResponse.fromJson(response);
}