@aws-cdk_aws-apprunner-alpha.ConfigurationSourceType

enum ConfigurationSourceType ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.AppRunner.Alpha.ConfigurationSourceType
Gogithub.com/aws/aws-cdk-go/awscdkapprunneralpha/v2#ConfigurationSourceType
Javasoftware.amazon.awscdk.services.apprunner.alpha.ConfigurationSourceType
Pythonaws_cdk.aws_apprunner_alpha.ConfigurationSourceType
TypeScript (source)@aws-cdk/aws-apprunner-alpha ยป ConfigurationSourceType

The source of the App Runner configuration.

Example

new apprunner.Service(this, 'Service', {
  source: apprunner.Source.fromGitHub({
    repositoryUrl: 'https://github.com/aws-containers/hello-app-runner',
    branch: 'main',
    configurationSource: apprunner.ConfigurationSourceType.REPOSITORY,
    connection: apprunner.GitHubConnection.fromConnectionArn('CONNECTION_ARN'),
  }),
});

Members

NameDescription
REPOSITORY ๐Ÿ”นApp Runner reads configuration values from the apprunner.yaml file in the source code repository and ignores configurationValues.
API ๐Ÿ”นApp Runner uses configuration values provided in configurationValues and ignores the apprunner.yaml file in the source code repository.

REPOSITORY ๐Ÿ”น

App Runner reads configuration values from the apprunner.yaml file in the source code repository and ignores configurationValues.


API ๐Ÿ”น

App Runner uses configuration values provided in configurationValues and ignores the apprunner.yaml file in the source code repository.