File Coverage

blib/lib/Paws/DS/DescribeTrustsResult.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::DS::DescribeTrustsResult;
3 1     1   451 use Moose;
  1         4  
  1         8  
4             has NextToken => (is => 'ro', isa => 'Str');
5             has Trusts => (is => 'ro', isa => 'ArrayRef[Paws::DS::Trust]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::DS::DescribeTrustsResult
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 NextToken => Str
19              
20             If not null, more results are available. Pass this value for the
21             I<NextToken> parameter in a subsequent call to DescribeTrusts to
22             retrieve the next set of items.
23              
24              
25             =head2 Trusts => ArrayRef[L<Paws::DS::Trust>]
26              
27             The list of Trust objects that were retrieved.
28              
29             It is possible that this list contains less than the number of items
30             specified in the I<Limit> member of the request. This occurs if there
31             are less than the requested number of items left to retrieve, or if the
32             limitations of the operation have been exceeded.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39              
40             1;