line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ApiGateway::TestInvokeAuthorizerResponse; |
3
|
1
|
|
|
1
|
|
432
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has Authorization => (is => 'ro', isa => 'Paws::ApiGateway::MapOfStringToList', traits => ['NameInRequest'], request_name => 'authorization'); |
5
|
|
|
|
|
|
|
has Claims => (is => 'ro', isa => 'Paws::ApiGateway::MapOfStringToString', traits => ['NameInRequest'], request_name => 'claims'); |
6
|
|
|
|
|
|
|
has ClientStatus => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'clientStatus'); |
7
|
|
|
|
|
|
|
has Latency => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'latency'); |
8
|
|
|
|
|
|
|
has Log => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'log'); |
9
|
|
|
|
|
|
|
has Policy => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'policy'); |
10
|
|
|
|
|
|
|
has PrincipalId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'principalId'); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::ApiGateway::TestInvokeAuthorizerResponse |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 Authorization => L<Paws::ApiGateway::MapOfStringToList> |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 Claims => L<Paws::ApiGateway::MapOfStringToString> |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The open identity claims, with any supported custom attributes, |
32
|
|
|
|
|
|
|
returned from the Cognito Your User Pool configured for the API. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 ClientStatus => Int |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
The HTTP status code that the client would have received. Value is 0 if |
38
|
|
|
|
|
|
|
the authorizer succeeded. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 Latency => Int |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
The execution latency of the test authorizer request. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 Log => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The Amazon API Gateway execution log for the test authorizer request. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 Policy => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The JSON policy document returned by the Authorizer |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 PrincipalId => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The principal identity returned by the Authorizer |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 _request_id => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
65
|
|
|
|
|
|
|
|