paws.storage (version 0.1.0)

s3_get_object_tagging: Returns the tag-set of an object

Description

Returns the tag-set of an object.

Usage

s3_get_object_tagging(Bucket, Key, VersionId)

Arguments

Bucket

[required]

Key

[required]

VersionId

Request syntax

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

Examples

Run this code
# NOT RUN {
# The following example retrieves tag set of an object. The request
# specifies object version.
# }
# NOT RUN {
svc$get_object_tagging(
  Bucket = "examplebucket",
  Key = "exampleobject",
  VersionId = "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
)
# }
# NOT RUN {
# The following example retrieves tag set of an object.
# }
# NOT RUN {
svc$get_object_tagging(
  Bucket = "examplebucket",
  Key = "HappyFace.jpg"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace