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

.NET
Go
Java
Python
TypeScript