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

AutoBranchCreationConfig

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

Describes the automated branch creation configuration.

interface AutoBranchCreationConfig {
basicAuthCredentials?: string | null;
buildSpec?: string | null;
enableAutoBuild?: boolean | null;
enableBasicAuth?: boolean | null;
enablePerformanceMode?: boolean | null;
enablePullRequestPreview?: boolean | null;
environmentVariables?: {
[key: string]: string | null | undefined;
}
| null;
framework?: string | null;
pullRequestEnvironmentName?: string | null;
stage?: Stage | null;
}

§Properties

§
basicAuthCredentials?: string | null
[src]

The basic authorization credentials for the autocreated branch. You must base64-encode the authorization credentials and provide them in the format user:password.

§
buildSpec?: string | null
[src]

The build specification (build spec) for the autocreated branch.

§
enableAutoBuild?: boolean | null
[src]

Enables auto building for the autocreated branch.

§
enableBasicAuth?: boolean | null
[src]

Enables basic authorization for the autocreated branch.

§
enablePerformanceMode?: boolean | null
[src]

Enables performance mode for the branch.

Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to roll out.

§
enablePullRequestPreview?: boolean | null
[src]

Enables pull request previews for the autocreated branch.

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

The environment variables for the autocreated branch.

§
framework?: string | null
[src]

The framework for the autocreated branch.

§
pullRequestEnvironmentName?: string | null
[src]

The Amplify environment name for the pull request.

§
stage?: Stage | null
[src]

Describes the current stage for the autocreated branch.