interface CfnConfigurationBundleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnConfigurationBundleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnConfigurationBundleMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnConfigurationBundleMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnConfigurationBundleMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnConfigurationBundleMixinProps |
Properties for CfnConfigurationBundlePropsMixin.
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/cfn-property-mixins';
declare const configuration: any;
const cfnConfigurationBundleMixinProps: bedrockagentcore.CfnConfigurationBundleMixinProps = {
branchName: 'branchName',
bundleName: 'bundleName',
commitMessage: 'commitMessage',
components: {
componentsKey: {
configuration: configuration,
},
},
createdBy: {
arn: 'arn',
name: 'name',
},
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| branch | string | The branch name for version tracking. |
| bundle | string | The name for the configuration bundle. |
| commit | string | A commit message describing the version of the configuration bundle. |
| components? | IResolvable | { [string]: IResolvable | Component } | A map of component identifiers to their configurations. |
| 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. |
branchName?
Type:
string
(optional)
The branch name for version tracking.
bundleName?
Type:
string
(optional)
The name for the configuration bundle.
Names must be unique within your account.
commitMessage?
Type:
string
(optional)
A commit message describing the version of the configuration bundle.
components?
Type:
IResolvable | { [string]: IResolvable | Component }
(optional)
A map of component identifiers to their configurations.
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