getApplication method

Future<GetApplicationResponse> getApplication({
  1. required String applicationId,
})

Describes the details of a specific application.

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

Parameter applicationId : The identifier of the application.

Implementation

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