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

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

Overview

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)


10956
10957
10958
10959
10960
10961
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 10956

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

#valueString

Value of the object.

Returns:

  • (String)


10956
10957
10958
10959
10960
10961
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 10956

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