interface TagConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Wisdom.CfnAIAgentPropsMixin.TagConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswisdom#CfnAIAgentPropsMixin_TagConditionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wisdom.CfnAIAgentPropsMixin.TagConditionProperty |
Python | aws_cdk.cfn_property_mixins.aws_wisdom.CfnAIAgentPropsMixin.TagConditionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wisdom » 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 { aws_wisdom as wisdom } from '@aws-cdk/cfn-property-mixins';
const tagConditionProperty: wisdom.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