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

CreateDeploymentResult

import type { CreateDeploymentResult } from "https://aws-api.deno.dev/v0.4/services/amplify.ts?docs=full";

The result structure for the create a new deployment request.

interface CreateDeploymentResult {
fileUploadUrls: {
[key: string]: string | null | undefined;
}
;
jobId?: string | null;
zipUploadUrl: string;
}

§Properties

§
fileUploadUrls: {
[key: string]: string | null | undefined;
}
[src]

When the fileMap argument is provided in the request, fileUploadUrls will contain a map of file names to upload URLs.

§
jobId?: string | null
[src]

The job ID for this deployment. will supply to start deployment api.

§
zipUploadUrl: string
[src]

When the fileMap argument is not provided in the request, this zipUploadUrl is returned.