Interface TypedAttributeValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TypedAttributeValue.Builder,TypedAttributeValue>,SdkBuilder<TypedAttributeValue.Builder,TypedAttributeValue>,SdkPojo
- Enclosing class:
- TypedAttributeValue
public static interface TypedAttributeValue.Builder extends SdkPojo, CopyableBuilder<TypedAttributeValue.Builder,TypedAttributeValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypedAttributeValue.BuilderbinaryValue(SdkBytes binaryValue)A binary data value.TypedAttributeValue.BuilderbooleanValue(Boolean booleanValue)A Boolean data value.TypedAttributeValue.BuilderdatetimeValue(Instant datetimeValue)A date and time value.TypedAttributeValue.BuildernumberValue(String numberValue)A number data value.TypedAttributeValue.BuilderstringValue(String stringValue)A string data value.-
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
TypedAttributeValue.Builder stringValue(String stringValue)
A string data value.
- Parameters:
stringValue- A string data value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
binaryValue
TypedAttributeValue.Builder binaryValue(SdkBytes binaryValue)
A binary data value.
- Parameters:
binaryValue- A binary data value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
booleanValue
TypedAttributeValue.Builder booleanValue(Boolean booleanValue)
A Boolean data value.
- Parameters:
booleanValue- A Boolean data value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberValue
TypedAttributeValue.Builder numberValue(String numberValue)
A number data value.
- Parameters:
numberValue- A number data value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datetimeValue
TypedAttributeValue.Builder datetimeValue(Instant datetimeValue)
A date and time value.
- Parameters:
datetimeValue- A date and time value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-