View a markdown version of this page

Use GetObjectAnnotation with an AWS SDK - AWS SDK Code Examples

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

Use GetObjectAnnotation with an AWS SDK

The following code example shows how to use GetObjectAnnotation.

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 get_object_annotation( self, bucket_name: str, object_key: str, annotation_name: str, ) -> dict: """ Retrieves a specific annotation by name 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 retrieve. :return: A dict containing the annotation payload (decoded), ETag, ContentLength, and LastModified. :raises ClientError: If the annotation does not exist (NoSuchAnnotation) or another error occurs. """ try: response = self.s3_client.get_object_annotation( Bucket=bucket_name, Key=object_key, AnnotationName=annotation_name, ) payload = response["AnnotationPayload"].read().decode("utf-8") result = dict( Payload=payload, ETag=response.get("ETag", "N/A"), ContentLength=response.get("ContentLength", 0), LastModified=response.get("LastModified", None), ) logger.info( "Retrieved annotation '%s' from object '%s' in bucket '%s'.", annotation_name, object_key, bucket_name, ) return result except ClientError as err: if err.response["Error"]["Code"] == "NoSuchAnnotation": logger.error( "Annotation '%s' does not exist on object '%s' in bucket '%s'.", annotation_name, object_key, bucket_name, ) raise