Interface CfnConfigurationBundle.VersionLineageMetadataProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationBundle.VersionLineageMetadataProperty.Jsii$Proxy
Enclosing class:
CfnConfigurationBundle

@Stability(Stable) public static interface CfnConfigurationBundle.VersionLineageMetadataProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrockagentcore.*;
 VersionLineageMetadataProperty versionLineageMetadataProperty = VersionLineageMetadataProperty.builder()
         .branchName("branchName")
         .commitMessage("commitMessage")
         .createdBy(VersionCreatedBySourceProperty.builder()
                 .name("name")
                 // the properties below are optional
                 .arn("arn")
                 .build())
         .parentVersionIds(List.of("parentVersionIds"))
         .build();
 

See Also: