ServiceSourceConfiguration constructor

const ServiceSourceConfiguration({
  1. Input<ServiceSourceConfigurationAuthenticationConfiguration?>? authenticationConfiguration,
  2. Input<bool?>? autoDeploymentsEnabled,
  3. Input<ServiceSourceConfigurationCodeRepository?>? codeRepository,
  4. Input<ServiceSourceConfigurationImageRepository?>? imageRepository,
})

Creates a new ServiceSourceConfiguration. authenticationConfiguration Configuration for resources needed to authenticate access to some source repositories. See authenticationConfiguration below. autoDeploymentsEnabled Whether continuous integration from the source repository is enabled for the App Runner service. If set to true, each repository change (source code commit or new image version) starts a deployment. Defaults to true. codeRepository Description of a source code repository. See codeRepository below. imageRepository Description of a source image repository. See imageRepository below.

Implementation

const ServiceSourceConfiguration({
  this.authenticationConfiguration,
  this.autoDeploymentsEnabled,
  this.codeRepository,
  this.imageRepository,
});