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.Builderbool(Boolean bool)Indicates that the attribute type value is a boolean.AttributeValue.Buildern(Long n)Indicates that the attribute type value is a number.AttributeValue.Builders(String s)Indicates that the attribute type value is a string.AttributeValue.Builderss(String... ss)Indicates that the attribute type value is a string set.AttributeValue.Builderss(Collection<String> ss)Indicates that the attribute type value is a string set.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
bool
AttributeValue.Builder bool(Boolean bool)
Indicates that the attribute type value is a boolean. For example:
"BOOL": true- Parameters:
bool- Indicates that the attribute type value is a boolean. For example:"BOOL": true- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
n
AttributeValue.Builder n(Long n)
Indicates that the attribute type value is a number. For example:
"N": "16"- Parameters:
n- Indicates that the attribute type value is a number. For example:"N": "16"- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s
AttributeValue.Builder s(String s)
Indicates that the attribute type value is a string. For example:
"S": "S Group"- Parameters:
s- Indicates that the attribute type value is a string. For example:"S": "S Group"- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ss
AttributeValue.Builder ss(Collection<String> ss)
Indicates that the attribute type value is a string set. For example:
"SS": ["sample_service_class/host.sample.com:1234/sample_service_name_1", "sample_service_class/host.sample.com:1234/sample_service_name_2"]- Parameters:
ss- Indicates that the attribute type value is a string set. For example:"SS": ["sample_service_class/host.sample.com:1234/sample_service_name_1", "sample_service_class/host.sample.com:1234/sample_service_name_2"]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ss
AttributeValue.Builder ss(String... ss)
Indicates that the attribute type value is a string set. For example:
"SS": ["sample_service_class/host.sample.com:1234/sample_service_name_1", "sample_service_class/host.sample.com:1234/sample_service_name_2"]- Parameters:
ss- Indicates that the attribute type value is a string set. For example:"SS": ["sample_service_class/host.sample.com:1234/sample_service_name_1", "sample_service_class/host.sample.com:1234/sample_service_name_2"]- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-