File Coverage

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