File Coverage

blib/lib/Paws/DynamoDB/UpdateItemOutput.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::DynamoDB::UpdateItemOutput;
3 1     1   326 use Moose;
  1         4  
  1         6  
4             has Attributes => (is => 'ro', isa => 'Paws::DynamoDB::AttributeMap');
5             has ConsumedCapacity => (is => 'ro', isa => 'Paws::DynamoDB::ConsumedCapacity');
6             has ItemCollectionMetrics => (is => 'ro', isa => 'Paws::DynamoDB::ItemCollectionMetrics');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::DynamoDB::UpdateItemOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Attributes => L<Paws::DynamoDB::AttributeMap>
20              
21             A map of attribute values as they appear before or after the
22             C<UpdateItem> operation, as determined by the C<ReturnValues>
23             parameter.
24              
25             The C<Attributes> map is only present if C<ReturnValues> was specified
26             as something other than C<NONE> in the request. Each element represents
27             one attribute.
28              
29              
30             =head2 ConsumedCapacity => L<Paws::DynamoDB::ConsumedCapacity>
31              
32             The capacity units consumed by the C<UpdateItem> operation. The data
33             returned includes the total provisioned throughput consumed, along with
34             statistics for the table and any indexes involved in the operation.
35             C<ConsumedCapacity> is only returned if the C<ReturnConsumedCapacity>
36             parameter was specified. For more information, see Provisioned
37             Throughput in the I<Amazon DynamoDB Developer Guide>.
38              
39              
40             =head2 ItemCollectionMetrics => L<Paws::DynamoDB::ItemCollectionMetrics>
41              
42             Information about item collections, if any, that were affected by the
43             C<UpdateItem> operation. C<ItemCollectionMetrics> is only returned if
44             the C<ReturnItemCollectionMetrics> parameter was specified. If the
45             table does not have any local secondary indexes, this information is
46             not returned in the response.
47              
48             Each C<ItemCollectionMetrics> element consists of:
49              
50             =over
51              
52             =item *
53              
54             C<ItemCollectionKey> - The partition key value of the item collection.
55             This is the same as the partition key value of the item itself.
56              
57             =item *
58              
59             C<SizeEstimateRange> - An estimate of item collection size, in
60             gigabytes. This value is a two-element array containing a lower bound
61             and an upper bound for the estimate. The estimate includes the size of
62             all the items in the table, plus the size of all attributes projected
63             into all of the local secondary indexes on that table. Use this
64             estimate to measure whether a local secondary index is approaching its
65             size limit.
66              
67             The estimate is subject to change over time; therefore, do not rely on
68             the precision or accuracy of the estimate.
69              
70             =back
71              
72              
73              
74             =head2 _request_id => Str
75              
76              
77             =cut
78              
79             1;