paws.storage (version 0.1.0)

s3_delete_object_tagging: Removes the tag-set from an existing object

Description

Removes the tag-set from an existing object.

Usage

s3_delete_object_tagging(Bucket, Key, VersionId)

Arguments

Bucket

[required]

Key

[required]

VersionId

The versionId of the object that the tag-set will be removed from.

Request syntax

svc$delete_object_tagging(
  Bucket = "string",
  Key = "string",
  VersionId = "string"
)

Examples

Run this code
# NOT RUN {
# The following example removes tag set associated with the specified
# object version. The request specifies both the object key and object
# version.
# }
# NOT RUN {
svc$delete_object_tagging(
  Bucket = "examplebucket",
  Key = "HappyFace.jpg",
  VersionId = "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
)
# }
# NOT RUN {
# 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.
# }
# NOT RUN {
svc$delete_object_tagging(
  Bucket = "examplebucket",
  Key = "HappyFace.jpg"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace