interface TagItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GuardDuty.CfnTrustedEntitySet.TagItemProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsguardduty#CfnTrustedEntitySet_TagItemProperty |
Java | software.amazon.awscdk.services.guardduty.CfnTrustedEntitySet.TagItemProperty |
Python | aws_cdk.aws_guardduty.CfnTrustedEntitySet.TagItemProperty |
TypeScript | aws-cdk-lib » aws_guardduty » CfnTrustedEntitySet » 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 { aws_guardduty as guardduty } from 'aws-cdk-lib';
const tagItemProperty: guardduty.CfnTrustedEntitySet.TagItemProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The tag key. |
| value | string | The tag value. |
key
Type:
string
The tag key.
value
Type:
string
The tag value.
This is optional.

.NET
Go
Java
Python
TypeScript