@Generated(value="jsii-pacmak/1.54.0 (build b1b977a)", date="2022-02-19T00:19:34.270Z") @Stability(value=Stable) public interface CfnActivityProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnActivityProps cfnActivityProps = CfnActivityProps.builder()
.name("name")
// the properties below are optional
.tags(List.of(TagsEntryProperty.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnActivityProps.Builder
A builder for
CfnActivityProps |
static class |
CfnActivityProps.Jsii$Proxy
An implementation for
CfnActivityProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnActivityProps.Builder |
builder() |
String |
getName()
The name of the activity.
|
default List<CfnActivity.TagsEntryProperty> |
getTags()
The list of tags to add to a resource.
|
@Stability(value=Stable) @NotNull String getName()
A name must not contain:
< > { } [ ]? *" # % \ ^ | ~ $ & , ; : /`U+0000-001F , U+007F-009F )To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
@Stability(value=Stable) @Nullable default List<CfnActivity.TagsEntryProperty> getTags()
Tags may only contain Unicode letters, digits, white space, or these symbols: _ . : / = + - @ .
@Stability(value=Stable) static CfnActivityProps.Builder builder()
CfnActivityProps.Builder of CfnActivityPropsCopyright © 2022. All rights reserved.