File Coverage

blib/lib/Paws/IoT/ListThings.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::IoT::ListThings;
3 1     1   407 use Moose;
  1         2  
  1         7  
4             has AttributeName => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'attributeName');
5             has AttributeValue => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'attributeValue');
6             has MaxResults => (is => 'ro', isa => 'Int', traits => ['ParamInQuery'], query_name => 'maxResults');
7             has NextToken => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'nextToken');
8             has ThingTypeName => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'thingTypeName');
9              
10 1     1   6958 use MooseX::ClassAttribute;
  1         2  
  1         11  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListThings');
13             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/things');
14             class_has _api_method => (isa => 'Str', is => 'ro', default => 'GET');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::IoT::ListThingsResponse');
16             class_has _result_key => (isa => 'Str', is => 'ro');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::IoT::ListThings - Arguments for method ListThings on Paws::IoT
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method ListThings on the
28             AWS IoT service. Use the attributes of this class
29             as arguments to method ListThings.
30              
31             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListThings.
32              
33             As an example:
34              
35             $service_obj->ListThings(Att1 => $value1, Att2 => $value2, ...);
36              
37             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.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 AttributeName => Str
43              
44             The attribute name used to search for things.
45              
46              
47              
48             =head2 AttributeValue => Str
49              
50             The attribute value used to search for things.
51              
52              
53              
54             =head2 MaxResults => Int
55              
56             The maximum number of results to return in this operation.
57              
58              
59              
60             =head2 NextToken => Str
61              
62             The token for the next set of results, or B<null> if there are no
63             additional results.
64              
65              
66              
67             =head2 ThingTypeName => Str
68              
69             The name of the thing type used to search for things.
70              
71              
72              
73              
74             =head1 SEE ALSO
75              
76             This class forms part of L<Paws>, documenting arguments for method ListThings in L<Paws::IoT>
77              
78             =head1 BUGS and CONTRIBUTIONS
79              
80             The source code is located here: https://github.com/pplu/aws-sdk-perl
81              
82             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
83              
84             =cut
85