getAsyncInvoke method

Future<GetAsyncInvokeResponse> getAsyncInvoke({
  1. required String invocationArn,
})

Retrieve information about an asynchronous invocation.

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

Parameter invocationArn : The invocation's ARN.

Implementation

Future<GetAsyncInvokeResponse> getAsyncInvoke({
  required String invocationArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/async-invoke/${Uri.encodeComponent(invocationArn)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetAsyncInvokeResponse.fromJson(response);
}