Class: Aws::S3Control::Types::Tagging
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::Tagging
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Note:
When making an API call, you may pass Tagging data as a hash:
{
tag_set: [ # required
{
key: "TagKeyString", # required
value: "TagValueString", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tag_set ⇒ Array<Types::S3Tag>
A collection for a set of tags.
Instance Attribute Details
#tag_set ⇒ Array<Types::S3Tag>
A collection for a set of tags.
6599 6600 6601 6602 6603 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 6599 class Tagging < Struct.new( :tag_set) SENSITIVE = [] include Aws::Structure end |