File Coverage

blib/lib/Paws/StepFunctions/GetExecutionHistoryOutput.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::GetExecutionHistoryOutput;
3 1     1   589 use Moose;
  1         2  
  1         8  
4             has Events => (is => 'ro', isa => 'ArrayRef[Paws::StepFunctions::HistoryEvent]', traits => ['NameInRequest'], request_name => 'events' , 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::GetExecutionHistoryOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 B<REQUIRED> Events => ArrayRef[L<Paws::StepFunctions::HistoryEvent>]
19              
20             The list of events that occurred in the execution.
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;