File Coverage

blib/lib/Paws/SSM/EffectivePatch.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::EffectivePatch;
2 1     1   269 use Moose;
  1         2  
  1         5  
3             has Patch => (is => 'ro', isa => 'Paws::SSM::Patch');
4             has PatchStatus => (is => 'ro', isa => 'Paws::SSM::PatchStatus');
5             1;
6              
7             ### main pod documentation begin ###
8              
9             =head1 NAME
10              
11             Paws::SSM::EffectivePatch
12              
13             =head1 USAGE
14              
15             This class represents one of two things:
16              
17             =head3 Arguments in a call to a service
18              
19             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
20             Each attribute should be used as a named argument in the calls that expect this type of object.
21              
22             As an example, if Att1 is expected to be a Paws::SSM::EffectivePatch object:
23              
24             $service_obj->Method(Att1 => { Patch => $value, ..., PatchStatus => $value });
25              
26             =head3 Results returned from an API call
27              
28             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::EffectivePatch object:
29              
30             $result = $service_obj->Method(...);
31             $result->Att1->Patch
32              
33             =head1 DESCRIPTION
34              
35             The EffectivePatch structure defines metadata about a patch along with
36             the approval state of the patch in a particular patch baseline. The
37             approval state includes information about whether the patch is
38             currently approved, due to be approved by a rule, explicitly approved,
39             or explicitly rejected and the date the patch was or will be approved.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 Patch => L<Paws::SSM::Patch>
45              
46             Provides metadata for a patch, including information such as the KB ID,
47             severity, classification and a URL for where more information can be
48             obtained about the patch.
49              
50              
51             =head2 PatchStatus => L<Paws::SSM::PatchStatus>
52              
53             The status of the patch in a patch baseline. This includes information
54             about whether the patch is currently approved, due to be approved by a
55             rule, explicitly approved, or explicitly rejected and the date the
56             patch was or will be approved.
57              
58              
59              
60             =head1 SEE ALSO
61              
62             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
63              
64             =head1 BUGS and CONTRIBUTIONS
65              
66             The source code is located here: https://github.com/pplu/aws-sdk-perl
67              
68             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
69              
70             =cut
71