Interface CfnConfigurationBundlePropsMixin.VersionLineageMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationBundlePropsMixin.VersionLineageMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnConfigurationBundlePropsMixin
@Stability(Stable)
public static interface CfnConfigurationBundlePropsMixin.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.cfnpropertymixins.services.bedrockagentcore.*;
VersionLineageMetadataProperty versionLineageMetadataProperty = VersionLineageMetadataProperty.builder()
.branchName("branchName")
.commitMessage("commitMessage")
.createdBy(VersionCreatedBySourceProperty.builder()
.arn("arn")
.name("name")
.build())
.parentVersionIds(List.of("parentVersionIds"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfigurationBundlePropsMixin.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
IResolvableorCfnConfigurationBundlePropsMixin.VersionCreatedBySourceProperty- See Also:
-
getParentVersionIds
A list of parent version identifiers.- See Also:
-
builder
@Stability(Stable) static CfnConfigurationBundlePropsMixin.VersionLineageMetadataProperty.Builder builder()
-