interface ConfigurationBundleActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayRule.ConfigurationBundleActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayRule_ConfigurationBundleActionProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayRule.ConfigurationBundleActionProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayRule.ConfigurationBundleActionProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayRule » ConfigurationBundleActionProperty |
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';
const configurationBundleActionProperty: bedrockagentcore.CfnGatewayRule.ConfigurationBundleActionProperty = {
staticOverride: {
bundleArn: 'bundleArn',
bundleVersion: 'bundleVersion',
},
weightedOverride: {
trafficSplit: [{
configurationBundle: {
bundleArn: 'bundleArn',
bundleVersion: 'bundleVersion',
},
name: 'name',
weight: 123,
// the properties below are optional
description: 'description',
metadata: {
metadataKey: 'metadata',
},
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| static | IResolvable | Static | |
| weighted | IResolvable | Weighted |
staticOverride?
Type:
IResolvable | Static
(optional)
weightedOverride?
Type:
IResolvable | Weighted
(optional)

.NET
Go
Java
Python
TypeScript