Interface CfnConfigurationBundleProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfigurationBundleProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)", date="2026-06-16T16:14:19.558Z") @Stability(Stable) public interface CfnConfigurationBundleProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnConfigurationBundle.

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;
 CfnConfigurationBundleProps cfnConfigurationBundleProps = CfnConfigurationBundleProps.builder()
         .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: