interface SourceCodeVersionProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppRunner.CfnService.SourceCodeVersionProperty |
Java | software.amazon.awscdk.services.apprunner.CfnService.SourceCodeVersionProperty |
Python | aws_cdk.aws_apprunner.CfnService.SourceCodeVersionProperty |
TypeScript | @aws-cdk/aws-apprunner » CfnService » SourceCodeVersionProperty |
Identifies a version of code that AWS App Runner refers to within a source code repository.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apprunner from '@aws-cdk/aws-apprunner';
const sourceCodeVersionProperty: apprunner.CfnService.SourceCodeVersionProperty = {
type: 'type',
value: 'value',
};
Properties
Name | Type | Description |
---|---|---|
type | string | The type of version identifier. |
value | string | A source code version. |
type
Type:
string
The type of version identifier.
For a git-based repository, branches represent versions.
value
Type:
string
A source code version.
For a git-based repository, a branch name maps to a specific version. App Runner uses the most recent commit to the branch.