@Stability(value=Stable)
public static interface CfnWorkflow.DeleteStepDetailsProperty
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.*;
DeleteStepDetailsProperty deleteStepDetailsProperty = DeleteStepDetailsProperty.builder()
.name("name")
.sourceFileLocation("sourceFileLocation")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnWorkflow.DeleteStepDetailsProperty.Builder
A builder for
CfnWorkflow.DeleteStepDetailsProperty |
static class |
CfnWorkflow.DeleteStepDetailsProperty.Jsii$Proxy
An implementation for
CfnWorkflow.DeleteStepDetailsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnWorkflow.DeleteStepDetailsProperty.Builder |
builder() |
default String |
getName()
The name of the step, used as an identifier.
|
default String |
getSourceFileLocation()
Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.
|
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default String getSourceFileLocation()
${previous.file} . In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value.${original.file} .@Stability(value=Stable) static CfnWorkflow.DeleteStepDetailsProperty.Builder builder()
Copyright © 2023. All rights reserved.