line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::DynamoDB::DeleteItemOutput; |
3
|
1
|
|
|
1
|
|
563
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
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::DeleteItemOutput |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 Attributes => L<Paws::DynamoDB::AttributeMap> |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
A map of attribute names to C<AttributeValue> objects, representing the |
22
|
|
|
|
|
|
|
item as it appeared before the C<DeleteItem> operation. This map |
23
|
|
|
|
|
|
|
appears in the response only if C<ReturnValues> was specified as |
24
|
|
|
|
|
|
|
C<ALL_OLD> in the request. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 ConsumedCapacity => L<Paws::DynamoDB::ConsumedCapacity> |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The capacity units consumed by the C<DeleteItem> operation. The data |
30
|
|
|
|
|
|
|
returned includes the total provisioned throughput consumed, along with |
31
|
|
|
|
|
|
|
statistics for the table and any indexes involved in the operation. |
32
|
|
|
|
|
|
|
C<ConsumedCapacity> is only returned if the C<ReturnConsumedCapacity> |
33
|
|
|
|
|
|
|
parameter was specified. For more information, see Provisioned |
34
|
|
|
|
|
|
|
Throughput in the I<Amazon DynamoDB Developer Guide>. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 ItemCollectionMetrics => L<Paws::DynamoDB::ItemCollectionMetrics> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Information about item collections, if any, that were affected by the |
40
|
|
|
|
|
|
|
C<DeleteItem> operation. C<ItemCollectionMetrics> is only returned if |
41
|
|
|
|
|
|
|
the C<ReturnItemCollectionMetrics> parameter was specified. If the |
42
|
|
|
|
|
|
|
table does not have any local secondary indexes, this information is |
43
|
|
|
|
|
|
|
not returned in the response. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Each C<ItemCollectionMetrics> element consists of: |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=over |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=item * |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
C<ItemCollectionKey> - The partition key value of the item collection. |
52
|
|
|
|
|
|
|
This is the same as the partition key value of the item itself. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=item * |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
C<SizeEstimateRange> - An estimate of item collection size, in |
57
|
|
|
|
|
|
|
gigabytes. This value is a two-element array containing a lower bound |
58
|
|
|
|
|
|
|
and an upper bound for the estimate. The estimate includes the size of |
59
|
|
|
|
|
|
|
all the items in the table, plus the size of all attributes projected |
60
|
|
|
|
|
|
|
into all of the local secondary indexes on that table. Use this |
61
|
|
|
|
|
|
|
estimate to measure whether a local secondary index is approaching its |
62
|
|
|
|
|
|
|
size limit. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The estimate is subject to change over time; therefore, do not rely on |
65
|
|
|
|
|
|
|
the precision or accuracy of the estimate. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=back |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head2 _request_id => Str |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=cut |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
1; |