Class: Aws::MediaStoreData::Types::DescribeObjectResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaStoreData::Types::DescribeObjectResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediastoredata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cache_control ⇒ String
An optional ‘CacheControl` header that allows the caller to control the object’s cache behavior.
-
#content_length ⇒ Integer
The length of the object in bytes.
-
#content_type ⇒ String
The content type of the object.
-
#etag ⇒ String
The ETag that represents a unique instance of the object.
-
#last_modified ⇒ Time
The date and time that the object was last modified.
Instance Attribute Details
#cache_control ⇒ String
An optional ‘CacheControl` header that allows the caller to control the object’s cache behavior. Headers can be passed in as specified in the HTTP at [www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9][1].
Headers with a custom user-defined value are also accepted.
[1]: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9
89 90 91 92 93 94 95 96 97 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 89 class DescribeObjectResponse < Struct.new( :etag, :content_type, :content_length, :cache_control, :last_modified) SENSITIVE = [] include Aws::Structure end |
#content_length ⇒ Integer
The length of the object in bytes.
89 90 91 92 93 94 95 96 97 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 89 class DescribeObjectResponse < Struct.new( :etag, :content_type, :content_length, :cache_control, :last_modified) SENSITIVE = [] include Aws::Structure end |
#content_type ⇒ String
The content type of the object.
89 90 91 92 93 94 95 96 97 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 89 class DescribeObjectResponse < Struct.new( :etag, :content_type, :content_length, :cache_control, :last_modified) SENSITIVE = [] include Aws::Structure end |
#etag ⇒ String
The ETag that represents a unique instance of the object.
89 90 91 92 93 94 95 96 97 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 89 class DescribeObjectResponse < Struct.new( :etag, :content_type, :content_length, :cache_control, :last_modified) SENSITIVE = [] include Aws::Structure end |
#last_modified ⇒ Time
The date and time that the object was last modified.
89 90 91 92 93 94 95 96 97 |
# File 'lib/aws-sdk-mediastoredata/types.rb', line 89 class DescribeObjectResponse < Struct.new( :etag, :content_type, :content_length, :cache_control, :last_modified) SENSITIVE = [] include Aws::Structure end |