File Coverage

blib/lib/Paws/SSM/ResourceComplianceSummaryItem.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::ResourceComplianceSummaryItem;
2 1     1   297 use Moose;
  1         2  
  1         6  
3             has ComplianceType => (is => 'ro', isa => 'Str');
4             has CompliantSummary => (is => 'ro', isa => 'Paws::SSM::CompliantSummary');
5             has ExecutionSummary => (is => 'ro', isa => 'Paws::SSM::ComplianceExecutionSummary');
6             has NonCompliantSummary => (is => 'ro', isa => 'Paws::SSM::NonCompliantSummary');
7             has OverallSeverity => (is => 'ro', isa => 'Str');
8             has ResourceId => (is => 'ro', isa => 'Str');
9             has ResourceType => (is => 'ro', isa => 'Str');
10             has Status => (is => 'ro', isa => 'Str');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::SSM::ResourceComplianceSummaryItem
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::SSM::ResourceComplianceSummaryItem object:
29              
30             $service_obj->Method(Att1 => { ComplianceType => $value, ..., Status => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::ResourceComplianceSummaryItem object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->ComplianceType
38              
39             =head1 DESCRIPTION
40              
41             Compliance summary information for a specific resource.
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 ComplianceType => Str
47              
48             The compliance type.
49              
50              
51             =head2 CompliantSummary => L<Paws::SSM::CompliantSummary>
52              
53             A list of items that are compliant for the resource.
54              
55              
56             =head2 ExecutionSummary => L<Paws::SSM::ComplianceExecutionSummary>
57              
58             Information about the execution.
59              
60              
61             =head2 NonCompliantSummary => L<Paws::SSM::NonCompliantSummary>
62              
63             A list of items that aren't compliant for the resource.
64              
65              
66             =head2 OverallSeverity => Str
67              
68             The highest severity item found for the resource. The resource is
69             compliant for this item.
70              
71              
72             =head2 ResourceId => Str
73              
74             The resource ID.
75              
76              
77             =head2 ResourceType => Str
78              
79             The resource type.
80              
81              
82             =head2 Status => Str
83              
84             The compliance status for the resource.
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