describe_object
(**kwargs)¶Gets the headers for an object at the specified path.
See also: AWS API Documentation
Request Syntax
response = client.describe_object(
Path='string'
)
[REQUIRED]
The path (including the file name) where the object is stored in the container. Format: <folder name>/<folder name>/<file name>
{
'ETag': 'string',
'ContentType': 'string',
'ContentLength': 123,
'CacheControl': 'string',
'LastModified': datetime(2015, 1, 1)
}
Response Structure
The ETag that represents a unique instance of the object.
The content type of the object.
The length of the object in bytes.
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 https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.
Headers with a custom user-defined value are also accepted.
The date and time that the object was last modified.
Exceptions
MediaStoreData.Client.exceptions.ContainerNotFoundException
MediaStoreData.Client.exceptions.ObjectNotFoundException
MediaStoreData.Client.exceptions.InternalServerError