File Coverage

blib/lib/Paws/Config/GetComplianceSummaryByResourceTypeResponse.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              
2             package Paws::Config::GetComplianceSummaryByResourceTypeResponse;
3 1     1   442 use Moose;
  1         2  
  1         9  
4             has ComplianceSummariesByResourceType => (is => 'ro', isa => 'ArrayRef[Paws::Config::ComplianceSummaryByResourceType]');
5              
6             has _request_id => (is => 'ro', isa => 'Str');
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::Config::GetComplianceSummaryByResourceTypeResponse
13              
14             =head1 ATTRIBUTES
15              
16              
17             =head2 ComplianceSummariesByResourceType => ArrayRef[L<Paws::Config::ComplianceSummaryByResourceType>]
18              
19             The number of resources that are compliant and the number that are
20             noncompliant. If one or more resource types were provided with the
21             request, the numbers are returned for each resource type. The maximum
22             number returned is 100.
23              
24              
25             =head2 _request_id => Str
26              
27              
28             =cut
29              
30             1;