getApp method
Retrieves information about an application.
May throw BadRequestException. May throw InternalServerErrorException. May throw PayloadTooLargeException. May throw ForbiddenException. May throw NotFoundException. May throw MethodNotAllowedException. May throw TooManyRequestsException.
Parameter applicationId
:
The unique identifier for the application. This identifier is displayed as
the Project ID on the Amazon Pinpoint console.
Implementation
Future<GetAppResponse> getApp({
required String applicationId,
}) async {
ArgumentError.checkNotNull(applicationId, 'applicationId');
final response = await _protocol.sendRaw(
payload: null,
method: 'GET',
requestUri: '/v1/apps/${Uri.encodeComponent(applicationId)}',
exceptionFnMap: _exceptionFns,
);
final $json = await _s.jsonFromResponse(response);
return GetAppResponse(
applicationResponse: ApplicationResponse.fromJson($json),
);
}