interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayRulePropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayRulePropsMixin_ActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayRulePropsMixin.ActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayRulePropsMixin.ActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayRulePropsMixin » ActionProperty |
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 actionProperty: bedrockagentcore.CfnGatewayRulePropsMixin.ActionProperty = {
configurationBundle: {
staticOverride: {
bundleArn: 'bundleArn',
bundleVersion: 'bundleVersion',
},
weightedOverride: {
trafficSplit: [{
configurationBundle: {
bundleArn: 'bundleArn',
bundleVersion: 'bundleVersion',
},
description: 'description',
metadata: {
metadataKey: 'metadata',
},
name: 'name',
weight: 123,
}],
},
},
routeToTarget: {
staticRoute: {
targetName: 'targetName',
},
weightedRoute: {
trafficSplit: [{
description: 'description',
metadata: {
metadataKey: 'metadata',
},
name: 'name',
targetName: 'targetName',
weight: 123,
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | IResolvable | Configuration | |
| route | IResolvable | Route |
configurationBundle?
Type:
IResolvable | Configuration
(optional)
routeToTarget?
Type:
IResolvable | Route
(optional)

.NET
Go
Java
Python
TypeScript