Interface AssetPropertyVariant.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AssetPropertyVariant.Builder,AssetPropertyVariant>,SdkBuilder<AssetPropertyVariant.Builder,AssetPropertyVariant>,SdkPojo
- Enclosing class:
- AssetPropertyVariant
public static interface AssetPropertyVariant.Builder extends SdkPojo, CopyableBuilder<AssetPropertyVariant.Builder,AssetPropertyVariant>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssetPropertyVariant.BuilderbooleanValue(String booleanValue)Optional.AssetPropertyVariant.BuilderdoubleValue(String doubleValue)Optional.AssetPropertyVariant.BuilderintegerValue(String integerValue)Optional.AssetPropertyVariant.BuilderstringValue(String stringValue)Optional.-
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
-
stringValue
AssetPropertyVariant.Builder stringValue(String stringValue)
Optional. The string value of the value entry. Accepts substitution templates.
- Parameters:
stringValue- Optional. The string value of the value entry. Accepts substitution templates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
integerValue
AssetPropertyVariant.Builder integerValue(String integerValue)
Optional. A string that contains the integer value of the value entry. Accepts substitution templates.
- Parameters:
integerValue- Optional. A string that contains the integer value of the value entry. Accepts substitution templates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
doubleValue
AssetPropertyVariant.Builder doubleValue(String doubleValue)
Optional. A string that contains the double value of the value entry. Accepts substitution templates.
- Parameters:
doubleValue- Optional. A string that contains the double value of the value entry. Accepts substitution templates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
booleanValue
AssetPropertyVariant.Builder booleanValue(String booleanValue)
Optional. A string that contains the boolean value (
trueorfalse) of the value entry. Accepts substitution templates.- Parameters:
booleanValue- Optional. A string that contains the boolean value (trueorfalse) of the value entry. Accepts substitution templates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-