line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::Config::EvaluationResult; |
2
|
1
|
|
|
1
|
|
278
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has Annotation => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has ComplianceType => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has ConfigRuleInvokedTime => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has EvaluationResultIdentifier => (is => 'ro', isa => 'Paws::Config::EvaluationResultIdentifier'); |
7
|
|
|
|
|
|
|
has ResultRecordedTime => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has ResultToken => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::Config::EvaluationResult |
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::Config::EvaluationResult object: |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Annotation => $value, ..., ResultToken => $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::Config::EvaluationResult object: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
35
|
|
|
|
|
|
|
$result->Att1->Annotation |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 DESCRIPTION |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The details of an AWS Config evaluation. Provides the AWS resource that |
40
|
|
|
|
|
|
|
was evaluated, the compliance of the resource, related timestamps, and |
41
|
|
|
|
|
|
|
supplementary information. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 Annotation => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Supplementary information about how the evaluation determined the |
49
|
|
|
|
|
|
|
compliance. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 ComplianceType => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Indicates whether the AWS resource complies with the AWS Config rule |
55
|
|
|
|
|
|
|
that evaluated it. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
For the C<EvaluationResult> data type, AWS Config supports only the |
58
|
|
|
|
|
|
|
C<COMPLIANT>, C<NON_COMPLIANT>, and C<NOT_APPLICABLE> values. AWS |
59
|
|
|
|
|
|
|
Config does not support the C<INSUFFICIENT_DATA> value for the |
60
|
|
|
|
|
|
|
C<EvaluationResult> data type. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 ConfigRuleInvokedTime => Str |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
The time when the AWS Config rule evaluated the AWS resource. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head2 EvaluationResultIdentifier => L<Paws::Config::EvaluationResultIdentifier> |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
Uniquely identifies the evaluation result. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head2 ResultRecordedTime => Str |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
The time when AWS Config recorded the evaluation result. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=head2 ResultToken => Str |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
An encrypted token that associates an evaluation with an AWS Config |
81
|
|
|
|
|
|
|
rule. The token identifies the rule, the AWS resource being evaluated, |
82
|
|
|
|
|
|
|
and the event that triggered the evaluation. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=head1 SEE ALSO |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::Config> |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=cut |
97
|
|
|
|
|
|
|
|