Interface JobParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobParameter.Builder,JobParameter>,SdkBuilder<JobParameter.Builder,JobParameter>,SdkPojo
- Enclosing class:
- JobParameter
public static interface JobParameter.Builder extends SdkPojo, CopyableBuilder<JobParameter.Builder,JobParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobParameter.BuilderfloatValue(String floatValue)A double precision IEEE-754 floating point number represented as a string.JobParameter.BuilderintValue(String intValue)A signed integer represented as a string.JobParameter.Builderpath(String path)A file system path represented as a string.JobParameter.Builderstring(String string)A UTF-8 string.-
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
-
floatValue
JobParameter.Builder floatValue(String floatValue)
A double precision IEEE-754 floating point number represented as a string.
- Parameters:
floatValue- A double precision IEEE-754 floating point number represented as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intValue
JobParameter.Builder intValue(String intValue)
A signed integer represented as a string.
- Parameters:
intValue- A signed integer represented as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
path
JobParameter.Builder path(String path)
A file system path represented as a string.
- Parameters:
path- A file system path represented as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
string
JobParameter.Builder string(String string)
A UTF-8 string.
- Parameters:
string- A UTF-8 string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-