interface SourceCodeVersionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppRunner.CfnServicePropsMixin.SourceCodeVersionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapprunner#CfnServicePropsMixin_SourceCodeVersionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apprunner.CfnServicePropsMixin.SourceCodeVersionProperty |
Python | aws_cdk.cfn_property_mixins.aws_apprunner.CfnServicePropsMixin.SourceCodeVersionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apprunner » CfnServicePropsMixin » 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 { aws_apprunner as apprunner } from '@aws-cdk/cfn-property-mixins';
const sourceCodeVersionProperty: apprunner.CfnServicePropsMixin.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
(optional)
The type of version identifier.
For a git-based repository, branches represent versions.
value?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript