Package com.pulumi.aws.transfer.outputs
Class WorkflowStepCopyStepDetails
- java.lang.Object
-
- com.pulumi.aws.transfer.outputs.WorkflowStepCopyStepDetails
-
public final class WorkflowStepCopyStepDetails extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
WorkflowStepCopyStepDetails.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WorkflowStepCopyStepDetails.Builder
builder()
static WorkflowStepCopyStepDetails.Builder
builder(WorkflowStepCopyStepDetails defaults)
java.util.Optional<WorkflowStepCopyStepDetailsDestinationFileLocation>
destinationFileLocation()
java.util.Optional<java.lang.String>
name()
java.util.Optional<java.lang.String>
overwriteExisting()
java.util.Optional<java.lang.String>
sourceFileLocation()
-
-
-
Method Detail
-
destinationFileLocation
public java.util.Optional<WorkflowStepCopyStepDetailsDestinationFileLocation> destinationFileLocation()
- Returns:
- Specifies the location for the file being copied. Use ${Transfer:username} in this field to parametrize the destination prefix by username.
-
name
public java.util.Optional<java.lang.String> name()
- Returns:
- The name of the step, used as an identifier.
-
overwriteExisting
public java.util.Optional<java.lang.String> overwriteExisting()
- Returns:
- A flag that indicates whether or not to overwrite an existing file of the same name. The default is `FALSE`. Valid values are `TRUE` and `FALSE`.
-
sourceFileLocation
public java.util.Optional<java.lang.String> sourceFileLocation()
- Returns:
- 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. Enter ${previous.file} to use the previous file as the input. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value. Enter ${original.file} to use the originally-uploaded file location as input for this step.
-
builder
public static WorkflowStepCopyStepDetails.Builder builder()
-
builder
public static WorkflowStepCopyStepDetails.Builder builder(WorkflowStepCopyStepDetails defaults)
-
-