File Coverage

blib/lib/Paws/DynamoDB/GetItemOutput.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::DynamoDB::GetItemOutput;
3 1     1   547 use Moose;
  1     1   3  
  1         7  
  1         525  
  1         3  
  1         8  
4             has ConsumedCapacity => (is => 'ro', isa => 'Paws::DynamoDB::ConsumedCapacity');
5             has Item => (is => 'ro', isa => 'Paws::DynamoDB::AttributeMap');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::DynamoDB::GetItemOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 ConsumedCapacity => L<Paws::DynamoDB::ConsumedCapacity>
19              
20             The capacity units consumed by the C<GetItem> operation. The data
21             returned includes the total provisioned throughput consumed, along with
22             statistics for the table and any indexes involved in the operation.
23             C<ConsumedCapacity> is only returned if the C<ReturnConsumedCapacity>
24             parameter was specified. For more information, see Provisioned
25             Throughput in the I<Amazon DynamoDB Developer Guide>.
26              
27              
28             =head2 Item => L<Paws::DynamoDB::AttributeMap>
29              
30             A map of attribute names to C<AttributeValue> objects, as specified by
31             C<ProjectionExpression>.
32              
33              
34             =head2 _request_id => Str
35              
36              
37             =cut
38              
39             1;