interface CfnConfigurationBundleProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnConfigurationBundleProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnConfigurationBundleProps |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnConfigurationBundleProps |
Python | aws_cdk.aws_bedrockagentcore.CfnConfigurationBundleProps |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnConfigurationBundleProps |
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 { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
declare const configuration: any;
const cfnConfigurationBundleProps: bedrockagentcore.CfnConfigurationBundleProps = {
bundleName: 'bundleName',
components: {
componentsKey: {
configuration: configuration,
},
},
// the properties below are optional
branchName: 'branchName',
commitMessage: 'commitMessage',
createdBy: {
name: 'name',
// the properties below are optional
arn: 'arn',
},
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| bundle | string | The name for the configuration bundle. |
| components | IResolvable | { [string]: IResolvable | Component } | A map of component identifiers to their configurations. |
| branch | string | The branch name for version tracking. |
| commit | string | A commit message describing the version of the configuration bundle. |
| created | IResolvable | Version | The source that created a configuration bundle version. |
| description? | string | The description for the configuration bundle. |
| tags? | Cfn[] | Tags to assign to the configuration bundle. |
bundleName
Type:
string
The name for the configuration bundle.
Names must be unique within your account.
components
Type:
IResolvable | { [string]: IResolvable | Component }
A map of component identifiers to their configurations.
branchName?
Type:
string
(optional)
The branch name for version tracking.
commitMessage?
Type:
string
(optional)
A commit message describing the version of the configuration bundle.
createdBy?
Type:
IResolvable | Version
(optional)
The source that created a configuration bundle version.
description?
Type:
string
(optional)
The description for the configuration bundle.
tags?
Type:
Cfn[]
(optional)
Tags to assign to the configuration bundle.

.NET
Go
Java
Python
TypeScript