public static interface CustomStepDetails.Builder extends SdkPojo, CopyableBuilder<CustomStepDetails.Builder,CustomStepDetails>
| Modifier and Type | Method and Description |
|---|---|
CustomStepDetails.Builder |
name(String name)
The name of the step, used as an identifier.
|
CustomStepDetails.Builder |
sourceFileLocation(String sourceFileLocation)
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.
|
CustomStepDetails.Builder |
target(String target)
The ARN for the Lambda function that is being called.
|
CustomStepDetails.Builder |
timeoutSeconds(Integer timeoutSeconds)
Timeout, in seconds, for the step.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildCustomStepDetails.Builder name(String name)
The name of the step, used as an identifier.
name - The name of the step, used as an identifier.CustomStepDetails.Builder target(String target)
The ARN for the Lambda function that is being called.
target - The ARN for the Lambda function that is being called.CustomStepDetails.Builder timeoutSeconds(Integer timeoutSeconds)
Timeout, in seconds, for the step.
timeoutSeconds - Timeout, in seconds, for the step.CustomStepDetails.Builder sourceFileLocation(String sourceFileLocation)
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.
To use the previous file as the input, enter ${previous.file}. In this case, this workflow step
uses the output file from the previous workflow step as input. This is the default value.
To use the originally uploaded file location as input for this step, enter ${original.file}.
sourceFileLocation - 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.
To use the previous file as the input, enter ${previous.file}. In this case, this
workflow step uses the output file from the previous workflow step as input. This is the default
value.
To use the originally uploaded file location as input for this step, enter
${original.file}.
Copyright © 2023. All rights reserved.