Name:
interface
Value:
Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.
Gen1 DocsLegacy

Page updated Feb 8, 2025

既存のAWSリソースを使用する

AWS will end support for Amazon Pinpoint on October 30, 2026,, and is no longer accepting any new users as of May 20 (see the linked doc). The guidance is to use AWS End User Messaging for push notifications and SMS, Amazon Simple Email Service for sending emails, Amazon Connect for campaigns, journeys, endpoints, and engagement analytics. Pinpoint recommends Amazon Kinesis for event collection and mobile analytics.

既存のAmazon PinpointリソースをAmplifyバックエンドまたはフロントエンドアプリケーションで使用するには、addOutputメソッドを使用して、バックエンドリソースの出力をamplify_outputs.jsonファイルに表示します:

amplify/backend.ts
import { defineBackend } from "@aws-amplify/backend"
const backend = defineBackend({})
backend.addOutput({
analytics: {
amazon_pinpoint: {
aws_region: "<your-aws-region>",
app_id: "<your-pinpoint-app-id>",
},
},
})

IAMポリシーの更新

Amazon PinpointはrecordおよびidentifyUser APIを使用するために、AWS Identity and Access Management (IAM)ポリシーが必要です:

{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": ["mobiletargeting:UpdateEndpoint", "mobiletargeting:PutEvents"],
"Resource": ["arn:aws:mobiletargeting:*:<your-account-id>:apps/<your-pinpoint-app-id>*"]
}
]
}