Description Usage Arguments Value Request syntax Examples
View source: R/s3_operations.R
Returns the tag set associated with the bucket.
To use this operation, you must have permission to perform the
s3:GetBucketTagging
action. By default, the bucket owner has this
permission and can grant this permission to others.
get_bucket_tagging
has the following special
error:
Error code: NoSuchTagSetError
Description: There is no tag set associated with the bucket.
The following operations are related to
get_bucket_tagging
:
put_bucket_tagging
delete_bucket_tagging
1 | s3_get_bucket_tagging(Bucket, ExpectedBucketOwner)
|
Bucket |
[required] The name of the bucket for which to get the tagging information. |
ExpectedBucketOwner |
The account id of the expected bucket owner. If the bucket is owned by a
different account, the request will fail with an HTTP
|
A list with the following syntax:
1 2 3 4 5 6 7 8 |
1 2 3 4 | svc$get_bucket_tagging(
Bucket = "string",
ExpectedBucketOwner = "string"
)
|
1 2 3 4 5 6 7 | ## Not run:
# The following example returns tag set associated with a bucket
svc$get_bucket_tagging(
Bucket = "examplebucket"
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.