File Coverage

blib/lib/Paws/StepFunctions/GetExecutionHistory.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::StepFunctions::GetExecutionHistory;
3 1     1   304 use Moose;
  1         2  
  1         7  
4             has ExecutionArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'executionArn' , required => 1);
5             has MaxResults => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'maxResults' );
6             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
7             has ReverseOrder => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'reverseOrder' );
8              
9 1     1   5467 use MooseX::ClassAttribute;
  1         4  
  1         8  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetExecutionHistory');
12             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::StepFunctions::GetExecutionHistoryOutput');
13             class_has _result_key => (isa => 'Str', is => 'ro');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::StepFunctions::GetExecutionHistory - Arguments for method GetExecutionHistory on Paws::StepFunctions
21              
22             =head1 DESCRIPTION
23              
24             This class represents the parameters used for calling the method GetExecutionHistory on the
25             AWS Step Functions service. Use the attributes of this class
26             as arguments to method GetExecutionHistory.
27              
28             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetExecutionHistory.
29              
30             As an example:
31              
32             $service_obj->GetExecutionHistory(Att1 => $value1, Att2 => $value2, ...);
33              
34             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
35              
36             =head1 ATTRIBUTES
37              
38              
39             =head2 B<REQUIRED> ExecutionArn => Str
40              
41             The Amazon Resource Name (ARN) of the execution.
42              
43              
44              
45             =head2 MaxResults => Int
46              
47             The maximum number of results that will be returned per call.
48             C<nextToken> can be used to obtain further pages of results. The
49             default is 100 and the maximum allowed page size is 1000.
50              
51             This is an upper limit only; the actual number of results returned per
52             call may be fewer than the specified maximum.
53              
54              
55              
56             =head2 NextToken => Str
57              
58             If a C<nextToken> was returned by a previous call, there are more
59             results available. To retrieve the next page of results, make the call
60             again using the returned token in C<nextToken>. Keep all other
61             arguments unchanged.
62              
63             The configured C<maxResults> determines how many results can be
64             returned in a single call.
65              
66              
67              
68             =head2 ReverseOrder => Bool
69              
70             Lists events in descending order of their C<timeStamp>.
71              
72              
73              
74              
75             =head1 SEE ALSO
76              
77             This class forms part of L<Paws>, documenting arguments for method GetExecutionHistory in L<Paws::StepFunctions>
78              
79             =head1 BUGS and CONTRIBUTIONS
80              
81             The source code is located here: https://github.com/pplu/aws-sdk-perl
82              
83             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
84              
85             =cut
86