Class: Aws::S3::Types::MetadataEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::MetadataEntry
- 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
-
#name ⇒ String
Name of the Object.
-
#value ⇒ String
Value of the Object.
Instance Attribute Details
#name ⇒ String
Name of the Object.
7424 7425 7426 7427 7428 |
# File 'lib/aws-sdk-s3/types.rb', line 7424 class MetadataEntry < Struct.new( :name, :value) include Aws::Structure end |
#value ⇒ String
Value of the Object.
7424 7425 7426 7427 7428 |
# File 'lib/aws-sdk-s3/types.rb', line 7424 class MetadataEntry < Struct.new( :name, :value) include Aws::Structure end |