File Coverage

blib/lib/Paws/XRay/BatchGetTracesResult.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::BatchGetTracesResult;
3 1     1   703 use Moose;
  1         4  
  1         8  
4             has NextToken => (is => 'ro', isa => 'Str');
5             has Traces => (is => 'ro', isa => 'ArrayRef[Paws::XRay::Trace]');
6             has UnprocessedTraceIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::XRay::BatchGetTracesResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 NextToken => Str
21              
22             Pagination token. Not used.
23              
24              
25             =head2 Traces => ArrayRef[L<Paws::XRay::Trace>]
26              
27             Full traces for the specified requests.
28              
29              
30             =head2 UnprocessedTraceIds => ArrayRef[Str|Undef]
31              
32             Trace IDs of requests that haven't been processed.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39