Class: Aws::S3::Types::MetadataEntry

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

{
  name: "MetadataKey",
  value: "MetadataValue",
}

A metadata key-value pair to store with an object.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Returns:

  • (String)


5596
5597
5598
5599
5600
# File 'lib/aws-sdk-s3/types.rb', line 5596

class MetadataEntry < Struct.new(
  :name,
  :value)
  include Aws::Structure
end

#valueString

Returns:

  • (String)


5596
5597
5598
5599
5600
# File 'lib/aws-sdk-s3/types.rb', line 5596

class MetadataEntry < Struct.new(
  :name,
  :value)
  include Aws::Structure
end