interface CfnGatewayRuleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayRuleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayRuleMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayRuleMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayRuleMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayRuleMixinProps |
Properties for CfnGatewayRulePropsMixin.
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 cfnGatewayRuleMixinProps: bedrockagentcore.CfnGatewayRuleMixinProps = {
actions: [{
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,
}],
},
},
}],
conditions: [{
matchPaths: {
anyOf: ['anyOf'],
},
matchPrincipals: {
anyOf: [{
iamPrincipal: {
arn: 'arn',
operator: 'operator',
},
}],
},
}],
description: 'description',
gatewayIdentifier: 'gatewayIdentifier',
priority: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | IResolvable | (IResolvable | Action)[] | |
| conditions? | IResolvable | (IResolvable | Condition)[] | |
| description? | string | |
| gateway | string | |
| priority? | number |
actions?
Type:
IResolvable | (IResolvable | Action)[]
(optional)
conditions?
Type:
IResolvable | (IResolvable | Condition)[]
(optional)
description?
Type:
string
(optional)
gatewayIdentifier?
Type:
string
(optional)
priority?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript