aws-sdk#Pinpoint TypeScript Examples

The following examples show how to use aws-sdk#Pinpoint. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: pinpoint.ts    From amplify-codegen with Apache License 2.0 6 votes vote down vote up
export async function pinpointAppExist(pinpointProjectId: string): Promise<boolean> {
  let result = false;

  const pinpointClient = new Pinpoint({
    accessKeyId: settings.accessKeyId,
    secretAccessKey: settings.secretAccessKey,
    region: _.get(serviceRegionMap, settings.region, defaultPinpointRegion),
  });

  try {
    const response = await pinpointClient
      .getApp({
        ApplicationId: pinpointProjectId,
      })
      .promise();
    if (response.ApplicationResponse.Id === pinpointProjectId) {
      result = true;
    }
  } catch (err) {
    if (err.code === 'NotFoundException') {
      result = false;
    } else {
      throw err;
    }
  }

  return result;
}