getEventIntegration method

Future<GetEventIntegrationResponse> getEventIntegration({
  1. required String name,
})

Returns information about the event integration.

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

Parameter name : The name of the event integration.

Implementation

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