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

StartDeploymentRequest

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

The request structure for the start a deployment request.

interface StartDeploymentRequest {
appId: string;
branchName: string;
jobId?: string | null;
sourceUrl?: string | null;
}

§Properties

§
appId: string
[src]

The unique ID for an Amplify app.

§
branchName: string
[src]

The name for the branch, for the job.

§
jobId?: string | null
[src]

The job ID for this deployment, generated by the create deployment request.

§
sourceUrl?: string | null
[src]

The source URL for this deployment, used when calling start deployment without create deployment. The source URL can be any HTTP GET URL that is publicly accessible and downloads a single .zip file.