line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SSM::ListComplianceSummariesResult; |
3
|
1
|
|
|
1
|
|
273
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has ComplianceSummaryItems => (is => 'ro', isa => 'ArrayRef[Paws::SSM::ComplianceSummaryItem]'); |
5
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::SSM::ListComplianceSummariesResult |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 ComplianceSummaryItems => ArrayRef[L<Paws::SSM::ComplianceSummaryItem>] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
A list of compliant and non-compliant summary counts based on |
21
|
|
|
|
|
|
|
compliance types. For example, this call returns State Manager |
22
|
|
|
|
|
|
|
associations, patches, or custom compliance types according to the |
23
|
|
|
|
|
|
|
filter criteria that you specified. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 NextToken => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The token for the next set of items to return. Use this token to get |
29
|
|
|
|
|
|
|
the next set of results. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 _request_id => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
1; |