line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::XRay::GetTraceSummariesResult; |
3
|
1
|
|
|
1
|
|
301
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has ApproximateTime => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has TracesProcessedCount => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has TraceSummaries => (is => 'ro', isa => 'ArrayRef[Paws::XRay::TraceSummary]'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::XRay::GetTraceSummariesResult |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 ApproximateTime => Str |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The start time of this page of results. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 NextToken => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
If the requested time frame contained more than one page of results, |
29
|
|
|
|
|
|
|
you can use this token to retrieve the next page. The first page |
30
|
|
|
|
|
|
|
contains the most most recent results, closest to the end of the time |
31
|
|
|
|
|
|
|
frame. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 TracesProcessedCount => Int |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
The number of traces that were processed to get this set of summaries. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 TraceSummaries => ArrayRef[L<Paws::XRay::TraceSummary>] |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Trace IDs and metadata for traces that were found in the specified time |
42
|
|
|
|
|
|
|
frame. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 _request_id => Str |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=cut |
49
|
|
|
|
|
|
|
|