interface SourceCodeVersion
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppRunner.Alpha.SourceCodeVersion | 
|  Go | github.com/aws/aws-cdk-go/awscdkapprunneralpha/v2#SourceCodeVersion | 
|  Java | software.amazon.awscdk.services.apprunner.alpha.SourceCodeVersion | 
|  Python | aws_cdk.aws_apprunner_alpha.SourceCodeVersion | 
|  TypeScript (source) | @aws-cdk/aws-apprunner-alpha»SourceCodeVersion | 
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_alpha from '@aws-cdk/aws-apprunner-alpha';
const sourceCodeVersion: apprunner_alpha.SourceCodeVersion = {
  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.
value
Type:
string
A source code version.
