Interface CustomStepDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomStepDetails.Builder,CustomStepDetails>,SdkBuilder<CustomStepDetails.Builder,CustomStepDetails>,SdkPojo
- Enclosing class:
- CustomStepDetails
public static interface CustomStepDetails.Builder extends SdkPojo, CopyableBuilder<CustomStepDetails.Builder,CustomStepDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomStepDetails.Buildername(String name)The name of the step, used as an identifier.CustomStepDetails.BuildersourceFileLocation(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.Buildertarget(String target)The ARN for the Lambda function that is being called.CustomStepDetails.BuildertimeoutSeconds(Integer timeoutSeconds)Timeout, in seconds, for the step.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
CustomStepDetails.Builder name(String name)
The name of the step, used as an identifier.
- Parameters:
name- The name of the step, used as an identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
target
CustomStepDetails.Builder target(String target)
The ARN for the Lambda function that is being called.
- Parameters:
target- The ARN for the Lambda function that is being called.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timeoutSeconds
CustomStepDetails.Builder timeoutSeconds(Integer timeoutSeconds)
Timeout, in seconds, for the step.
- Parameters:
timeoutSeconds- Timeout, in seconds, for the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceFileLocation
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}.
- Parameters:
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}.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-