File Coverage

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