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:
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 thes3:DeleteObjectVersionTagging
action.The following operations are related to
DeleteBucketMetricsConfiguration
:PutObjectTagging
GetObjectTagging
Use a bare-bones client and the command you need to make an API call.
import { S3Client, DeleteObjectTaggingCommand } from "@aws-sdk/client-s3"; // ES Modules import // const { S3Client, DeleteObjectTaggingCommand } = require("@aws-sdk/client-s3"); // CommonJS import const client = new S3Client(config); const command = new DeleteObjectTaggingCommand(input); const response = await client.send(command);
DeleteObjectTaggingCommandInput for command's
input
shape.DeleteObjectTaggingCommandOutput for command's
response
shape.config for S3Client's
config
shape.