Show / Hide Table of Contents

Class CfnEventBus.TagEntryProperty

A key-value pair associated with an AWS resource.

Inheritance
System.Object
CfnEventBus.TagEntryProperty
Implements
CfnEventBus.ITagEntryProperty
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.

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;

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.

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.

public string Value { get; set; }
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

Implements

CfnEventBus.ITagEntryProperty
Back to top Generated by DocFX