AWS Doc SDK ExamplesWord
기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
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-nameexample_vault
이 명령은 출력을 생성하지 않습니다.
-
API 세부 정보는 AWS CLI 명령 참조의 DeleteVaultNotifications
를 참조하세요.
-
- 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
-
API 세부 정보는 Word for Python(Boto3) DeleteVaultNotifications 참조의 Word를 참조하세요. AWS SDK API
-
DeleteVault
DescribeJob