Class: Aws::MediaStoreData::Types::Item
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaStoreData::Types::Item
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediastoredata/types.rb
Overview
A metadata entry for a folder or object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content_length ⇒ Integer
The length of the item in bytes.
-
#content_type ⇒ String
The content type of the item.
-
#etag ⇒ String
The ETag that represents a unique instance of the item.
-
#last_modified ⇒ Time
The date and time that the item was last modified.
-
#name ⇒ String
The name of the item.
-
#type ⇒ String
The item type (folder or object).
Instance Attribute Details
#content_length ⇒ Integer
The length of the item in bytes.
253 254 255 256 257 258 259 260 261 262 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 253 class Item < Struct.new( :name, :type, :etag, :last_modified, :content_type, :content_length) SENSITIVE = [] include Aws::Structure end |
#content_type ⇒ String
The content type of the item.
253 254 255 256 257 258 259 260 261 262 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 253 class Item < Struct.new( :name, :type, :etag, :last_modified, :content_type, :content_length) SENSITIVE = [] include Aws::Structure end |
#etag ⇒ String
The ETag that represents a unique instance of the item.
253 254 255 256 257 258 259 260 261 262 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 253 class Item < Struct.new( :name, :type, :etag, :last_modified, :content_type, :content_length) SENSITIVE = [] include Aws::Structure end |
#last_modified ⇒ Time
The date and time that the item was last modified.
253 254 255 256 257 258 259 260 261 262 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 253 class Item < Struct.new( :name, :type, :etag, :last_modified, :content_type, :content_length) SENSITIVE = [] include Aws::Structure end |