delete_object_tagging

S3.Client.delete_object_tagging(**kwargs)

Removes the entire tag set from the specified object. For more information about managing object tags, see Object Tagging.

To use this operation, you must have permission to perform the s3:DeleteObjectTagging action.

To delete tags of a specific object version, add the versionId query parameter in the request. You will need permission for the s3:DeleteObjectVersionTagging action.

The following operations are related to DeleteBucketMetricsConfiguration :

See also: AWS API Documentation

Request Syntax

response = client.delete_object_tagging(
    Bucket='string',
    Key='string',
    VersionId='string',
    ExpectedBucketOwner='string'
)
Parameters
  • Bucket (string) --

    [REQUIRED]

    The bucket name containing the objects from which to remove the tags.

    When using this action with an access point, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName -AccountId .s3-accesspoint.*Region* .amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide .

    When using this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com . When using this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see Using Amazon S3 on Outposts in the Amazon S3 User Guide .

  • Key (string) --

    [REQUIRED]

    The key that identifies the object in the bucket from which to remove all tags.

  • VersionId (string) -- The versionId of the object that the tag-set will be removed from.
  • ExpectedBucketOwner (string) -- The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden (access denied).
Return type

dict

Returns

Response Syntax

{
    'VersionId': 'string'
}

Response Structure

  • (dict) --

    • VersionId (string) --

      The versionId of the object the tag-set was removed from.

Examples

The following example removes tag set associated with the specified object version. The request specifies both the object key and object version.

response = client.delete_object_tagging(
    Bucket='examplebucket',
    Key='HappyFace.jpg',
    VersionId='ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI',
)

print(response)

Expected Output:

{
    'VersionId': 'ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI',
    'ResponseMetadata': {
        '...': '...',
    },
}

The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the operation removes tag set from the latest object version.

response = client.delete_object_tagging(
    Bucket='examplebucket',
    Key='HappyFace.jpg',
)

print(response)

Expected Output:

{
    'VersionId': 'null',
    'ResponseMetadata': {
        '...': '...',
    },
}