File Coverage

blib/lib/Paws/Config/ComplianceByResource.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::Config::ComplianceByResource;
2 1     1   530 use Moose;
  1         3  
  1         6  
3             has Compliance => (is => 'ro', isa => 'Paws::Config::Compliance');
4             has ResourceId => (is => 'ro', isa => 'Str');
5             has ResourceType => (is => 'ro', isa => 'Str');
6             1;
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::Config::ComplianceByResource
13              
14             =head1 USAGE
15              
16             This class represents one of two things:
17              
18             =head3 Arguments in a call to a service
19              
20             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
21             Each attribute should be used as a named argument in the calls that expect this type of object.
22              
23             As an example, if Att1 is expected to be a Paws::Config::ComplianceByResource object:
24              
25             $service_obj->Method(Att1 => { Compliance => $value, ..., ResourceType => $value });
26              
27             =head3 Results returned from an API call
28              
29             Use accessors for each attribute. If Att1 is expected to be an Paws::Config::ComplianceByResource object:
30              
31             $result = $service_obj->Method(...);
32             $result->Att1->Compliance
33              
34             =head1 DESCRIPTION
35              
36             Indicates whether an AWS resource that is evaluated according to one or
37             more AWS Config rules is compliant. A resource is compliant if it
38             complies with all of the rules that evaluate it, and it is noncompliant
39             if it does not comply with one or more of these rules.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 Compliance => L<Paws::Config::Compliance>
45              
46             Indicates whether the AWS resource complies with all of the AWS Config
47             rules that evaluated it.
48              
49              
50             =head2 ResourceId => Str
51              
52             The ID of the AWS resource that was evaluated.
53              
54              
55             =head2 ResourceType => Str
56              
57             The type of the AWS resource that was evaluated.
58              
59              
60              
61             =head1 SEE ALSO
62              
63             This class forms part of L<Paws>, describing an object used in L<Paws::Config>
64              
65             =head1 BUGS and CONTRIBUTIONS
66              
67             The source code is located here: https://github.com/pplu/aws-sdk-perl
68              
69             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
70              
71             =cut
72