Interface StepOutput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StepOutput.Builder,StepOutput>,SdkBuilder<StepOutput.Builder,StepOutput>,SdkPojo
- Enclosing class:
- StepOutput
public static interface StepOutput.Builder extends SdkPojo, CopyableBuilder<StepOutput.Builder,StepOutput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StepOutput.BuilderdataType(String dataType)The data type of the step output.StepOutput.BuilderdataType(DataType dataType)The data type of the step output.StepOutput.Buildername(String name)The name of the step.StepOutput.Builderrequired(Boolean required)Determine if an output is required from a 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, sdkFields
-
-
-
-
Method Detail
-
name
StepOutput.Builder name(String name)
The name of the step.
- Parameters:
name- The name of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataType
StepOutput.Builder dataType(String dataType)
The data type of the step output.
-
dataType
StepOutput.Builder dataType(DataType dataType)
The data type of the step output.
-
required
StepOutput.Builder required(Boolean required)
Determine if an output is required from a step.
- Parameters:
required- Determine if an output is required from a step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-