File Coverage

blib/lib/Paws/DynamoDB/DescribeLimitsOutput.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::DynamoDB::DescribeLimitsOutput;
3 1     1   471 use Moose;
  1         3  
  1         7  
4             has AccountMaxReadCapacityUnits => (is => 'ro', isa => 'Int');
5             has AccountMaxWriteCapacityUnits => (is => 'ro', isa => 'Int');
6             has TableMaxReadCapacityUnits => (is => 'ro', isa => 'Int');
7             has TableMaxWriteCapacityUnits => (is => 'ro', isa => 'Int');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::DynamoDB::DescribeLimitsOutput
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 AccountMaxReadCapacityUnits => Int
21              
22             The maximum total read capacity units that your account allows you to
23             provision across all of your tables in this region.
24              
25              
26             =head2 AccountMaxWriteCapacityUnits => Int
27              
28             The maximum total write capacity units that your account allows you to
29             provision across all of your tables in this region.
30              
31              
32             =head2 TableMaxReadCapacityUnits => Int
33              
34             The maximum read capacity units that your account allows you to
35             provision for a new table that you are creating in this region,
36             including the read capacity units provisioned for its global secondary
37             indexes (GSIs).
38              
39              
40             =head2 TableMaxWriteCapacityUnits => Int
41              
42             The maximum write capacity units that your account allows you to
43             provision for a new table that you are creating in this region,
44             including the write capacity units provisioned for its global secondary
45             indexes (GSIs).
46              
47              
48             =head2 _request_id => Str
49              
50              
51             =cut
52              
53             1;