line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::SSM::ComplianceItemEntry; |
2
|
1
|
|
|
1
|
|
332
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
3
|
|
|
|
|
|
|
has Details => (is => 'ro', isa => 'Paws::SSM::ComplianceItemDetails'); |
4
|
|
|
|
|
|
|
has Id => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has Severity => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str', required => 1); |
7
|
|
|
|
|
|
|
has Title => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
1; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::SSM::ComplianceItemEntry |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 USAGE |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
This class represents one of two things: |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
23
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::SSM::ComplianceItemEntry object: |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Details => $value, ..., Title => $value }); |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head3 Results returned from an API call |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::ComplianceItemEntry object: |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
34
|
|
|
|
|
|
|
$result->Att1->Details |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 DESCRIPTION |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Information about a compliance item. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 Details => L<Paws::SSM::ComplianceItemDetails> |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
A "Key": "Value" tag combination for the compliance item. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 Id => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The compliance item ID. For example, if the compliance item is a |
51
|
|
|
|
|
|
|
Windows patch, the ID could be the number of the KB article. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 B<REQUIRED> Severity => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The severity of the compliance status. Severity can be one of the |
57
|
|
|
|
|
|
|
following: Critical, High, Medium, Low, Informational, Unspecified. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head2 B<REQUIRED> Status => Str |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
The status of the compliance item. An item is either COMPLIANT or |
63
|
|
|
|
|
|
|
NON_COMPLIANT. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 Title => Str |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The title of the compliance item. For example, if the compliance item |
69
|
|
|
|
|
|
|
is a Windows patch, the title could be the title of the KB article for |
70
|
|
|
|
|
|
|
the patch. Here's an example: Security Update for Active Directory |
71
|
|
|
|
|
|
|
Federation Services. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 SEE ALSO |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::SSM> |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=cut |
86
|
|
|
|
|
|
|
|