Class: Aws::S3::Types::DeleteObjectTaggingRequest

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 DeleteObjectTaggingRequest data as a hash:

{
  bucket: "BucketName", # required
  key: "ObjectKey", # required
  version_id: "ObjectVersionId",
}

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

Returns:

  • (String)


2048
2049
2050
2051
2052
2053
# File 'lib/aws-sdk-s3/types.rb', line 2048

class DeleteObjectTaggingRequest < Struct.new(
  :bucket,
  :key,
  :version_id)
  include Aws::Structure
end

#keyString

Returns:

  • (String)


2048
2049
2050
2051
2052
2053
# File 'lib/aws-sdk-s3/types.rb', line 2048

class DeleteObjectTaggingRequest < Struct.new(
  :bucket,
  :key,
  :version_id)
  include Aws::Structure
end

#version_idString

The versionId of the object that the tag-set will be removed from.

Returns:

  • (String)


2048
2049
2050
2051
2052
2053
# File 'lib/aws-sdk-s3/types.rb', line 2048

class DeleteObjectTaggingRequest < Struct.new(
  :bucket,
  :key,
  :version_id)
  include Aws::Structure
end