Show / Hide Table of Contents

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbus-tagentry.html

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbus-tagentry.html#cfn-events-eventbus-tagentry-key

Value

The value for the specified tag key.

string Value { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbus-tagentry.html#cfn-events-eventbus-tagentry-value

Back to top Generated by DocFX