getDataIntegration method

Future<GetDataIntegrationResponse> getDataIntegration({
  1. required String identifier,
})

Returns information about the DataIntegration.

May throw AccessDeniedException. May throw InternalServiceError. May throw InvalidRequestException. May throw ResourceNotFoundException. May throw ThrottlingException.

Parameter identifier : A unique identifier.

Implementation

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