サポート終了通知: 2026 年 10 月 30 日、 AWS は Amazon Pinpoint のサポートを終了します。2026 年 10 月 30 日を過ぎると、Amazon Pinpoint コンソールまたは Amazon Pinpoint のリソース (エンドポイント、セグメント、キャンペーン、ジャーニー、分析) にアクセスできなくなります。詳細については、「Amazon Pinpoint のサポート終了」を参照してください。注: SMS、音声、モバイルプッシュ、OTP、電話番号の検証に関連する APIs は、この変更の影響を受けず、 AWS エンドユーザーメッセージングでサポートされています。
翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
AWS SDK CreateConfigurationSetEventDestinationで を使用する
次の例は、CreateConfigurationSetEventDestination を使用する方法を説明しています。
- SAP ABAP
-
- SDK for SAP ABAP
-
GitHub には、その他のリソースもあります。用例一覧を検索し、AWS コード例リポジトリでの設定と実行の方法を確認してください。
TRY.
" Create event destination for the configuration set
lo_pps->createconfseteventdst(
iv_configurationsetname = iv_configuration_set_name " e.g., 'my-config-set'
iv_eventdestinationname = iv_event_destination_name " e.g., 'my-event-dest'
io_eventdestination = io_event_destination
).
MESSAGE 'Event destination created successfully.' TYPE 'I'.
CATCH /aws1/cx_ppsalreadyexistsex INTO DATA(lo_already_exists_ex).
MESSAGE lo_already_exists_ex->get_text( ) TYPE 'I'.
RAISE EXCEPTION lo_already_exists_ex.
CATCH /aws1/cx_ppsnotfoundexception INTO DATA(lo_not_found_ex).
MESSAGE lo_not_found_ex->get_text( ) TYPE 'I'.
RAISE EXCEPTION lo_not_found_ex.
CATCH /aws1/cx_ppsbadrequestex INTO DATA(lo_bad_request_ex).
MESSAGE lo_bad_request_ex->get_text( ) TYPE 'I'.
RAISE EXCEPTION lo_bad_request_ex.
CATCH /aws1/cx_ppsinternalsvcerrorex INTO DATA(lo_internal_error_ex).
MESSAGE lo_internal_error_ex->get_text( ) TYPE 'I'.
RAISE EXCEPTION lo_internal_error_ex.
CATCH /aws1/cx_ppslimitexceededex INTO DATA(lo_limit_exceeded_ex).
MESSAGE lo_limit_exceeded_ex->get_text( ) TYPE 'I'.
RAISE EXCEPTION lo_limit_exceeded_ex.
CATCH /aws1/cx_ppstoomanyrequestsex INTO DATA(lo_too_many_requests_ex).
MESSAGE lo_too_many_requests_ex->get_text( ) TYPE 'I'.
RAISE EXCEPTION lo_too_many_requests_ex.
ENDTRY.
AWS SDK 開発者ガイドとコード例の完全なリストについては、「」を参照してくださいAWS SDK での Amazon Pinpoint の使用。このトピックには、使用開始方法に関する情報と、以前の SDK バージョンの詳細も含まれています。