File Coverage

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