Interface GetItemResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetItemResponse.Builder,GetItemResponse>
,DynamoDbResponse.Builder
,SdkBuilder<GetItemResponse.Builder,GetItemResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- GetItemResponse
public static interface GetItemResponse.Builder extends DynamoDbResponse.Builder, SdkPojo, CopyableBuilder<GetItemResponse.Builder,GetItemResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetItemResponse.Builder
consumedCapacity(Consumer<ConsumedCapacity.Builder> consumedCapacity)
The capacity units consumed by theGetItem
operation.GetItemResponse.Builder
consumedCapacity(ConsumedCapacity consumedCapacity)
The capacity units consumed by theGetItem
operation.GetItemResponse.Builder
item(Map<String,AttributeValue> item)
A map of attribute names toAttributeValue
objects, as specified byProjectionExpression
.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.dynamodb.model.DynamoDbResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
item
GetItemResponse.Builder item(Map<String,AttributeValue> item)
A map of attribute names to
AttributeValue
objects, as specified byProjectionExpression
.- Parameters:
item
- A map of attribute names toAttributeValue
objects, as specified byProjectionExpression
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
consumedCapacity
GetItemResponse.Builder consumedCapacity(ConsumedCapacity consumedCapacity)
The capacity units consumed by the
GetItem
operation. The data returned includes the total provisioned throughput consumed, along with statistics for the table and any indexes involved in the operation.ConsumedCapacity
is only returned if theReturnConsumedCapacity
parameter was specified. For more information, see Capacity unit consumption for read operations in the Amazon DynamoDB Developer Guide.- Parameters:
consumedCapacity
- The capacity units consumed by theGetItem
operation. The data returned includes the total provisioned throughput consumed, along with statistics for the table and any indexes involved in the operation.ConsumedCapacity
is only returned if theReturnConsumedCapacity
parameter was specified. For more information, see Capacity unit consumption for read operations in the Amazon DynamoDB Developer Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
consumedCapacity
default GetItemResponse.Builder consumedCapacity(Consumer<ConsumedCapacity.Builder> consumedCapacity)
The capacity units consumed by the
This is a convenience method that creates an instance of theGetItem
operation. The data returned includes the total provisioned throughput consumed, along with statistics for the table and any indexes involved in the operation.ConsumedCapacity
is only returned if theReturnConsumedCapacity
parameter was specified. For more information, see Capacity unit consumption for read operations in the Amazon DynamoDB Developer Guide.ConsumedCapacity.Builder
avoiding the need to create one manually viaConsumedCapacity.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toconsumedCapacity(ConsumedCapacity)
.- Parameters:
consumedCapacity
- a consumer that will call methods onConsumedCapacity.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
consumedCapacity(ConsumedCapacity)
-
-