line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::XRay::GetTraceSummaries; |
3
|
1
|
|
|
1
|
|
273
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has EndTime => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has FilterExpression => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has Sampling => (is => 'ro', isa => 'Bool'); |
8
|
|
|
|
|
|
|
has StartTime => (is => 'ro', isa => 'Str', required => 1); |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
5495
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetTraceSummaries'); |
13
|
|
|
|
|
|
|
class_has _api_uri => (isa => 'Str', is => 'ro', default => '/TraceSummaries'); |
14
|
|
|
|
|
|
|
class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); |
15
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::XRay::GetTraceSummariesResult'); |
16
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
### main pod documentation begin ### |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Paws::XRay::GetTraceSummaries - Arguments for method GetTraceSummaries on Paws::XRay |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This class represents the parameters used for calling the method GetTraceSummaries on the |
28
|
|
|
|
|
|
|
AWS X-Ray service. Use the attributes of this class |
29
|
|
|
|
|
|
|
as arguments to method GetTraceSummaries. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetTraceSummaries. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
As an example: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$service_obj->GetTraceSummaries(Att1 => $value1, Att2 => $value2, ...); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 B<REQUIRED> EndTime => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The end of the time frame for which to retrieve traces. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 FilterExpression => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Specify a filter expression to retrieve trace summaries for services or |
51
|
|
|
|
|
|
|
requests that meet certain requirements. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 NextToken => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
Specify the pagination token returned by a previous request to retrieve |
58
|
|
|
|
|
|
|
the next page of results. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 Sampling => Bool |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Set to C<true> to get summaries for only a subset of available traces. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head2 B<REQUIRED> StartTime => Str |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
The start of the time frame for which to retrieve traces. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 SEE ALSO |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method GetTraceSummaries in L<Paws::XRay> |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=cut |
86
|
|
|
|
|
|
|
|