Class GetItemResponse
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Represents the output of a
GetItem
operation.
public class GetItemResponse : AmazonWebServiceResponse
- Inheritance
-
GetItemResponse
Constructors
GetItemResponse()
public GetItemResponse()
Properties
ConsumedCapacity
Gets and sets the property 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 the ReturnConsumedCapacity
parameter was specified.
For more information, see Read/Write
Capacity Mode in the Amazon DynamoDB Developer Guide.
public ConsumedCapacity ConsumedCapacity { get; set; }
Property Value
IsItemSet
This property is set to true if the property Item is set; false otherwise. This property can be used to determine if the related property was returned by a service response or if the related property should be sent to the service during a service call.
public bool IsItemSet { get; set; }
Property Value
- bool
True if the related property was set or will be sent to a service; false otherwise.
Item
Gets and sets the property Item.
A map of attribute names to
AttributeValue
objects, as specified by ProjectionExpression
.
public Dictionary<string, AttributeValue> Item { get; set; }