Interface AttributeValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AttributeValue.Builder,AttributeValue>,SdkBuilder<AttributeValue.Builder,AttributeValue>,SdkPojo
- Enclosing class:
- AttributeValue
public static interface AttributeValue.Builder extends SdkPojo, CopyableBuilder<AttributeValue.Builder,AttributeValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeValue.Buildern(Double n)For number values, expressed as double.AttributeValue.Builders(String s)For single string values.AttributeValue.Buildersdm(Map<String,Double> sdm)For a map of up to 10 data type:value pairs.AttributeValue.Buildersl(String... sl)For a list of up to 100 strings.AttributeValue.Buildersl(Collection<String> sl)For a list of up to 100 strings.-
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
-
s
AttributeValue.Builder s(String s)
For single string values. Maximum string length is 100 characters.
- Parameters:
s- For single string values. Maximum string length is 100 characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
n
AttributeValue.Builder n(Double n)
For number values, expressed as double.
- Parameters:
n- For number values, expressed as double.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sl
AttributeValue.Builder sl(Collection<String> sl)
For a list of up to 100 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurrences of the repeated value after the first of a repeated value are ignored.
- Parameters:
sl- For a list of up to 100 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurrences of the repeated value after the first of a repeated value are ignored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sl
AttributeValue.Builder sl(String... sl)
For a list of up to 100 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurrences of the repeated value after the first of a repeated value are ignored.
- Parameters:
sl- For a list of up to 100 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurrences of the repeated value after the first of a repeated value are ignored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sdm
AttributeValue.Builder sdm(Map<String,Double> sdm)
For a map of up to 10 data type:value pairs. Maximum length for each string value is 100 characters.
- Parameters:
sdm- For a map of up to 10 data type:value pairs. Maximum length for each string value is 100 characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-