Interface StepAmountCapability.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StepAmountCapability.Builder,StepAmountCapability>,SdkBuilder<StepAmountCapability.Builder,StepAmountCapability>,SdkPojo
- Enclosing class:
- StepAmountCapability
public static interface StepAmountCapability.Builder extends SdkPojo, CopyableBuilder<StepAmountCapability.Builder,StepAmountCapability>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StepAmountCapability.Buildermax(Double max)The maximum amount.StepAmountCapability.Buildermin(Double min)The minimum amount.StepAmountCapability.Buildername(String name)The name of the step.StepAmountCapability.Buildervalue(Double value)The amount value.-
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
-
max
StepAmountCapability.Builder max(Double max)
The maximum amount.
- Parameters:
max- The maximum amount.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
min
StepAmountCapability.Builder min(Double min)
The minimum amount.
- Parameters:
min- The minimum amount.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
StepAmountCapability.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.
-
value
StepAmountCapability.Builder value(Double value)
The amount value.
- Parameters:
value- The amount value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-