@Stability(value=Stable)
public static interface CfnEventBus.TagEntryProperty
extends software.amazon.jsii.JsiiSerializable
In EventBridge, rules and event buses support tagging.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.events.*;
TagEntryProperty tagEntryProperty = TagEntryProperty.builder()
.key("key")
.value("value")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEventBus.TagEntryProperty.Builder
A builder for
CfnEventBus.TagEntryProperty |
static class |
CfnEventBus.TagEntryProperty.Jsii$Proxy
An implementation for
CfnEventBus.TagEntryProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEventBus.TagEntryProperty.Builder |
builder() |
String |
getKey()
A string you can use to assign a value.
|
String |
getValue()
The value for the specified tag key.
|
@Stability(value=Stable) @NotNull String getKey()
The combination of tag keys and values can help you organize and categorize your resources.
@Stability(value=Stable) @NotNull String getValue()
@Stability(value=Stable) static CfnEventBus.TagEntryProperty.Builder builder()
Copyright © 2022. All rights reserved.