{
    "componentChunkName": "component---src-templates-post-js",
    "path": "/aws-marketplace-agreement-apino2026nian-5yue-atupudetowojian-zheng/",
    "result": {"data":{"ghostPost":{"id":"Ghost__Post__6a28338d781e37000184ea4e","title":"AWS Marketplace Agreement APIの2026年5月アップデートを検証","slug":"aws-marketplace-agreement-apino2026nian-5yue-atupudetowojian-zheng","featured":false,"feature_image":null,"excerpt":"こんにちは。今回はアップデートで追加されたAgreement APIの新しいエンドポイントについて検証した結果を備忘録として残します。\n\nこれまでAWS Marketplaceでの製品購入やプライベートオファーの受諾は、AWSコンソール上での手動操作（UI操作）が必要になっていました。\n\nhttps://aws.amazon.com/jp/about-aws/whats-new/2026/05/aws-marketplace-agreements-api/\n\n2026年5月のアップデートにより、Agreement\nAPIに新しいエンドポイントが複数追加され、プログラム経由で見積もりの生成から契約の受諾までを完結できるようになったようです。今回はその中でもプライベートオファー受諾の挙動を検証した結果をまとめます。\n\n1. 従来の Agreement API の使い方\nアップデート以前よりAgreement APIは、主に以下のような参照系の操作で利用することができました。\n\n * search-agreements：契約一覧の検索\n * describe-agreement：詳細な契約情","custom_excerpt":null,"visibility":"public","created_at_pretty":"09 June, 2026","published_at_pretty":"17 June, 2026","updated_at_pretty":"17 June, 2026","created_at":"2026-06-10T00:38:53.000+09:00","published_at":"2026-06-17T09:53:26.000+09:00","updated_at":"2026-06-17T09:53:26.000+09:00","meta_title":null,"meta_description":null,"og_description":null,"og_image":null,"og_title":null,"twitter_description":null,"twitter_image":null,"twitter_title":null,"authors":[{"name":"Yasuhiro Takahashi","slug":"yasuhiro","bio":null,"profile_image":null,"twitter":null,"facebook":null,"website":null}],"primary_author":{"name":"Yasuhiro Takahashi","slug":"yasuhiro","bio":null,"profile_image":null,"twitter":null,"facebook":null,"website":null},"primary_tag":null,"tags":[],"plaintext":"こんにちは。今回はアップデートで追加されたAgreement APIの新しいエンドポイントについて検証した結果を備忘録として残します。\n\nこれまでAWS Marketplaceでの製品購入やプライベートオファーの受諾は、AWSコンソール上での手動操作（UI操作）が必要になっていました。\n\nhttps://aws.amazon.com/jp/about-aws/whats-new/2026/05/aws-marketplace-agreements-api/\n\n2026年5月のアップデートにより、Agreement\nAPIに新しいエンドポイントが複数追加され、プログラム経由で見積もりの生成から契約の受諾までを完結できるようになったようです。今回はその中でもプライベートオファー受諾の挙動を検証した結果をまとめます。\n\n1. 従来の Agreement API の使い方\nアップデート以前よりAgreement APIは、主に以下のような参照系の操作で利用することができました。\n\n * search-agreements：契約一覧の検索\n * describe-agreement：詳細な契約情報の確認\n * get-agreement-terms：契約条件の取得\n\n「現在の契約状態を参照する」ことは可能でしたが、「提示されたオファーを受け入れて契約を成立させる」というアクションはAPI化されておらず、最終的な購買アクションは手動で行う必要がありました。\n\n2. 検証：新エンドポイントによるオファー受諾の実行\n今回のアップデートにより、契約の作成を制御するエンドポイントが追加されました。セラーからプライベートオファー（offer-xxxxxxxxxxxxx\n）が提示されている状態を前提に、AWS CLIを用いて契約の生成から受諾までのフローを検証してみました。\n\nなお、create-agreement-request を実行するためには、事前にいくつかの情報を収集する必要があります。具体的には \nagreement-proposal-identifier と各 term の id が必要ですが、これらはオファーIDから Discovery API \nを利用して取得します。\n\nステップ1：Discovery API でオファー情報を取得する\nまず、marketplace-discovery の get-offer を使って agreement-proposal-identifier を取得します。\n\naws marketplace-discovery get-offer \\\n    --offer-id \"offer-xxxxxxxxxxxxx\" \\\n    --region us-east-1\n\n\nレスポンス：\n\n{\n    \"offerId\": \"offer-xxxxxxxxxxxxx\",\n    \"catalog\": \"AWSMarketplace\",\n    \"offerName\": \"test offer\",\n    \"agreementProposalId\": \"at-xxxxxxxxxxxxxxxxxxxxxxxxx\",\n    \"expirationTime\": \"2026-07-01T08:59:59.999000+09:00\",\n    \"availableFromTime\": \"2026-06-10T02:31:07+09:00\",\n    \"sellerOfRecord\": {\n        \"sellerProfileId\": \"seller-xxxxxxxxxxxxx\",\n        \"displayName\": \"Example Corp.\"\n    },\n    \"pricingModel\": {\n        \"pricingModelType\": \"CONTRACT\",\n        \"displayName\": \"Contract\"\n    },\n    \"badges\": [\n        {\n            \"displayName\": \"Private Pricing\",\n            \"badgeType\": \"PRIVATE_PRICING\"\n        }\n    ],\n    \"associatedEntities\": [\n        {\n            \"product\": {\n                \"productId\": \"prod-xxxxxxxxxxxxx\",\n                \"productName\": \"SaaS Product Example\"\n            }\n        }\n    ]\n}\n\n\nここで agreementProposalId（at- で始まる値）を控えておきます。\n\nステップ2：Discovery API で term の ID を取得する\n次に、get-offer-terms で各 term の id を取得します。\n\naws marketplace-discovery get-offer-terms \\\n    --offer-id \"offer-xxxxxxxxxxxxx\" \\\n    --region us-east-1\n\n\nレスポンス：\n\n{\n    \"offerTerms\": [\n        {\n            \"legalTerm\": {\n                \"id\": \"term-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\",\n                \"type\": \"LegalTerm\",\n                \"documents\": [\n                    {\n                        \"type\": \"StandardEula\",\n                        \"url\": \"https://...\",\n                        \"version\": \"2022-07-14\"\n                    }\n                ]\n            }\n        },\n        {\n            \"fixedUpfrontPricingTerm\": {\n                \"id\": \"term-yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy\",\n                \"type\": \"FixedUpfrontPricingTerm\",\n                \"currencyCode\": \"USD\",\n                \"price\": \"0\",\n                \"grants\": [\n                    {\n                        \"dimensionKey\": \"api\",\n                        \"displayName\": \"apiname\",\n                        \"maxQuantity\": 1\n                    },\n                    {\n                        \"dimensionKey\": \"api2\",\n                        \"displayName\": \"api2\",\n                        \"maxQuantity\": 1\n                    }\n                ]\n            }\n        },\n        {\n            \"validityTerm\": {\n                \"id\": \"term-zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz\",\n                \"type\": \"ValidityTerm\",\n                \"agreementDuration\": \"P2M\"\n            }\n        },\n        {\n            \"paymentScheduleTerm\": {\n                \"id\": \"term-wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\",\n                \"type\": \"PaymentScheduleTerm\",\n                \"currencyCode\": \"USD\",\n                \"schedule\": [\n                    {\n                        \"chargeDate\": \"2026-06-09T09:00:00+09:00\",\n                        \"chargeAmount\": \"0\"\n                    }\n                ]\n            }\n        }\n    ]\n}\n\n\n各 term の id を控えます。これで create-agreement-request に必要な情報がすべて揃いました。\n\n> 注意: Discovery API は\nCloudShell（コンソールセッション認証情報）からは実行できません。IAMユーザーの認証情報を使ってローカル環境等から実行する必要があります。\n\n\nステップ3：create-agreement-request による見積もり起票\nステップ1・2で取得した agreementProposalId と各 term の id を指定し、契約リクエストを作成します。\n\naws marketplace-agreement create-agreement-request \\\n    --intent \"NEW\" \\\n    --agreement-proposal-identifier \"at-xxxxxxxxxxxxxxxxxxxxxxxxx\" \\\n    --requested-terms '[\n        {\"id\": \"term-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"},\n        {\"id\": \"term-yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy\"},\n        {\"id\": \"term-zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz\"},\n        {\"id\": \"term-wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww\"}\n    ]' \\\n    --region us-east-1\n\n\nレスポンス：\n\n{\n    \"agreementRequestId\": \"ar-xxxxxxxxxxxxxxxxxxxxxxxxx\",\n    \"chargeSummary\": {\n        \"currencyCode\": \"USD\",\n        \"newAgreementValue\": \"0.00\",\n        \"expectedCharges\": [],\n        \"itemizedCharges\": []\n    }\n}\n\n\nコマンドが成功すると agreementRequestId が発行され、見積もり内容（chargeSummary\n）が返却されます。この時点ではまだ契約は成立しておらず、内容の確認ができる状態です。\n\nステップ4：accept-agreement-request による契約の受諾（締結）\nステップ3で取得した agreementRequestId を指定し、契約を正式に受諾します。\n\naws marketplace-agreement accept-agreement-request \\\n    --agreement-request-id \"ar-xxxxxxxxxxxxxxxxxxxxxxxxx\" \\\n    --region us-east-1\n\n\nレスポンス：\n\n{\n    \"agreementId\": \"agmt-xxxxxxxxxxxxxxxxxxxxxxxxx\"\n}\n\n\n処理が完了すると agreementId が返却され、契約が成立します。Marketplace製品の利用権（エンタイトルメント）が有効化されます。\n\n一度もAWSコンソールを介することなく、CLIベースで契約手続きが完了することを確認できました。\n\nまとめ\nセラー側の自動化は視野に入れていましたが、今回の新しいエンドポイントを見て、受け手である「買い手側の受諾手動」というプロセスにも改善の余地があったのだな、と少し視点が変わった感覚があります。購買側も自社システムにMarketplaceを組み込めるようになることで、今後のB2B取引がよりスムーズになっていくと期待しています。","html":"<!--kg-card-begin: markdown--><p>こんにちは。今回はアップデートで追加されたAgreement APIの新しいエンドポイントについて検証した結果を備忘録として残します。</p>\n<p>これまでAWS Marketplaceでの製品購入やプライベートオファーの受諾は、AWSコンソール上での手動操作（UI操作）が必要になっていました。</p>\n<p><a href=\"https://aws.amazon.com/jp/about-aws/whats-new/2026/05/aws-marketplace-agreements-api/\">https://aws.amazon.com/jp/about-aws/whats-new/2026/05/aws-marketplace-agreements-api/</a></p>\n<p>2026年5月のアップデートにより、Agreement APIに新しいエンドポイントが複数追加され、プログラム経由で見積もりの生成から契約の受諾までを完結できるようになったようです。今回はその中でもプライベートオファー受諾の挙動を検証した結果をまとめます。</p>\n<h2 id=\"1-%E5%BE%93%E6%9D%A5%E3%81%AE-agreement-api-%E3%81%AE%E4%BD%BF%E3%81%84%E6%96%B9\">1. 従来の Agreement API の使い方</h2>\n<p>アップデート以前よりAgreement APIは、主に以下のような参照系の操作で利用することができました。</p>\n<ul>\n<li><code>search-agreements</code>：契約一覧の検索</li>\n<li><code>describe-agreement</code>：詳細な契約情報の確認</li>\n<li><code>get-agreement-terms</code>：契約条件の取得</li>\n</ul>\n<p>「現在の契約状態を参照する」ことは可能でしたが、「提示されたオファーを受け入れて契約を成立させる」というアクションはAPI化されておらず、最終的な購買アクションは手動で行う必要がありました。</p>\n<h2 id=\"2-%E6%A4%9C%E8%A8%BC%EF%BC%9A%E6%96%B0%E3%82%A8%E3%83%B3%E3%83%89%E3%83%9D%E3%82%A4%E3%83%B3%E3%83%88%E3%81%AB%E3%82%88%E3%82%8B%E3%82%AA%E3%83%95%E3%82%A1%E3%83%BC%E5%8F%97%E8%AB%BE%E3%81%AE%E5%AE%9F%E8%A1%8C\">2. 検証：新エンドポイントによるオファー受諾の実行</h2>\n<p>今回のアップデートにより、契約の作成を制御するエンドポイントが追加されました。セラーからプライベートオファー（<code>offer-xxxxxxxxxxxxx</code>）が提示されている状態を前提に、AWS CLIを用いて契約の生成から受諾までのフローを検証してみました。</p>\n<p>なお、<code>create-agreement-request</code> を実行するためには、事前にいくつかの情報を収集する必要があります。具体的には <code>agreement-proposal-identifier</code> と各 term の <code>id</code> が必要ですが、これらはオファーIDから <strong>Discovery API</strong> を利用して取得します。</p>\n<h3 id=\"%E3%82%B9%E3%83%86%E3%83%83%E3%83%971%EF%BC%9Adiscovery-api-%E3%81%A7%E3%82%AA%E3%83%95%E3%82%A1%E3%83%BC%E6%83%85%E5%A0%B1%E3%82%92%E5%8F%96%E5%BE%97%E3%81%99%E3%82%8B\">ステップ1：Discovery API でオファー情報を取得する</h3>\n<p>まず、<code>marketplace-discovery</code> の <code>get-offer</code> を使って <code>agreement-proposal-identifier</code> を取得します。</p>\n<pre><code class=\"language-bash\">aws marketplace-discovery get-offer \\\n    --offer-id &quot;offer-xxxxxxxxxxxxx&quot; \\\n    --region us-east-1\n</code></pre>\n<p>レスポンス：</p>\n<pre><code class=\"language-json\">{\n    &quot;offerId&quot;: &quot;offer-xxxxxxxxxxxxx&quot;,\n    &quot;catalog&quot;: &quot;AWSMarketplace&quot;,\n    &quot;offerName&quot;: &quot;test offer&quot;,\n    &quot;agreementProposalId&quot;: &quot;at-xxxxxxxxxxxxxxxxxxxxxxxxx&quot;,\n    &quot;expirationTime&quot;: &quot;2026-07-01T08:59:59.999000+09:00&quot;,\n    &quot;availableFromTime&quot;: &quot;2026-06-10T02:31:07+09:00&quot;,\n    &quot;sellerOfRecord&quot;: {\n        &quot;sellerProfileId&quot;: &quot;seller-xxxxxxxxxxxxx&quot;,\n        &quot;displayName&quot;: &quot;Example Corp.&quot;\n    },\n    &quot;pricingModel&quot;: {\n        &quot;pricingModelType&quot;: &quot;CONTRACT&quot;,\n        &quot;displayName&quot;: &quot;Contract&quot;\n    },\n    &quot;badges&quot;: [\n        {\n            &quot;displayName&quot;: &quot;Private Pricing&quot;,\n            &quot;badgeType&quot;: &quot;PRIVATE_PRICING&quot;\n        }\n    ],\n    &quot;associatedEntities&quot;: [\n        {\n            &quot;product&quot;: {\n                &quot;productId&quot;: &quot;prod-xxxxxxxxxxxxx&quot;,\n                &quot;productName&quot;: &quot;SaaS Product Example&quot;\n            }\n        }\n    ]\n}\n</code></pre>\n<p>ここで <code>agreementProposalId</code>（<code>at-</code> で始まる値）を控えておきます。</p>\n<h3 id=\"%E3%82%B9%E3%83%86%E3%83%83%E3%83%972%EF%BC%9Adiscovery-api-%E3%81%A7-term-%E3%81%AE-id-%E3%82%92%E5%8F%96%E5%BE%97%E3%81%99%E3%82%8B\">ステップ2：Discovery API で term の ID を取得する</h3>\n<p>次に、<code>get-offer-terms</code> で各 term の <code>id</code> を取得します。</p>\n<pre><code class=\"language-bash\">aws marketplace-discovery get-offer-terms \\\n    --offer-id &quot;offer-xxxxxxxxxxxxx&quot; \\\n    --region us-east-1\n</code></pre>\n<p>レスポンス：</p>\n<pre><code class=\"language-json\">{\n    &quot;offerTerms&quot;: [\n        {\n            &quot;legalTerm&quot;: {\n                &quot;id&quot;: &quot;term-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&quot;,\n                &quot;type&quot;: &quot;LegalTerm&quot;,\n                &quot;documents&quot;: [\n                    {\n                        &quot;type&quot;: &quot;StandardEula&quot;,\n                        &quot;url&quot;: &quot;https://...&quot;,\n                        &quot;version&quot;: &quot;2022-07-14&quot;\n                    }\n                ]\n            }\n        },\n        {\n            &quot;fixedUpfrontPricingTerm&quot;: {\n                &quot;id&quot;: &quot;term-yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy&quot;,\n                &quot;type&quot;: &quot;FixedUpfrontPricingTerm&quot;,\n                &quot;currencyCode&quot;: &quot;USD&quot;,\n                &quot;price&quot;: &quot;0&quot;,\n                &quot;grants&quot;: [\n                    {\n                        &quot;dimensionKey&quot;: &quot;api&quot;,\n                        &quot;displayName&quot;: &quot;apiname&quot;,\n                        &quot;maxQuantity&quot;: 1\n                    },\n                    {\n                        &quot;dimensionKey&quot;: &quot;api2&quot;,\n                        &quot;displayName&quot;: &quot;api2&quot;,\n                        &quot;maxQuantity&quot;: 1\n                    }\n                ]\n            }\n        },\n        {\n            &quot;validityTerm&quot;: {\n                &quot;id&quot;: &quot;term-zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz&quot;,\n                &quot;type&quot;: &quot;ValidityTerm&quot;,\n                &quot;agreementDuration&quot;: &quot;P2M&quot;\n            }\n        },\n        {\n            &quot;paymentScheduleTerm&quot;: {\n                &quot;id&quot;: &quot;term-wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww&quot;,\n                &quot;type&quot;: &quot;PaymentScheduleTerm&quot;,\n                &quot;currencyCode&quot;: &quot;USD&quot;,\n                &quot;schedule&quot;: [\n                    {\n                        &quot;chargeDate&quot;: &quot;2026-06-09T09:00:00+09:00&quot;,\n                        &quot;chargeAmount&quot;: &quot;0&quot;\n                    }\n                ]\n            }\n        }\n    ]\n}\n</code></pre>\n<p>各 term の <code>id</code> を控えます。これで <code>create-agreement-request</code> に必要な情報がすべて揃いました。</p>\n<blockquote>\n<p><strong>注意:</strong> Discovery API は CloudShell（コンソールセッション認証情報）からは実行できません。IAMユーザーの認証情報を使ってローカル環境等から実行する必要があります。</p>\n</blockquote>\n<h3 id=\"%E3%82%B9%E3%83%86%E3%83%83%E3%83%973%EF%BC%9Acreate-agreement-request-%E3%81%AB%E3%82%88%E3%82%8B%E8%A6%8B%E7%A9%8D%E3%82%82%E3%82%8A%E8%B5%B7%E7%A5%A8\">ステップ3：create-agreement-request による見積もり起票</h3>\n<p>ステップ1・2で取得した <code>agreementProposalId</code> と各 term の <code>id</code> を指定し、契約リクエストを作成します。</p>\n<pre><code class=\"language-bash\">aws marketplace-agreement create-agreement-request \\\n    --intent &quot;NEW&quot; \\\n    --agreement-proposal-identifier &quot;at-xxxxxxxxxxxxxxxxxxxxxxxxx&quot; \\\n    --requested-terms '[\n        {&quot;id&quot;: &quot;term-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&quot;},\n        {&quot;id&quot;: &quot;term-yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy&quot;},\n        {&quot;id&quot;: &quot;term-zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz&quot;},\n        {&quot;id&quot;: &quot;term-wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww&quot;}\n    ]' \\\n    --region us-east-1\n</code></pre>\n<p>レスポンス：</p>\n<pre><code class=\"language-json\">{\n    &quot;agreementRequestId&quot;: &quot;ar-xxxxxxxxxxxxxxxxxxxxxxxxx&quot;,\n    &quot;chargeSummary&quot;: {\n        &quot;currencyCode&quot;: &quot;USD&quot;,\n        &quot;newAgreementValue&quot;: &quot;0.00&quot;,\n        &quot;expectedCharges&quot;: [],\n        &quot;itemizedCharges&quot;: []\n    }\n}\n</code></pre>\n<p>コマンドが成功すると <code>agreementRequestId</code> が発行され、見積もり内容（<code>chargeSummary</code>）が返却されます。この時点ではまだ契約は成立しておらず、内容の確認ができる状態です。</p>\n<h3 id=\"%E3%82%B9%E3%83%86%E3%83%83%E3%83%974%EF%BC%9Aaccept-agreement-request-%E3%81%AB%E3%82%88%E3%82%8B%E5%A5%91%E7%B4%84%E3%81%AE%E5%8F%97%E8%AB%BE%EF%BC%88%E7%B7%A0%E7%B5%90%EF%BC%89\">ステップ4：accept-agreement-request による契約の受諾（締結）</h3>\n<p>ステップ3で取得した <code>agreementRequestId</code> を指定し、契約を正式に受諾します。</p>\n<pre><code class=\"language-bash\">aws marketplace-agreement accept-agreement-request \\\n    --agreement-request-id &quot;ar-xxxxxxxxxxxxxxxxxxxxxxxxx&quot; \\\n    --region us-east-1\n</code></pre>\n<p>レスポンス：</p>\n<pre><code class=\"language-json\">{\n    &quot;agreementId&quot;: &quot;agmt-xxxxxxxxxxxxxxxxxxxxxxxxx&quot;\n}\n</code></pre>\n<p>処理が完了すると <code>agreementId</code> が返却され、契約が成立します。Marketplace製品の利用権（エンタイトルメント）が有効化されます。</p>\n<p>一度もAWSコンソールを介することなく、CLIベースで契約手続きが完了することを確認できました。</p>\n<h2 id=\"%E3%81%BE%E3%81%A8%E3%82%81\">まとめ</h2>\n<p>セラー側の自動化は視野に入れていましたが、今回の新しいエンドポイントを見て、受け手である「買い手側の受諾手動」というプロセスにも改善の余地があったのだな、と少し視点が変わった感覚があります。購買側も自社システムにMarketplaceを組み込めるようになることで、今後のB2B取引がよりスムーズになっていくと期待しています。</p>\n<!--kg-card-end: markdown-->","url":"https://ghost.tech.anti-pattern.co.jp/aws-marketplace-agreement-apino2026nian-5yue-atupudetowojian-zheng/","canonical_url":null,"uuid":"aed67db0-8401-44cf-9603-fedb2d505308","page":null,"codeinjection_foot":null,"codeinjection_head":null,"codeinjection_styles":null,"comment_id":"6a28338d781e37000184ea4e","reading_time":4}},"pageContext":{"slug":"aws-marketplace-agreement-apino2026nian-5yue-atupudetowojian-zheng"}},
    "staticQueryHashes": ["176528973","2358152166","2561578252","2731221146","4145280475"]}