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