Class: Aws::S3::Types::PutBucketTaggingRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass PutBucketTaggingRequest data as a hash:

{
  bucket: "BucketName", # required
  content_md5: "ContentMD5",
  tagging: { # required
    tag_set: [ # required
      {
        key: "ObjectKey", # required
        value: "Value", # required
      },
    ],
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

Returns:

  • (String)


7251
7252
7253
7254
7255
7256
# File 'lib/aws-sdk-s3/types.rb', line 7251

class PutBucketTaggingRequest < Struct.new(
  :bucket,
  :content_md5,
  :tagging)
  include Aws::Structure
end

#content_md5String

Returns:

  • (String)


7251
7252
7253
7254
7255
7256
# File 'lib/aws-sdk-s3/types.rb', line 7251

class PutBucketTaggingRequest < Struct.new(
  :bucket,
  :content_md5,
  :tagging)
  include Aws::Structure
end

#taggingTypes::Tagging

Returns:



7251
7252
7253
7254
7255
7256
# File 'lib/aws-sdk-s3/types.rb', line 7251

class PutBucketTaggingRequest < Struct.new(
  :bucket,
  :content_md5,
  :tagging)
  include Aws::Structure
end