Interface TaskParameterValue.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TaskParameterValue.Builder,
,TaskParameterValue> SdkBuilder<TaskParameterValue.Builder,
,TaskParameterValue> SdkPojo
- Enclosing class:
TaskParameterValue
@Mutable
@NotThreadSafe
public static interface TaskParameterValue.Builder
extends SdkPojo, CopyableBuilder<TaskParameterValue.Builder,TaskParameterValue>
-
Method Summary
Modifier and TypeMethodDescriptionA range (for example 1-10) or selection of specific (for example 1,3,7,8,10) integers represented as a string.floatValue
(String floatValue) A double precision IEEE-754 floating point number represented as a string.A signed integer represented as a string.A file system path represented as a 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, sdkFieldNameToField, sdkFields
-
Method Details
-
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.
-
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.
-
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.
-
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.
-
chunkInt
A range (for example 1-10) or selection of specific (for example 1,3,7,8,10) integers represented as a string.
- Parameters:
chunkInt
- A range (for example 1-10) or selection of specific (for example 1,3,7,8,10) integers represented as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-