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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Name of the Object.

Returns:

  • (String)


9929
9930
9931
9932
9933
9934
# File 'lib/aws-sdk-s3/types.rb', line 9929

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

#valueString

Value of the Object.

Returns:

  • (String)


9929
9930
9931
9932
9933
9934
# File 'lib/aws-sdk-s3/types.rb', line 9929

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