Class DeleteItemEnhancedResponse<T>
- java.lang.Object
-
- software.amazon.awssdk.enhanced.dynamodb.model.DeleteItemEnhancedResponse<T>
-
- Type Parameters:
T
- The type of the item.
@ThreadSafe public final class DeleteItemEnhancedResponse<T> extends Object
Defines the elements returned by DynamoDB from aDeleteItem
operation, such asDynamoDbTable.deleteItemWithResponse(DeleteItemEnhancedRequest)
andDynamoDbAsyncTable.deleteItemWithResponse(DeleteItemEnhancedRequest)
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DeleteItemEnhancedResponse.Builder<T>
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description T
attributes()
The attribute values as they appeared before theDeleteItem
operation.static <T> DeleteItemEnhancedResponse.Builder<T>
builder(Class<? extends T> clzz)
ConsumedCapacity
consumedCapacity()
The capacity units consumed by theDeleteItem
operation.boolean
equals(Object o)
int
hashCode()
ItemCollectionMetrics
itemCollectionMetrics()
Information about item collections, if any, that were affected by theDeleteItem
operation.
-
-
-
Method Detail
-
attributes
public T attributes()
The attribute values as they appeared before theDeleteItem
operation.
-
consumedCapacity
public ConsumedCapacity consumedCapacity()
The capacity units consumed by theDeleteItem
operation.- See Also:
for more information.
-
itemCollectionMetrics
public ItemCollectionMetrics itemCollectionMetrics()
Information about item collections, if any, that were affected by theDeleteItem
operation.- See Also:
for more information.
-
builder
public static <T> DeleteItemEnhancedResponse.Builder<T> builder(Class<? extends T> clzz)
-
-