File Coverage

blib/lib/Paws/CloudFormation/DescribeAccountLimitsOutput.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::CloudFormation::DescribeAccountLimitsOutput;
3 1     1   542 use Moose;
  1         5  
  1         11  
4             has AccountLimits => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::AccountLimit]');
5             has NextToken => (is => 'ro', isa => 'Str');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CloudFormation::DescribeAccountLimitsOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 AccountLimits => ArrayRef[L<Paws::CloudFormation::AccountLimit>]
20              
21             An account limit structure that contain a list of AWS CloudFormation
22             account limits and their values.
23              
24              
25             =head2 NextToken => Str
26              
27             If the output exceeds 1 MB in size, a string that identifies the next
28             page of limits. If no additional page exists, this value is null.
29              
30              
31             =head2 _request_id => Str
32              
33              
34             =cut
35