Interface MathActivity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MathActivity.Builder,MathActivity>,SdkBuilder<MathActivity.Builder,MathActivity>,SdkPojo
- Enclosing class:
- MathActivity
public static interface MathActivity.Builder extends SdkPojo, CopyableBuilder<MathActivity.Builder,MathActivity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MathActivity.Builderattribute(String attribute)The name of the attribute that contains the result of the math operation.MathActivity.Buildermath(String math)An expression that uses one or more existing attributes and must return an integer value.MathActivity.Buildername(String name)The name of the math activity.MathActivity.Buildernext(String next)The next activity in the pipeline.-
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
MathActivity.Builder name(String name)
The name of the math activity.
- Parameters:
name- The name of the math activity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attribute
MathActivity.Builder attribute(String attribute)
The name of the attribute that contains the result of the math operation.
- Parameters:
attribute- The name of the attribute that contains the result of the math operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
math
MathActivity.Builder math(String math)
An expression that uses one or more existing attributes and must return an integer value.
- Parameters:
math- An expression that uses one or more existing attributes and must return an integer value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
next
MathActivity.Builder next(String next)
The next activity in the pipeline.
- Parameters:
next- The next activity in the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-