File Coverage

blib/lib/Paws/XRay/GetServiceGraphResult.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::XRay::GetServiceGraphResult;
3 1     1   690 use Moose;
  1         4  
  1         11  
4             has EndTime => (is => 'ro', isa => 'Str');
5             has NextToken => (is => 'ro', isa => 'Str');
6             has Services => (is => 'ro', isa => 'ArrayRef[Paws::XRay::Service]');
7             has StartTime => (is => 'ro', isa => 'Str');
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::GetServiceGraphResult
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 EndTime => Str
22              
23             The end of the time frame for which the graph was generated.
24              
25              
26             =head2 NextToken => Str
27              
28             Pagination token. Not used.
29              
30              
31             =head2 Services => ArrayRef[L<Paws::XRay::Service>]
32              
33             The services that have processed a traced request during the specified
34             time frame.
35              
36              
37             =head2 StartTime => Str
38              
39             The start of the time frame for which the graph was generated.
40              
41              
42             =head2 _request_id => Str
43              
44              
45             =cut
46