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:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String 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 new AWS::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

      @Stability(Stable) @NotNull public static Boolean isCfnConfigurationBundle(@NotNull Object x)
      Checks whether the given object is a CfnConfigurationBundle.

      Parameters:
      x - This parameter is required.
    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      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:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrBundleArn

      @Stability(Stable) @NotNull public String getAttrBundleArn()
      The Amazon Resource Name (ARN) of the configuration bundle.
    • getAttrBundleId

      @Stability(Stable) @NotNull public String getAttrBundleId()
      The unique identifier of the configuration bundle.
    • getAttrCreatedAt

      @Stability(Stable) @NotNull public String getAttrCreatedAt()
      The timestamp when the configuration bundle was created.
    • getAttrLineageMetadata

      @Stability(Stable) @NotNull public IResolvable getAttrLineageMetadata()
      The version lineage metadata that tracks parent versions and creation source.
    • getAttrUpdatedAt

      @Stability(Stable) @NotNull public String getAttrUpdatedAt()
      The timestamp when the configuration bundle was last updated.
    • getAttrVersionId

      @Stability(Stable) @NotNull public String getAttrVersionId()
      The version identifier of the configuration bundle.
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCfnPropertyNames

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getConfigurationBundleRef

      @Stability(Stable) @NotNull public ConfigurationBundleReference getConfigurationBundleRef()
      A reference to a ConfigurationBundle resource.
      Specified by:
      getConfigurationBundleRef in interface IConfigurationBundleRef
    • getBundleName

      @Stability(Stable) @NotNull public String getBundleName()
      The name for the configuration bundle.
    • setBundleName

      @Stability(Stable) public void setBundleName(@NotNull String value)
      The name for the configuration bundle.
    • getComponents

      @Stability(Stable) @NotNull public Object getComponents()
      A map of component identifiers to their configurations.

      Returns union: either IResolvable or Mapinvalid input: '<'String, either IResolvable or CfnConfigurationBundle.ComponentConfigurationProperty>

    • setComponents

      @Stability(Stable) public void setComponents(@NotNull IResolvable value)
      A map of component identifiers to their configurations.
    • setComponents

      @Stability(Stable) public void setComponents(@NotNull Map<String,Object> value)
      A map of component identifiers to their configurations.
    • getBranchName

      @Stability(Stable) @Nullable public String getBranchName()
      The branch name for version tracking.
    • setBranchName

      @Stability(Stable) public void setBranchName(@Nullable String value)
      The branch name for version tracking.
    • getCommitMessage

      @Stability(Stable) @Nullable public String getCommitMessage()
      A commit message describing the version of the configuration bundle.
    • setCommitMessage

      @Stability(Stable) public void setCommitMessage(@Nullable String value)
      A commit message describing the version of the configuration bundle.
    • getCreatedBy

      @Stability(Stable) @Nullable public Object getCreatedBy()
      The source that created a configuration bundle version.

      Returns union: either IResolvable or CfnConfigurationBundle.VersionCreatedBySourceProperty

    • setCreatedBy

      @Stability(Stable) public void setCreatedBy(@Nullable IResolvable value)
      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

      @Stability(Stable) @Nullable public String getDescription()
      The description for the configuration bundle.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      The description for the configuration bundle.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      Tags to assign to the configuration bundle.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      Tags to assign to the configuration bundle.