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

SourceConfiguration

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

Describes the source deployed to an App Runner service. It can be a code or an image repository.

interface SourceConfiguration {
AuthenticationConfiguration?: AuthenticationConfiguration | null;
AutoDeploymentsEnabled?: boolean | null;
CodeRepository?: CodeRepository | null;
ImageRepository?: ImageRepository | null;
}

§Properties

§
AuthenticationConfiguration?: AuthenticationConfiguration | null
[src]

Describes the resources that are needed to authenticate access to some source repositories.

§
AutoDeploymentsEnabled?: boolean | null
[src]

If true, continuous integration from the source repository is enabled for the App Runner service. Each repository change (including any source code commit or new image version) starts a deployment.

Default: App Runner sets to false for a source image that uses an ECR Public repository or an ECR repository that's in an Amazon Web Services account other than the one that the service is in. App Runner sets to true in all other cases (which currently include a source code repository or a source image using a same-account ECR repository).

§
CodeRepository?: CodeRepository | null
[src]

The description of a source code repository.

You must provide either this member or ImageRepository (but not both).

§
ImageRepository?: ImageRepository | null
[src]

The description of a source image repository.

You must provide either this member or CodeRepository (but not both).