@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.616Z") @Stability(value=Stable) public interface CfnWorkflowProps 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.transfer.*;
Object copyStepDetails;
Object customStepDetails;
Object deleteStepDetails;
Object tagStepDetails;
CfnWorkflowProps cfnWorkflowProps = CfnWorkflowProps.builder()
.steps(List.of(WorkflowStepProperty.builder()
.copyStepDetails(copyStepDetails)
.customStepDetails(customStepDetails)
.deleteStepDetails(deleteStepDetails)
.tagStepDetails(tagStepDetails)
.type("type")
.build()))
// the properties below are optional
.description("description")
.onExceptionSteps(List.of(WorkflowStepProperty.builder()
.copyStepDetails(copyStepDetails)
.customStepDetails(customStepDetails)
.deleteStepDetails(deleteStepDetails)
.tagStepDetails(tagStepDetails)
.type("type")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnWorkflowProps.Builder
A builder for
CfnWorkflowProps |
static class |
CfnWorkflowProps.Jsii$Proxy
An implementation for
CfnWorkflowProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnWorkflowProps.Builder |
builder() |
default String |
getDescription()
Specifies the text description for the workflow.
|
default Object |
getOnExceptionSteps()
Specifies the steps (actions) to take if errors are encountered during execution of the workflow.
|
Object |
getSteps()
Specifies the details for the steps that are in the specified workflow.
|
default List<CfnTag> |
getTags()
Key-value pairs that can be used to group and search for workflows.
|
@Stability(value=Stable) @NotNull Object getSteps()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getOnExceptionSteps()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
Tags are metadata attached to workflows for any purpose.
@Stability(value=Stable) static CfnWorkflowProps.Builder builder()
CfnWorkflowProps.Builder of CfnWorkflowPropsCopyright © 2022. All rights reserved.