interface OrConditionProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Wisdom.CfnAIAgent.OrConditionProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAIAgent_OrConditionProperty | 
  Java | software.amazon.awscdk.services.wisdom.CfnAIAgent.OrConditionProperty | 
  Python | aws_cdk.aws_wisdom.CfnAIAgent.OrConditionProperty | 
  TypeScript  | aws-cdk-lib » aws_wisdom » CfnAIAgent » OrConditionProperty | 
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wisdom as wisdom } from 'aws-cdk-lib';
const orConditionProperty: wisdom.CfnAIAgent.OrConditionProperty = {
  andConditions: [{
    key: 'key',
    // the properties below are optional
    value: 'value',
  }],
  tagCondition: {
    key: 'key',
    // the properties below are optional
    value: 'value',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| and | IResolvable | (IResolvable | Tag)[] | |
| tag | IResolvable | Tag | A leaf node condition which can be used to specify a tag condition. | 
andConditions?
Type:
IResolvable | (IResolvable | Tag)[]
(optional)
tagCondition?
Type:
IResolvable | Tag
(optional)
A leaf node condition which can be used to specify a tag condition.

 .NET
 Go
 Java
 Python
 TypeScript