interface VersionLineageMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnConfigurationBundle.VersionLineageMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnConfigurationBundle_VersionLineageMetadataProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnConfigurationBundle.VersionLineageMetadataProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnConfigurationBundle.VersionLineageMetadataProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnConfigurationBundle » VersionLineageMetadataProperty |
The version lineage metadata that tracks parent versions and creation source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const versionLineageMetadataProperty: bedrockagentcore.CfnConfigurationBundle.VersionLineageMetadataProperty = {
branchName: 'branchName',
commitMessage: 'commitMessage',
createdBy: {
name: 'name',
// the properties below are optional
arn: 'arn',
},
parentVersionIds: ['parentVersionIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| branch | string | The branch name for this version. |
| commit | string | A commit message describing the changes in this version. |
| created | IResolvable | Version | The source that created a configuration bundle version. |
| parent | string[] | A list of parent version identifiers. |
branchName?
Type:
string
(optional)
The branch name for this version.
commitMessage?
Type:
string
(optional)
A commit message describing the changes in this version.
createdBy?
Type:
IResolvable | Version
(optional)
The source that created a configuration bundle version.
parentVersionIds?
Type:
string[]
(optional)
A list of parent version identifiers.

.NET
Go
Java
Python
TypeScript