line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::MarketplaceMetering::BatchMeterUsageResult; |
3
|
1
|
|
|
1
|
|
422
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has Results => (is => 'ro', isa => 'ArrayRef[Paws::MarketplaceMetering::UsageRecordResult]'); |
5
|
|
|
|
|
|
|
has UnprocessedRecords => (is => 'ro', isa => 'ArrayRef[Paws::MarketplaceMetering::UsageRecord]'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::MarketplaceMetering::BatchMeterUsageResult |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Results => ArrayRef[L<Paws::MarketplaceMetering::UsageRecordResult>] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Contains all UsageRecords processed by BatchMeterUsage. These records |
21
|
|
|
|
|
|
|
were either honored by AWS Marketplace Metering Service or were |
22
|
|
|
|
|
|
|
invalid. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 UnprocessedRecords => ArrayRef[L<Paws::MarketplaceMetering::UsageRecord>] |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Contains all UsageRecords that were not processed by BatchMeterUsage. |
28
|
|
|
|
|
|
|
This is a list of UsageRecords. You can retry the failed request by |
29
|
|
|
|
|
|
|
making another BatchMeterUsage call with this list as input in the |
30
|
|
|
|
|
|
|
BatchMeterUsageRequest. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 _request_id => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
1; |