interface ConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayRule.ConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayRule_ConditionProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayRule.ConditionProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayRule.ConditionProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayRule » 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-lib';
const conditionProperty: bedrockagentcore.CfnGatewayRule.ConditionProperty = {
matchPaths: {
anyOf: ['anyOf'],
},
matchPrincipals: {
anyOf: [{
iamPrincipal: {
arn: 'arn',
// the properties below are optional
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