File Coverage

blib/lib/Paws/StepFunctions/ListActivities.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::ListActivities;
3 1     1   632 use Moose;
  1         5  
  1         11  
4             has MaxResults => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'maxResults' );
5             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
6              
7 1     1   10104 use MooseX::ClassAttribute;
  1         4  
  1         11  
8              
9             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListActivities');
10             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::StepFunctions::ListActivitiesOutput');
11             class_has _result_key => (isa => 'Str', is => 'ro');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::StepFunctions::ListActivities - Arguments for method ListActivities on Paws::StepFunctions
19              
20             =head1 DESCRIPTION
21              
22             This class represents the parameters used for calling the method ListActivities on the
23             AWS Step Functions service. Use the attributes of this class
24             as arguments to method ListActivities.
25              
26             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListActivities.
27              
28             As an example:
29              
30             $service_obj->ListActivities(Att1 => $value1, Att2 => $value2, ...);
31              
32             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.
33              
34             =head1 ATTRIBUTES
35              
36              
37             =head2 MaxResults => Int
38              
39             The maximum number of results that will be returned per call.
40             C<nextToken> can be used to obtain further pages of results. The
41             default is 100 and the maximum allowed page size is 1000.
42              
43             This is an upper limit only; the actual number of results returned per
44             call may be fewer than the specified maximum.
45              
46              
47              
48             =head2 NextToken => Str
49              
50             If a C<nextToken> was returned by a previous call, there are more
51             results available. To retrieve the next page of results, make the call
52             again using the returned token in C<nextToken>. Keep all other
53             arguments unchanged.
54              
55             The configured C<maxResults> determines how many results can be
56             returned in a single call.
57              
58              
59              
60              
61             =head1 SEE ALSO
62              
63             This class forms part of L<Paws>, documenting arguments for method ListActivities in L<Paws::StepFunctions>
64              
65             =head1 BUGS and CONTRIBUTIONS
66              
67             The source code is located here: https://github.com/pplu/aws-sdk-perl
68              
69             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
70              
71             =cut
72