Class CfnConfigurationBundle
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.bedrockagentcore.CfnConfigurationBundle
- All Implemented Interfaces:
IInspectable,IConfigurationBundleRef,IEnvironmentAware,ITaggableV2,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-06-16T16:14:19.556Z")
@Stability(Stable)
public class CfnConfigurationBundle
extends CfnResource
implements IInspectable, IConfigurationBundleRef, ITaggableV2
Definition of AWS::BedrockAgentCore::ConfigurationBundle Resource Type.
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.*;
Object configuration;
CfnConfigurationBundle cfnConfigurationBundle = CfnConfigurationBundle.Builder.create(this, "MyCfnConfigurationBundle")
.bundleName("bundleName")
.components(Map.of(
"componentsKey", ComponentConfigurationProperty.builder()
.configuration(configuration)
.build()))
// the properties below are optional
.branchName("branchName")
.commitMessage("commitMessage")
.createdBy(VersionCreatedBySourceProperty.builder()
.name("name")
// the properties below are optional
.arn("arn")
.build())
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnConfigurationBundle.static interfaceThe configuration for a component within a configuration bundle.static interfaceThe source that created a configuration bundle version.static interfaceThe version lineage metadata that tracks parent versions and creation source.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.bedrockagentcore.IConfigurationBundleRef
IConfigurationBundleRef.Jsii$Default, IConfigurationBundleRef.Jsii$ProxyNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnConfigurationBundle(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnConfigurationBundle(software.amazon.jsii.JsiiObjectRef objRef) CfnConfigurationBundle(software.constructs.Construct scope, String id, CfnConfigurationBundleProps props) Create a newAWS::BedrockAgentCore::ConfigurationBundle. -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Name (ARN) of the configuration bundle.The unique identifier of the configuration bundle.The timestamp when the configuration bundle was created.The version lineage metadata that tracks parent versions and creation source.The timestamp when the configuration bundle was last updated.The version identifier of the configuration bundle.The branch name for version tracking.The name for the configuration bundle.Tag Manager which manages the tags for this resource.A commit message describing the version of the configuration bundle.A map of component identifiers to their configurations.A reference to a ConfigurationBundle resource.The source that created a configuration bundle version.The description for the configuration bundle.getTags()Tags to assign to the configuration bundle.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.static BooleanChecks whether the given object is a CfnConfigurationBundle.renderProperties(Map<String, Object> props) voidsetBranchName(String value) The branch name for version tracking.voidsetBundleName(String value) The name for the configuration bundle.voidsetCommitMessage(String value) A commit message describing the version of the configuration bundle.voidsetComponents(Map<String, Object> value) A map of component identifiers to their configurations.voidsetComponents(IResolvable value) A map of component identifiers to their configurations.voidsetCreatedBy(IResolvable value) The source that created a configuration bundle version.voidThe source that created a configuration bundle version.voidsetDescription(String value) The description for the configuration bundle.voidTags to assign to the configuration bundle.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyCrossStackReferenceStrength, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, cfnPropertyName, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId, withMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNode, withMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnConfigurationBundle
protected CfnConfigurationBundle(software.amazon.jsii.JsiiObjectRef objRef) -
CfnConfigurationBundle
protected CfnConfigurationBundle(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnConfigurationBundle
@Stability(Stable) public CfnConfigurationBundle(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnConfigurationBundleProps props) Create a newAWS::BedrockAgentCore::ConfigurationBundle.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
isCfnConfigurationBundle
Checks whether the given object is a CfnConfigurationBundle.- Parameters:
x- This parameter is required.
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrBundleArn
The Amazon Resource Name (ARN) of the configuration bundle. -
getAttrBundleId
The unique identifier of the configuration bundle. -
getAttrCreatedAt
The timestamp when the configuration bundle was created. -
getAttrLineageMetadata
The version lineage metadata that tracks parent versions and creation source. -
getAttrUpdatedAt
The timestamp when the configuration bundle was last updated. -
getAttrVersionId
The version identifier of the configuration bundle. -
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManagerin interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getCfnPropertyNames
- Overrides:
getCfnPropertyNamesin classCfnResource
-
getConfigurationBundleRef
A reference to a ConfigurationBundle resource.- Specified by:
getConfigurationBundleRefin interfaceIConfigurationBundleRef
-
getBundleName
The name for the configuration bundle. -
setBundleName
The name for the configuration bundle. -
getComponents
A map of component identifiers to their configurations.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnConfigurationBundle.ComponentConfigurationProperty> -
setComponents
A map of component identifiers to their configurations. -
setComponents
A map of component identifiers to their configurations. -
getBranchName
The branch name for version tracking. -
setBranchName
The branch name for version tracking. -
getCommitMessage
A commit message describing the version of the configuration bundle. -
setCommitMessage
A commit message describing the version of the configuration bundle. -
getCreatedBy
The source that created a configuration bundle version.Returns union: either
IResolvableorCfnConfigurationBundle.VersionCreatedBySourceProperty -
setCreatedBy
The source that created a configuration bundle version. -
setCreatedBy
@Stability(Stable) public void setCreatedBy(@Nullable CfnConfigurationBundle.VersionCreatedBySourceProperty value) The source that created a configuration bundle version. -
getDescription
The description for the configuration bundle. -
setDescription
The description for the configuration bundle. -
getTags
Tags to assign to the configuration bundle. -
setTags
Tags to assign to the configuration bundle.
-