@Stability(value=Stable)
public static interface CfnWorkflow.WorkflowStepProperty
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;
WorkflowStepProperty workflowStepProperty = WorkflowStepProperty.builder()
.copyStepDetails(copyStepDetails)
.customStepDetails(customStepDetails)
.deleteStepDetails(deleteStepDetails)
.tagStepDetails(tagStepDetails)
.type("type")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnWorkflow.WorkflowStepProperty.Builder
A builder for
CfnWorkflow.WorkflowStepProperty |
static class |
CfnWorkflow.WorkflowStepProperty.Jsii$Proxy
An implementation for
CfnWorkflow.WorkflowStepProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnWorkflow.WorkflowStepProperty.Builder |
builder() |
default Object |
getCopyStepDetails()
Details for a step that performs a file copy.
|
default Object |
getCustomStepDetails()
Details for a step that invokes a lambda function.
|
default Object |
getDeleteStepDetails()
Details for a step that deletes the file.
|
default Object |
getTagStepDetails()
Details for a step that creates one or more tags.
|
default String |
getType()
Currently, the following step types are supported.
|
@Stability(value=Stable) @Nullable default Object getCopyStepDetails()
Consists of the following values:
FALSE .@Stability(value=Stable) @Nullable default Object getCustomStepDetails()
Consists of the lambda function name, target, and timeout (in seconds).
@Stability(value=Stable) @Nullable default Object getDeleteStepDetails()
@Stability(value=Stable) @Nullable default Object getTagStepDetails()
You specify one or more tags: each tag contains a key/value pair.
@Stability(value=Stable) @Nullable default String getType()
@Stability(value=Stable) static CfnWorkflow.WorkflowStepProperty.Builder builder()
Copyright © 2022. All rights reserved.