line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ApiGateway::BasePathMapping; |
3
|
1
|
|
|
1
|
|
707
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
10
|
|
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 string identifier of the associated RestApi. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 Stage => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The name of the associated stage. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 _request_id => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|