Class CfnDiscoverer.TagsEntryProperty
Tags to associate with the discoverer.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EventSchemas
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDiscoverer.TagsEntryProperty : CfnDiscoverer.ITagsEntryProperty
Syntax (vb)
Public Class CfnDiscoverer.TagsEntryProperty Implements CfnDiscoverer.ITagsEntryProperty
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.EventSchemas;
var tagsEntryProperty = new TagsEntryProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
| TagsEntryProperty() | Tags to associate with the discoverer. |
Properties
| Key | The key of a key-value pair. |
| Value | The value of a key-value pair. |
Constructors
TagsEntryProperty()
Tags to associate with the discoverer.
public TagsEntryProperty()
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.EventSchemas;
var tagsEntryProperty = new TagsEntryProperty {
Key = "key",
Value = "value"
};
Properties
Key
The key of a key-value pair.
public string Key { get; set; }
Property Value
Remarks
Value
The value of a key-value pair.
public string Value { get; set; }