Interface PutRequest.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PutRequest.Builder,PutRequest>
,SdkBuilder<PutRequest.Builder,PutRequest>
,SdkPojo
- Enclosing class:
- PutRequest
public static interface PutRequest.Builder extends SdkPojo, CopyableBuilder<PutRequest.Builder,PutRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutRequest.Builder
item(Map<String,AttributeValue> item)
A map of attribute name to attribute values, representing the primary key of an item to be processed byPutItem
.-
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
-
item
PutRequest.Builder item(Map<String,AttributeValue> item)
A map of attribute name to attribute values, representing the primary key of an item to be processed by
PutItem
. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema. If any attributes are present in the item that are part of an index key schema for the table, their types must match the index key schema.- Parameters:
item
- A map of attribute name to attribute values, representing the primary key of an item to be processed byPutItem
. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema. If any attributes are present in the item that are part of an index key schema for the table, their types must match the index key schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-