Interface CfnEventBus.ITagEntryProperty
A key-value pair associated with an AWS resource.
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.AWS.Events.dll
Syntax (csharp)
public interface ITagEntryProperty
Syntax (vb)
Public Interface 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;
TagEntryProperty tagEntryProperty = new TagEntryProperty {
Key = "key",
Value = "value"
};
Synopsis
Properties
Key | A string you can use to assign a value. |
Value | The value for the specified tag key. |
Properties
Key
A string you can use to assign a value.
string Key { get; }
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.
string Value { get; }
Property Value
System.String