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

CodeConfiguration

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

Describes the configuration that App Runner uses to build and run an App Runner service from a source code repository.

interface CodeConfiguration {
CodeConfigurationValues?: CodeConfigurationValues | null;
ConfigurationSource: ConfigurationSource;
}

§Properties

§
CodeConfigurationValues?: CodeConfigurationValues | null
[src]

The basic configuration for building and running the App Runner service. Use it to quickly launch an App Runner service without providing a apprunner.yaml file in the source code repository (or ignoring the file if it exists).

§
ConfigurationSource: ConfigurationSource
[src]

The source of the App Runner configuration. Values are interpreted as follows:

  • REPOSITORY – App Runner reads configuration values from the apprunner.yaml file in the source code repository and ignores CodeConfigurationValues.
  • API – App Runner uses configuration values provided in CodeConfigurationValues and ignores the apprunner.yaml file in the source code repository.