an AWS SDK 또는 CLIDeleteVaultNotifications와 함께 사용 - AWS SDK 코드 예제

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

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

an AWS SDK 또는 CLIDeleteVaultNotifications와 함께 사용

다음 코드 예제는 DeleteVaultNotifications의 사용 방법을 보여 줍니다.

CLI
AWS CLI

볼트에 대한 SNS 알림을 제거하려면

다음 delete-vault-notifications 예제에서는 지정된 저장소에 대해 Amazon Simple Notification Service(Amazon SNS)에서 보낸 알림을 제거합니다.

aws glacier delete-vault-notifications \ --account-id 111122223333 \ --vault-name example_vault

이 명령은 출력을 생성하지 않습니다.

Python
Python용 SDK(Boto3)
참고

더 많은 on GitHub가 있습니다. AWS 코드 예시 리포지토리에서 전체 예시를 찾고 설정 및 실행하는 방법을 배워보세요.

class GlacierWrapper: """Encapsulates Amazon S3 Glacier API operations.""" def __init__(self, glacier_resource): """ :param glacier_resource: A Boto3 Amazon S3 Glacier resource. """ self.glacier_resource = glacier_resource @staticmethod def stop_notifications(notification): """ Stops notifications to the configured Amazon SNS topic. :param notification: The notification configuration to remove. """ try: notification.delete() logger.info("Notifications stopped.") except ClientError: logger.exception("Couldn't stop notifications.") raise