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

ImportAssetFromSignedUrlResponseDetails

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

The details in the response for an import request, including the signed URL and other information.

interface ImportAssetFromSignedUrlResponseDetails {
AssetName: string;
DataSetId: string;
Md5Hash?: string | null;
RevisionId: string;
SignedUrl?: string | null;
SignedUrlExpiresAt?: Date | number | null;
}

§Properties

§
AssetName: string
[src]

The name for the asset associated with this import job.

§
DataSetId: string
[src]

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

§
Md5Hash?: string | null
[src]

The Base64-encoded Md5 hash for the asset, used to ensure the integrity of the file at that location.

§
RevisionId: string
[src]

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

§
SignedUrl?: string | null
[src]

The signed URL.

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

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