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.Builderb(String b)A binary value.AttributeValue.Builderbs(String... bs)A list of binary values.AttributeValue.Builderbs(Collection<String> bs)A list of binary values.AttributeValue.Buildern(String n)A number.AttributeValue.Builderns(String... ns)A list of numbers.AttributeValue.Builderns(Collection<String> ns)A list of numbers.AttributeValue.Builders(String s)A string.AttributeValue.Builderss(String... ss)A list of strings.AttributeValue.Builderss(Collection<String> ss)A list of 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)
A string.
- Parameters:
s- A string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
n
AttributeValue.Builder n(String n)
A number.
- Parameters:
n- A number.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
b
AttributeValue.Builder b(String b)
A binary value.
- Parameters:
b- A binary value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ss
AttributeValue.Builder ss(Collection<String> ss)
A list of strings.
- Parameters:
ss- A list of strings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ss
AttributeValue.Builder ss(String... ss)
A list of strings.
- Parameters:
ss- A list of strings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ns
AttributeValue.Builder ns(Collection<String> ns)
A list of numbers.
- Parameters:
ns- A list of numbers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ns
AttributeValue.Builder ns(String... ns)
A list of numbers.
- Parameters:
ns- A list of numbers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bs
AttributeValue.Builder bs(Collection<String> bs)
A list of binary values.
- Parameters:
bs- A list of binary values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bs
AttributeValue.Builder bs(String... bs)
A list of binary values.
- Parameters:
bs- A list of binary values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-