File Coverage

blib/lib/Paws/Snowball/GetSnowballUsageResult.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::Snowball::GetSnowballUsageResult;
3 1     1   349 use Moose;
  1         2  
  1         7  
4             has SnowballLimit => (is => 'ro', isa => 'Int');
5             has SnowballsInUse => (is => 'ro', isa => 'Int');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::Snowball::GetSnowballUsageResult
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 SnowballLimit => Int
19              
20             The service limit for number of Snowballs this account can have at
21             once. The default service limit is 1 (one).
22              
23              
24             =head2 SnowballsInUse => Int
25              
26             The number of Snowballs that this account is currently using.
27              
28              
29             =head2 _request_id => Str
30              
31              
32             =cut
33              
34             1;