line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ApiGateway::Model; |
3
|
1
|
|
|
1
|
|
559
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has ContentType => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'contentType'); |
5
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description'); |
6
|
|
|
|
|
|
|
has Id => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'id'); |
7
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name'); |
8
|
|
|
|
|
|
|
has Schema => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'schema'); |
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::Model |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 ContentType => Str |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The content-type for the model. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 Description => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The description of the model. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 Id => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The identifier for the model resource. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 Name => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The name of the model. Must be an alphanumeric string. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 Schema => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The schema for the model. For C<application/json> models, this should |
45
|
|
|
|
|
|
|
be JSON-schema draft v4 model. Do not include "\*/" characters in the |
46
|
|
|
|
|
|
|
description of any properties because such "\*/" characters may be |
47
|
|
|
|
|
|
|
interpreted as the closing marker for comments in some languages, such |
48
|
|
|
|
|
|
|
as Java or JavaScript, causing the installation of your API's SDK |
49
|
|
|
|
|
|
|
generated by API Gateway to fail. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 _request_id => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |
56
|
|
|
|
|
|
|
|