File Coverage

blib/lib/Paws/SimpleWorkflow/DomainInfos.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::SimpleWorkflow::DomainInfos;
3 1     1   794 use Moose;
  1         4  
  1         13  
4             has DomainInfos => (is => 'ro', isa => 'ArrayRef[Paws::SimpleWorkflow::DomainInfo]', traits => ['NameInRequest'], request_name => 'domainInfos' , required => 1);
5             has NextPageToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextPageToken' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::SimpleWorkflow::DomainInfos
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 B<REQUIRED> DomainInfos => ArrayRef[L<Paws::SimpleWorkflow::DomainInfo>]
19              
20             A list of DomainInfo structures.
21              
22              
23             =head2 NextPageToken => Str
24              
25             If a C<NextPageToken> was returned by a previous call, there are more
26             results available. To retrieve the next page of results, make the call
27             again using the returned token in C<nextPageToken>. Keep all other
28             arguments unchanged.
29              
30             The configured C<maximumPageSize> determines how many results can be
31             returned in a single call.
32              
33              
34             =head2 _request_id => Str
35              
36              
37             =cut
38              
39             1;