File Coverage

blib/lib/Paws/ApiGateway/BasePathMapping.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::BasePathMapping;
3 1     1   565 use Moose;
  1         3  
  1         7  
4             has BasePath => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'basePath');
5             has RestApiId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'restApiId');
6             has Stage => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'stage');
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::BasePathMapping
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 BasePath => Str
21              
22             The base path name that callers of the API must provide as part of the
23             URL after the domain name.
24              
25              
26             =head2 RestApiId => Str
27              
28             The name of the API.
29              
30              
31             =head2 Stage => Str
32              
33             The name of the API's stage.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40