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

Page updated Mar 26, 2026

AWS SDKを使用する

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.

Amplifyが提供していない高度なユースケースでは、エスケープハッチを取得して基盤となるAmazon Pinpointクライアントにアクセスできます。

KotlinクライアントをJavaで使用する方法について、ブロッキングインターフェイスまたはフューチャーベースの等価な非同期インターフェイスを使用する詳細はこちらを参照してください。

AWSPinpointAnalyticsPlugin plugin = (AWSPinpointAnalyticsPlugin)
Amplify.Analytics.getPlugin("awsPinpointAnalyticsPlugin");
PinpointClient pinpointClient = plugin.getEscapeHatch();
val plugin = Amplify.Analytics.getPlugin("awsPinpointAnalyticsPlugin")
val pinpointClient = (plugin as AWSPinpointAnalyticsPlugin).escapeHatch
AWSPinpointAnalyticsPlugin plugin = (AWSPinpointAnalyticsPlugin)
RxAmplify.Analytics.getPlugin("awsPinpointAnalyticsPlugin");
PinpointClient pinpointClient = plugin.getEscapeHatch();