interface ConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnGatewayRulePropsMixin.ConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnGatewayRulePropsMixin_ConditionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnGatewayRulePropsMixin.ConditionProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnGatewayRulePropsMixin.ConditionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnGatewayRulePropsMixin » ConditionProperty |
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 conditionProperty: bedrockagentcore.CfnGatewayRulePropsMixin.ConditionProperty = {
matchPaths: {
anyOf: ['anyOf'],
},
matchPrincipals: {
anyOf: [{
iamPrincipal: {
arn: 'arn',
operator: 'operator',
},
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| match | IResolvable | Match | |
| match | IResolvable | Match |
matchPaths?
Type:
IResolvable | Match
(optional)
matchPrincipals?
Type:
IResolvable | Match
(optional)

.NET
Go
Java
Python
TypeScript