interface TagItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins.CfnTrustedEntitySetPropsMixin.TagItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/mixins#CfnTrustedEntitySetPropsMixin_TagItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.mixins.CfnTrustedEntitySetPropsMixin.TagItemProperty |
Python | aws_cdk.mixins_preview.aws_guardduty.mixins.CfnTrustedEntitySetPropsMixin.TagItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_guardduty » mixins » CfnTrustedEntitySetPropsMixin » TagItemProperty |
Describes a tag.
For more information, see 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.CfnTrustedEntitySetPropsMixin.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.
This is optional.

.NET
Go
Java
Python
TypeScript