interface TagItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GuardDuty.CfnPublishingDestinationPropsMixin.TagItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsguardduty#CfnPublishingDestinationPropsMixin_TagItemProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.guardduty.CfnPublishingDestinationPropsMixin.TagItemProperty |
Python | aws_cdk.cfn_property_mixins.aws_guardduty.CfnPublishingDestinationPropsMixin.TagItemProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_guardduty » CfnPublishingDestinationPropsMixin » 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 { aws_guardduty as guardduty } from '@aws-cdk/cfn-property-mixins';
const tagItemProperty: guardduty.CfnPublishingDestinationPropsMixin.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