Class: Aws::S3Control::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::Tag
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
An Amazon Web Services resource tag that's associated with your S3 resource. You can add tags to new objects when you upload them, or you can add object tags to existing objects.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the key-value pair of a tag added to your Amazon Web Services resource.
-
#value ⇒ String
The value of the key-value pair of a tag added to your Amazon Web Services resource.
Instance Attribute Details
#key ⇒ String
The key of the key-value pair of a tag added to your Amazon Web
Services resource. A tag key can be up to 128 Unicode characters in
length and is case-sensitive. System created tags that begin with
aws:
aren’t supported.
8177 8178 8179 8180 8181 8182 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 8177 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the key-value pair of a tag added to your Amazon Web Services resource. A tag value can be up to 256 Unicode characters in length and is case-sensitive.
8177 8178 8179 8180 8181 8182 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 8177 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |