line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ApiGateway::TestInvokeMethodResponse; |
3
|
1
|
|
|
1
|
|
498
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has Body => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'body'); |
5
|
|
|
|
|
|
|
has Headers => (is => 'ro', isa => 'Paws::ApiGateway::MapOfHeaderValues', traits => ['NameInRequest'], request_name => 'headers'); |
6
|
|
|
|
|
|
|
has Latency => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'latency'); |
7
|
|
|
|
|
|
|
has Log => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'log'); |
8
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'status'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::ApiGateway::TestInvokeMethodResponse |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 Body => Str |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The body of the HTTP response. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 Headers => L<Paws::ApiGateway::MapOfHeaderValues> |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The headers of the HTTP response. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 Latency => Int |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The execution latency of the test invoke request. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 Log => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The Amazon API Gateway execution log for the test invoke request. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 Status => Int |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The HTTP status code. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 _request_id => Str |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |
51
|
|
|
|
|
|
|
|