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

CreateDeploymentRequest

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

The request structure for the create a new deployment request.

interface CreateDeploymentRequest {
appId: string;
branchName: string;
fileMap?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
appId: string
[src]

The unique ID for an Amplify app.

§
branchName: string
[src]

The name for the branch, for the job.

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

An optional file map that contains the file name as the key and the file content md5 hash as the value. If this argument is provided, the service will generate a unique upload URL per file. Otherwise, the service will only generate a single upload URL for the zipped files.