Class PutBucketTaggingRequest
Container for the parameters to the PutBucketTagging operation. 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.
note
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.
PutBucketTagging
has the following special errors:
Error code:
InvalidTagError
Description: The tag provided was not a valid tag. This error can occur if the tag did not pass input validation. For information about tag restrictions, see User-Defined Tag Restrictions and Amazon Web Services-Generated Cost Allocation Tag Restrictions.
Error code:
MalformedXMLError
Description: The XML provided does not match the schema.
Error code:
OperationAbortedError
Description: A conflicting conditional action is currently in progress against this resource. Please try again.
Error code:
InternalError
Description: The service was unable to apply the provided tag to the bucket.
The following operations are related to
PutBucketTagging
:
public class PutBucketTaggingRequest : AmazonWebServiceRequest
- Inheritance
-
PutBucketTaggingRequest
Constructors
PutBucketTaggingRequest()
public PutBucketTaggingRequest()
Properties
BucketName
The name of the bucket to apply the tags to.
public string BucketName { get; set; }
Property Value
ChecksumAlgorithm
Gets and sets the property ChecksumAlgorithm.
Indicates the algorithm used to create the checksum for the object. Amazon S3 will fail the request with a 400 error if there is no checksum associated with the object. For more information, see Checking object integrity in the Amazon S3 User Guide.
public ChecksumAlgorithm ChecksumAlgorithm { get; set; }
Property Value
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 403 (Access Denied) error.
public string ExpectedBucketOwner { get; set; }
Property Value
TagSet
The collection of tags.
public List<Tag> TagSet { get; set; }