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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationBundle.VersionLineageMetadataPropertystatic final classAn implementation forCfnConfigurationBundle.VersionLineageMetadataProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBranchName
The branch name for this version.- See Also:
-
getCommitMessage
A commit message describing the changes in this version.- See Also:
-
getCreatedBy
The source that created a configuration bundle version.Returns union: either
IResolvableorCfnConfigurationBundle.VersionCreatedBySourceProperty- See Also:
-
getParentVersionIds
A list of parent version identifiers.- See Also:
-
builder
-