interface TagConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnAIAgentPropsMixin.TagConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnAIAgentPropsMixin_TagConditionProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnAIAgentPropsMixin.TagConditionProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAIAgentPropsMixin.TagConditionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnAIAgentPropsMixin » 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 { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const tagConditionProperty: wisdom_mixins.CfnAIAgentPropsMixin.TagConditionProperty = {
key: 'key',
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
(optional)
The tag key in the tag condition.
value?
Type:
string
(optional)
The tag value in the tag condition.

.NET
Go
Java
Python
TypeScript