Put Bucket Tagging
s3_put_bucket_tagging | R Documentation |
This operation is not supported for directory buckets¶
Description¶
This operation is not supported for directory buckets.
Sets the tags for a bucket.
Use tags to organize your Amazon Web Services bill to reflect your own cost structure. To do this, sign up to get your Amazon Web Services account bill with tag key values included. Then, to see the cost of combined resources, organize your billing information according to resources with the same tag key values. For example, you can tag several resources with a specific application name, and then organize your billing information to see the total cost of that application across several services. For more information, see Cost Allocation and Tagging and Using Cost Allocation in Amazon S3 Bucket Tags.
When this operation sets the tags for a bucket, it will overwrite any current tags the bucket already has. You cannot use this operation to add tags to an existing list of tags.
To use this operation, you must have permissions to perform the
s3:PutBucketTagging
action. The bucket owner has this permission by
default and can grant this permission to others. For more information
about permissions, see Permissions Related to Bucket Subresource
Operations
and Managing Access Permissions to Your Amazon S3
Resources.
put_bucket_tagging
has the following special errors. For more Amazon
S3 errors see, Error
Responses.
-
InvalidTag
- The tag provided was not a valid tag. This error can occur if the tag did not pass input validation. For more information, see Using Cost Allocation in Amazon S3 Bucket Tags. -
MalformedXML
- The XML provided does not match the schema. -
OperationAborted
- A conflicting conditional action is currently in progress against this resource. Please try again. -
InternalError
- The service was unable to apply the provided tag to the bucket.
The following operations are related to put_bucket_tagging
:
-
get_bucket_tagging
-
delete_bucket_tagging
Usage¶
s3_put_bucket_tagging(Bucket, ContentMD5, ChecksumAlgorithm, Tagging,
ExpectedBucketOwner)
Arguments¶
Bucket |
[required] The bucket name. |
ContentMD5 |
The Base64 encoded 128-bit For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically. |
ChecksumAlgorithm |
Indicates the algorithm used to create the checksum for the
request when you use the SDK. This header will not provide any
additional functionality if you don't use the SDK. When you send this
header, there must be a corresponding If you provide an individual checksum, Amazon S3 ignores any provided
|
Tagging |
[required] Container for the |
ExpectedBucketOwner |
The account ID of the expected bucket owner. If the account ID
that you provide does not match the actual owner of the bucket, the
request fails with the HTTP status code |
Value¶
An empty list.
Request syntax¶
svc$put_bucket_tagging(
Bucket = "string",
ContentMD5 = "string",
ChecksumAlgorithm = "CRC32"|"CRC32C"|"SHA1"|"SHA256"|"CRC64NVME",
Tagging = list(
TagSet = list(
list(
Key = "string",
Value = "string"
)
)
),
ExpectedBucketOwner = "string"
)
Examples¶
## Not run:
# The following example sets tags on a bucket. Any existing tags are
# replaced.
svc$put_bucket_tagging(
Bucket = "examplebucket",
Tagging = list(
TagSet = list(
list(
Key = "Key1",
Value = "Value1"
),
list(
Key = "Key2",
Value = "Value2"
)
)
)
)
## End(Not run)