File Coverage

blib/lib/Paws/SimpleWorkflow/ListWorkflowTypes.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::SimpleWorkflow::ListWorkflowTypes;
3 1     1   628 use Moose;
  1         5  
  1         10  
4             has Domain => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'domain' , required => 1);
5             has MaximumPageSize => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'maximumPageSize' );
6             has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name' );
7             has NextPageToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextPageToken' );
8             has RegistrationStatus => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'registrationStatus' , required => 1);
9             has ReverseOrder => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'reverseOrder' );
10              
11 1     1   7047 use MooseX::ClassAttribute;
  1         3  
  1         11  
12              
13             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListWorkflowTypes');
14             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::SimpleWorkflow::WorkflowTypeInfos');
15             class_has _result_key => (isa => 'Str', is => 'ro');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::SimpleWorkflow::ListWorkflowTypes - Arguments for method ListWorkflowTypes on Paws::SimpleWorkflow
23              
24             =head1 DESCRIPTION
25              
26             This class represents the parameters used for calling the method ListWorkflowTypes on the
27             Amazon Simple Workflow Service service. Use the attributes of this class
28             as arguments to method ListWorkflowTypes.
29              
30             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListWorkflowTypes.
31              
32             As an example:
33              
34             $service_obj->ListWorkflowTypes(Att1 => $value1, Att2 => $value2, ...);
35              
36             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.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 B<REQUIRED> Domain => Str
42              
43             The name of the domain in which the workflow types have been
44             registered.
45              
46              
47              
48             =head2 MaximumPageSize => Int
49              
50             The maximum number of results that will be returned per call.
51             C<nextPageToken> can be used to obtain futher pages of results. The
52             default is 1000, which is the maximum allowed page size. You can,
53             however, specify a page size I<smaller> than the maximum.
54              
55             This is an upper limit only; the actual number of results returned per
56             call may be fewer than the specified maximum.
57              
58              
59              
60             =head2 Name => Str
61              
62             If specified, lists the workflow type with this name.
63              
64              
65              
66             =head2 NextPageToken => Str
67              
68             If a C<NextPageToken> was returned by a previous call, there are more
69             results available. To retrieve the next page of results, make the call
70             again using the returned token in C<nextPageToken>. Keep all other
71             arguments unchanged.
72              
73             The configured C<maximumPageSize> determines how many results can be
74             returned in a single call.
75              
76              
77              
78             =head2 B<REQUIRED> RegistrationStatus => Str
79              
80             Specifies the registration status of the workflow types to list.
81              
82             Valid values are: C<"REGISTERED">, C<"DEPRECATED">
83              
84             =head2 ReverseOrder => Bool
85              
86             When set to C<true>, returns the results in reverse order. By default
87             the results are returned in ascending alphabetical order of the C<name>
88             of the workflow types.
89              
90              
91              
92              
93             =head1 SEE ALSO
94              
95             This class forms part of L<Paws>, documenting arguments for method ListWorkflowTypes in L<Paws::SimpleWorkflow>
96              
97             =head1 BUGS and CONTRIBUTIONS
98              
99             The source code is located here: https://github.com/pplu/aws-sdk-perl
100              
101             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
102              
103             =cut
104