Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeObjectResponse

import type { DescribeObjectResponse } from "https://aws-api.deno.dev/v0.3/services/mediastoredata.ts?docs=full";
interface DescribeObjectResponse {
CacheControl?: string | null;
ContentLength?: number | null;
ContentType?: string | null;
ETag?: string | null;
LastModified?: Date | number | null;
}

§Properties

§
CacheControl?: string | null
[src]

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.

§
ContentLength?: number | null
[src]

The length of the object in bytes.

§
ContentType?: string | null
[src]

The content type of the object.

§
ETag?: string | null
[src]

The ETag that represents a unique instance of the object.

§
LastModified?: Date | number | null
[src]

The date and time that the object was last modified.