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)The asset property value is a Boolean value that must be'TRUE'or'FALSE'.AssetPropertyVariant.BuilderdoubleValue(String doubleValue)The asset property value is a double.AssetPropertyVariant.BuilderintegerValue(String integerValue)The asset property value is an integer.AssetPropertyVariant.BuilderstringValue(String stringValue)The asset property value is a 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
-
stringValue
AssetPropertyVariant.Builder stringValue(String stringValue)
The asset property value is a string. You must use an expression, and the evaluated result should be a string.
- Parameters:
stringValue- The asset property value is a string. You must use an expression, and the evaluated result should be a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
integerValue
AssetPropertyVariant.Builder integerValue(String integerValue)
The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
- Parameters:
integerValue- The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
doubleValue
AssetPropertyVariant.Builder doubleValue(String doubleValue)
The asset property value is a double. You must use an expression, and the evaluated result should be a double.
- Parameters:
doubleValue- The asset property value is a double. You must use an expression, and the evaluated result should be a double.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
booleanValue
AssetPropertyVariant.Builder booleanValue(String booleanValue)
The asset property value is a Boolean value that must be
'TRUE'or'FALSE'. You must use an expression, and the evaluated result should be a Boolean value.- Parameters:
booleanValue- The asset property value is a Boolean value that must be'TRUE'or'FALSE'. You must use an expression, and the evaluated result should be a Boolean value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-