Class: Aws::DynamoDB::Types::GetItemOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::GetItemOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Represents the output of a ‘GetItem` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#consumed_capacity ⇒ Types::ConsumedCapacity
The capacity units consumed by the ‘GetItem` operation.
-
#item ⇒ Hash<String,Types::AttributeValue>
A map of attribute names to ‘AttributeValue` objects, as specified by `ProjectionExpression`.
Instance Attribute Details
#consumed_capacity ⇒ Types::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 [Capacity unit consumption for read operations] in the *Amazon DynamoDB Developer Guide*.
4035 4036 4037 4038 4039 4040 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4035 class GetItemOutput < Struct.new( :item, :consumed_capacity) SENSITIVE = [] include Aws::Structure end |
#item ⇒ Hash<String,Types::AttributeValue>
A map of attribute names to ‘AttributeValue` objects, as specified by `ProjectionExpression`.
4035 4036 4037 4038 4039 4040 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4035 class GetItemOutput < Struct.new( :item, :consumed_capacity) SENSITIVE = [] include Aws::Structure end |