Interface CfnActivity.TagsEntryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnActivity.TagsEntryProperty.Jsii$Proxy
- Enclosing class:
- CfnActivity
@Stability(Stable)
public static interface CfnActivity.TagsEntryProperty
extends software.amazon.jsii.JsiiSerializable
The
TagsEntry
property specifies tags to identify an activity.
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.stepfunctions.*; TagsEntryProperty tagsEntryProperty = TagsEntryProperty.builder() .key("key") .value("value") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnActivity.TagsEntryProperty
static final class
An implementation forCfnActivity.TagsEntryProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
Thekey
for a key-value pair in a tag entry. -
getValue
Thevalue
for a key-value pair in a tag entry. -
builder
-