Class CfnEventBus.TagEntryProperty
A key-value pair associated with an AWS resource.
Inheritance
System.Object
CfnEventBus.TagEntryProperty
Implements
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.AWS.Events.dll
Syntax (csharp)
public class TagEntryProperty : Object, CfnEventBus.ITagEntryProperty
Syntax (vb)
Public Class TagEntryProperty
Inherits Object
Implements CfnEventBus.ITagEntryProperty
Remarks
In EventBridge, rules and event buses support tagging.
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.Events;
var tagEntryProperty = new TagEntryProperty {
Key = "key",
Value = "value"
};
Synopsis
Constructors
TagEntryProperty() |
Properties
Key | A string you can use to assign a value. |
Value | The value for the specified tag key. |
Constructors
TagEntryProperty()
public TagEntryProperty()
Properties
Key
A string you can use to assign a value.
public string Key { get; set; }
Property Value
System.String
Remarks
The combination of tag keys and values can help you organize and categorize your resources.
Value
The value for the specified tag key.
public string Value { get; set; }
Property Value
System.String