interface ConfigurationBundleActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayRulePropsMixin.ConfigurationBundleActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayRulePropsMixin_ConfigurationBundleActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayRulePropsMixin.ConfigurationBundleActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayRulePropsMixin.ConfigurationBundleActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayRulePropsMixin » 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/cfn-property-mixins';
const configurationBundleActionProperty: bedrockagentcore.CfnGatewayRulePropsMixin.ConfigurationBundleActionProperty = {
staticOverride: {
bundleArn: 'bundleArn',
bundleVersion: 'bundleVersion',
},
weightedOverride: {
trafficSplit: [{
configurationBundle: {
bundleArn: 'bundleArn',
bundleVersion: 'bundleVersion',
},
description: 'description',
metadata: {
metadataKey: 'metadata',
},
name: 'name',
weight: 123,
}],
},
};
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