File Coverage

blib/lib/Paws/SSM/ListComplianceItems.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::SSM::ListComplianceItems;
3 1     1   448 use Moose;
  1         2  
  1         6  
4             has Filters => (is => 'ro', isa => 'ArrayRef[Paws::SSM::ComplianceStringFilter]');
5             has MaxResults => (is => 'ro', isa => 'Int');
6             has NextToken => (is => 'ro', isa => 'Str');
7             has ResourceIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
8             has ResourceTypes => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
9              
10 1     1   6384 use MooseX::ClassAttribute;
  1         4  
  1         9  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListComplianceItems');
13             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::SSM::ListComplianceItemsResult');
14             class_has _result_key => (isa => 'Str', is => 'ro');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::SSM::ListComplianceItems - Arguments for method ListComplianceItems on Paws::SSM
22              
23             =head1 DESCRIPTION
24              
25             This class represents the parameters used for calling the method ListComplianceItems on the
26             Amazon Simple Systems Manager (SSM) service. Use the attributes of this class
27             as arguments to method ListComplianceItems.
28              
29             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListComplianceItems.
30              
31             As an example:
32              
33             $service_obj->ListComplianceItems(Att1 => $value1, Att2 => $value2, ...);
34              
35             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.
36              
37             =head1 ATTRIBUTES
38              
39              
40             =head2 Filters => ArrayRef[L<Paws::SSM::ComplianceStringFilter>]
41              
42             One or more compliance filters. Use a filter to return a more specific
43             list of results.
44              
45              
46              
47             =head2 MaxResults => Int
48              
49             The maximum number of items to return for this call. The call also
50             returns a token that you can specify in a subsequent call to get the
51             next set of results.
52              
53              
54              
55             =head2 NextToken => Str
56              
57             A token to start the list. Use this token to get the next set of
58             results.
59              
60              
61              
62             =head2 ResourceIds => ArrayRef[Str|Undef]
63              
64             The ID for the resources from which to get compliance information.
65             Currently, you can only specify one resource ID.
66              
67              
68              
69             =head2 ResourceTypes => ArrayRef[Str|Undef]
70              
71             The type of resource from which to get compliance information.
72             Currently, the only supported resource type is C<ManagedInstance>.
73              
74              
75              
76              
77             =head1 SEE ALSO
78              
79             This class forms part of L<Paws>, documenting arguments for method ListComplianceItems in L<Paws::SSM>
80              
81             =head1 BUGS and CONTRIBUTIONS
82              
83             The source code is located here: https://github.com/pplu/aws-sdk-perl
84              
85             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
86              
87             =cut
88