ServiceSourceConfigurationCodeRepositoryCodeConfiguration constructor

const ServiceSourceConfigurationCodeRepositoryCodeConfiguration({
  1. Input<ServiceSourceConfigurationCodeRepositoryCodeConfigurationCodeConfigurationValues?>? codeConfigurationValues,
  2. required Input<String> configurationSource,
})

Creates a new ServiceSourceConfigurationCodeRepositoryCodeConfiguration. codeConfigurationValues Basic configuration for building and running the App Runner service. Use this parameter to quickly launch an App Runner service without providing an apprunner.yaml file in the source code repository (or ignoring the file if it exists). See codeConfigurationValues below. configurationSource Source of the App Runner configuration. Valid values: REPOSITORY, API. Use REPOSITORY to have App Runner read configuration values from the apprunner.yaml file in the source code repository and ignore codeConfigurationValues. Use API to have App Runner use the configuration values provided in codeConfigurationValues and ignore the apprunner.yaml file in the source code repository.

Implementation

const ServiceSourceConfigurationCodeRepositoryCodeConfiguration({
  this.codeConfigurationValues,
  required this.configurationSource,
});