public static interface AttributeValue.Builder extends CopyableBuilder<AttributeValue.Builder,AttributeValue>
| Modifier and Type | Method and Description |
|---|---|
AttributeValue.Builder |
n(Double n)
For number values, expressed as double.
|
AttributeValue.Builder |
s(String s)
For single string values.
|
AttributeValue.Builder |
sdm(Map<String,Double> sdm)
For a map of up to 10 type:value pairs.
|
AttributeValue.Builder |
sl(Collection<String> sl)
For a list of up to 10 strings.
|
AttributeValue.Builder |
sl(String... sl)
For a list of up to 10 strings.
|
copyapply, buildAttributeValue.Builder s(String s)
For single string values. Maximum string length is 100 characters.
s - For single string values. Maximum string length is 100 characters.AttributeValue.Builder n(Double n)
For number values, expressed as double.
n - For number values, expressed as double.AttributeValue.Builder sl(Collection<String> sl)
For a list of up to 10 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.
sl - For a list of up to 10 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.AttributeValue.Builder sl(String... sl)
For a list of up to 10 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.
sl - For a list of up to 10 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.AttributeValue.Builder sdm(Map<String,Double> sdm)
For a map of up to 10 type:value pairs. Maximum length for each string value is 100 characters.
sdm - For a map of up to 10 type:value pairs. Maximum length for each string value is 100 characters.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.