File Coverage

blib/lib/Paws/SSM/SeveritySummary.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::SSM::SeveritySummary;
2 1     1   513 use Moose;
  1         3  
  1         9  
3             has CriticalCount => (is => 'ro', isa => 'Int');
4             has HighCount => (is => 'ro', isa => 'Int');
5             has InformationalCount => (is => 'ro', isa => 'Int');
6             has LowCount => (is => 'ro', isa => 'Int');
7             has MediumCount => (is => 'ro', isa => 'Int');
8             has UnspecifiedCount => (is => 'ro', isa => 'Int');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::SSM::SeveritySummary
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::SSM::SeveritySummary object:
27              
28             $service_obj->Method(Att1 => { CriticalCount => $value, ..., UnspecifiedCount => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::SeveritySummary object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->CriticalCount
36              
37             =head1 DESCRIPTION
38              
39             The number of managed instances found for each patch severity level
40             defined in the request filter.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 CriticalCount => Int
46              
47             The total number of resources or compliance items that have a severity
48             level of critical. Critical severity is determined by the organization
49             that published the compliance items.
50              
51              
52             =head2 HighCount => Int
53              
54             The total number of resources or compliance items that have a severity
55             level of high. High severity is determined by the organization that
56             published the compliance items.
57              
58              
59             =head2 InformationalCount => Int
60              
61             The total number of resources or compliance items that have a severity
62             level of informational. Informational severity is determined by the
63             organization that published the compliance items.
64              
65              
66             =head2 LowCount => Int
67              
68             The total number of resources or compliance items that have a severity
69             level of low. Low severity is determined by the organization that
70             published the compliance items.
71              
72              
73             =head2 MediumCount => Int
74              
75             The total number of resources or compliance items that have a severity
76             level of medium. Medium severity is determined by the organization that
77             published the compliance items.
78              
79              
80             =head2 UnspecifiedCount => Int
81              
82             The total number of resources or compliance items that have a severity
83             level of unspecified. Unspecified severity is determined by the
84             organization that published the compliance items.
85              
86              
87              
88             =head1 SEE ALSO
89              
90             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
91              
92             =head1 BUGS and CONTRIBUTIONS
93              
94             The source code is located here: https://github.com/pplu/aws-sdk-perl
95              
96             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
97              
98             =cut
99