interface TagConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnAIAgent.TagConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAIAgent_TagConditionProperty |
Java | software.amazon.awscdk.services.wisdom.CfnAIAgent.TagConditionProperty |
Python | aws_cdk.aws_wisdom.CfnAIAgent.TagConditionProperty |
TypeScript | aws-cdk-lib » aws_wisdom » CfnAIAgent » TagConditionProperty |
An object that can be used to specify tag conditions.
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 tagConditionProperty: wisdom.CfnAIAgent.TagConditionProperty = {
key: 'key',
// the properties below are optional
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The tag key in the tag condition. |
| value? | string | The tag value in the tag condition. |
key
Type:
string
The tag key in the tag condition.
value?
Type:
string
(optional)
The tag value in the tag condition.

.NET
Go
Java
Python
TypeScript