an AWS SDK를 사용하여 제안의 환불 정책 업데이트 - AWS SDK 코드 예제

AWS Doc SDK ExamplesWord AWS SDK 리포지토리에는 더 많은 GitHub 예제가 있습니다.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

an AWS SDK를 사용하여 제안의 환불 정책 업데이트

다음 코드 예제에서는 제안의 환불 정책을 업데이트하는 방법을 보여줍니다.

Java
Java 2.x용 SDK
참고

더 많은 on GitHub가 있습니다. 전체 예제를 찾아 AWS Marketplace API 참조 코드 라이브러리 리포지토리에서 설정 및 실행하는 방법을 알아봅니다.

이 예제를 실행하려면 유틸리티RunChangesets에서 다음 JSON changeset을에 전달하여 유틸리티 섹션에서 변경 세트를 시작합니다.

{ "Catalog": "AWSMarketplace", "ChangeSet": [ { "ChangeType": "UpdateSupportTerms", "Entity": { "Type": "Offer@1.0", "Identifier": "offer-1111111111111" }, "DetailsDocument": { "Terms": [ { "Type": "SupportTerm", "RefundPolicy": "Updated refund policy description" } ] } } ] }
  • API 세부 정보는 StartChangeSet AWS SDK for Java 2.x 참조의 API를 참조하세요.

Python
Python용 SDK(Boto3)
참고

더 많은 on GitHub가 있습니다. 전체 예제를 찾아 AWS Marketplace API 참조 코드 라이브러리 리포지토리에서 설정 및 실행하는 방법을 알아봅니다.

{ "Catalog": "AWSMarketplace", "ChangeSet": [ { "ChangeType": "UpdateSupportTerms", "Entity": { "Type": "Offer@1.0", "Identifier": "offer-1111111111111" }, "DetailsDocument": { "Terms": [ { "Type": "SupportTerm", "RefundPolicy": "Updated refund policy description" } ] } } ] }

이 스크립트를 실행하여 변경 세트를 시작합니다. 헬퍼 함수는 유틸리티 섹션에서 변경 집합을 시작하도록 유틸리티에 정의됩니다.

# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 """ Purpose Shows how to use the AWS SDK for Python (Boto3) to update refund policy of my offer CAPI-18 """ import os import utils.start_changeset as sc # type: ignore import utils.stringify_details as sd # type: ignore fname = "changeset.json" change_set_file = os.path.join(os.path.dirname(__file__), fname) change_set = sd.stringify_changeset(change_set_file) def main(): sc.usage_demo(change_set, "Update refund policy of my public offer") if __name__ == "__main__": main()
  • API 세부 정보는 Word for Python(Boto3) StartChangeSet 참조의 Word를 참조하세요. AWS SDK API