getApplicationSettings method

Future<GetApplicationSettingsResponse> getApplicationSettings({
  1. required String applicationId,
})

Retrieves information about the settings for 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<GetApplicationSettingsResponse> getApplicationSettings({
  required String applicationId,
}) async {
  ArgumentError.checkNotNull(applicationId, 'applicationId');
  final response = await _protocol.sendRaw(
    payload: null,
    method: 'GET',
    requestUri: '/v1/apps/${Uri.encodeComponent(applicationId)}/settings',
    exceptionFnMap: _exceptionFns,
  );
  final $json = await _s.jsonFromResponse(response);
  return GetApplicationSettingsResponse(
    applicationSettingsResource: ApplicationSettingsResource.fromJson($json),
  );
}