Interface CfnStateMachine.TagsEntryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStateMachine.TagsEntryProperty.Jsii$Proxy
- Enclosing class:
CfnStateMachine
@Stability(Stable)
public static interface CfnStateMachine.TagsEntryProperty
extends software.amazon.jsii.JsiiSerializable
The
TagsEntry
property specifies tags to identify a state machine.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStateMachine.TagsEntryProperty
static final class
An implementation forCfnStateMachine.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.- See Also:
-
getValue
Thevalue
for a key-value pair in a tag entry.- See Also:
-
builder
-