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

ExportAssetToSignedUrlResponseDetails

import type { ExportAssetToSignedUrlResponseDetails } from "https://aws-api.deno.dev/v0.3/services/dataexchange.ts?docs=full";

The details of the export to signed URL response.

interface ExportAssetToSignedUrlResponseDetails {
AssetId: string;
DataSetId: string;
RevisionId: string;
SignedUrl?: string | null;
SignedUrlExpiresAt?: Date | number | null;
}

§Properties

§
AssetId: string
[src]

The unique identifier for the asset associated with this export job.

§
DataSetId: string
[src]

The unique identifier for the data set associated with this export job.

§
RevisionId: string
[src]

The unique identifier for the revision associated with this export response.

§
SignedUrl?: string | null
[src]

The signed URL for the export request.

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

The date and time that the signed URL expires, in ISO 8601 format.