View a markdown version of this page

Use DeleteObjectAnnotation with an AWS SDK - AWS SDK Code Examples

There are more AWS SDK examples available in the AWS Doc SDK Examples GitHub repo.

Use DeleteObjectAnnotation with an AWS SDK

The following code example shows how to use DeleteObjectAnnotation.

Action examples are code excerpts from larger programs and must be run in context. You can see this action in context in the following code example:

Python
SDK for Python (Boto3)
Note

There's more on GitHub. Find the complete example and learn how to set up and run in the AWS Code Examples Repository.

def delete_object_annotation( self, bucket_name: str, object_key: str, annotation_name: str, ) -> None: """ Permanently deletes a specific annotation from an S3 object. :param bucket_name: The name of the bucket containing the object. :param object_key: The key of the object. :param annotation_name: The name of the annotation to delete. :raises ClientError: If the annotation does not exist (NoSuchAnnotation) or another error occurs. """ try: self.s3_client.delete_object_annotation( Bucket=bucket_name, Key=object_key, AnnotationName=annotation_name, ) logger.info( "Deleted annotation '%s' from object '%s' in bucket '%s'.", annotation_name, object_key, bucket_name, ) except ClientError as err: if err.response["Error"]["Code"] == "NoSuchAnnotation": logger.error( "Annotation '%s' has already been deleted or does not exist " "on object '%s' in bucket '%s'.", annotation_name, object_key, bucket_name, ) raise