interface TagItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins.CfnMalwareProtectionPlanPropsMixin.TagItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/mixins#CfnMalwareProtectionPlanPropsMixin_TagItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.mixins.CfnMalwareProtectionPlanPropsMixin.TagItemProperty |
Python | aws_cdk.mixins_preview.aws_guardduty.mixins.CfnMalwareProtectionPlanPropsMixin.TagItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_guardduty » mixins » CfnMalwareProtectionPlanPropsMixin » TagItemProperty |
Describes a tag.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as guardduty_mixins } from '@aws-cdk/mixins-preview/aws-guardduty';
const tagItemProperty: guardduty_mixins.CfnMalwareProtectionPlanPropsMixin.TagItemProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The tag key. |
| value? | string | The tag value. |
key?
Type:
string
(optional)
The tag key.
value?
Type:
string
(optional)
The tag value.

.NET
Go
Java
Python
TypeScript