Class CfnDetector.TagItemProperty
Describes a tag.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.GuardDuty
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDetector.TagItemProperty : CfnDetector.ITagItemProperty
Syntax (vb)
Public Class CfnDetector.TagItemProperty Implements CfnDetector.ITagItemProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GuardDuty;
var tagItemProperty = new TagItemProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
| TagItemProperty() | Describes a tag. |
Properties
| Key | The tag key. |
| Value | The tag value. |
Constructors
TagItemProperty()
Describes a tag.
public TagItemProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GuardDuty;
var tagItemProperty = new TagItemProperty {
Key = "key",
Value = "value"
};
Properties
Key
The tag key.
public string Key { get; set; }
Property Value
Remarks
Value
The tag value.
public string Value { get; set; }