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

.NET
Go
Java
Python
TypeScript