File Coverage

blib/lib/Paws/AutoScaling/DescribeAccountLimitsAnswer.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::AutoScaling::DescribeAccountLimitsAnswer;
3 1     1   700 use Moose;
  1         1965  
  1         25  
4             has MaxNumberOfAutoScalingGroups => (is => 'ro', isa => 'Int');
5             has MaxNumberOfLaunchConfigurations => (is => 'ro', isa => 'Int');
6             has NumberOfAutoScalingGroups => (is => 'ro', isa => 'Int');
7             has NumberOfLaunchConfigurations => (is => 'ro', isa => 'Int');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::AutoScaling::DescribeAccountLimitsAnswer
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 MaxNumberOfAutoScalingGroups => Int
22              
23             The maximum number of groups allowed for your AWS account. The default
24             limit is 20 per region.
25              
26              
27             =head2 MaxNumberOfLaunchConfigurations => Int
28              
29             The maximum number of launch configurations allowed for your AWS
30             account. The default limit is 100 per region.
31              
32              
33             =head2 NumberOfAutoScalingGroups => Int
34              
35             The current number of groups for your AWS account.
36              
37              
38             =head2 NumberOfLaunchConfigurations => Int
39              
40             The current number of launch configurations for your AWS account.
41              
42              
43             =head2 _request_id => Str
44              
45              
46             =cut
47