Interface VariableValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VariableValue.Builder,VariableValue>,SdkBuilder<VariableValue.Builder,VariableValue>,SdkPojo
- Enclosing class:
- VariableValue
public static interface VariableValue.Builder extends SdkPojo, CopyableBuilder<VariableValue.Builder,VariableValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VariableValue.BuilderboolValue(Boolean boolValue)If this feature uses the Boolean variation type, this field contains the Boolean value of this variation.VariableValue.BuilderdoubleValue(Double doubleValue)If this feature uses the double integer variation type, this field contains the double integer value of this variation.VariableValue.BuilderlongValue(Long longValue)If this feature uses the long variation type, this field contains the long value of this variation.VariableValue.BuilderstringValue(String stringValue)If this feature uses the string variation type, this field contains the string value of this variation.-
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
-
boolValue
VariableValue.Builder boolValue(Boolean boolValue)
If this feature uses the Boolean variation type, this field contains the Boolean value of this variation.
- Parameters:
boolValue- If this feature uses the Boolean variation type, this field contains the Boolean value of this variation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
doubleValue
VariableValue.Builder doubleValue(Double doubleValue)
If this feature uses the double integer variation type, this field contains the double integer value of this variation.
- Parameters:
doubleValue- If this feature uses the double integer variation type, this field contains the double integer value of this variation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
longValue
VariableValue.Builder longValue(Long longValue)
If this feature uses the long variation type, this field contains the long value of this variation.
- Parameters:
longValue- If this feature uses the long variation type, this field contains the long value of this variation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringValue
VariableValue.Builder stringValue(String stringValue)
If this feature uses the string variation type, this field contains the string value of this variation.
- Parameters:
stringValue- If this feature uses the string variation type, this field contains the string value of this variation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-