File Coverage

blib/lib/Paws/ApiGateway/ApiKeys.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::ApiGateway::ApiKeys;
3 1     1   568 use Moose;
  1         2  
  1         7  
4             has Items => (is => 'ro', isa => 'ArrayRef[Paws::ApiGateway::ApiKey]', traits => ['NameInRequest'], request_name => 'items');
5             has Position => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'position');
6             has Warnings => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'warnings');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::ApiGateway::ApiKeys
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Items => ArrayRef[L<Paws::ApiGateway::ApiKey>]
21              
22             The current page of any ApiKey resources in the collection of ApiKey
23             resources.
24              
25              
26             =head2 Position => Str
27              
28              
29              
30              
31             =head2 Warnings => ArrayRef[Str|Undef]
32              
33             A list of warning messages logged during the import of API keys when
34             the C<failOnWarnings> option is set to true.
35              
36              
37             =head2 _request_id => Str
38              
39              
40             =cut
41