ServiceSourceConfigurationCodeRepository constructor

const ServiceSourceConfigurationCodeRepository({
  1. Input<ServiceSourceConfigurationCodeRepositoryCodeConfiguration?>? codeConfiguration,
  2. required Input<String> repositoryUrl,
  3. required Input<ServiceSourceConfigurationCodeRepositorySourceCodeVersion> sourceCodeVersion,
  4. Input<String?>? sourceDirectory,
})

Creates a new ServiceSourceConfigurationCodeRepository. codeConfiguration Configuration for building and running the service from a source code repository. See codeConfiguration below. repositoryUrl Location of the repository that contains the source code. sourceCodeVersion Version that should be used within the source code repository. See sourceCodeVersion below. sourceDirectory Path of the directory that stores source code and configuration files. The build and start commands also execute from here. The path is absolute from root and, if not specified, defaults to the repository root.

Implementation

const ServiceSourceConfigurationCodeRepository({
  this.codeConfiguration,
  required this.repositoryUrl,
  required this.sourceCodeVersion,
  this.sourceDirectory,
});