line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ApiGateway::Account; |
3
|
1
|
|
|
1
|
|
489
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
4
|
|
|
|
|
|
|
has ApiKeyVersion => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'apiKeyVersion'); |
5
|
|
|
|
|
|
|
has CloudwatchRoleArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'cloudwatchRoleArn'); |
6
|
|
|
|
|
|
|
has Features => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'features'); |
7
|
|
|
|
|
|
|
has ThrottleSettings => (is => 'ro', isa => 'Paws::ApiGateway::ThrottleSettings', traits => ['NameInRequest'], request_name => 'throttleSettings'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::ApiGateway::Account |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 ApiKeyVersion => Str |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The version of the API keys used for the account. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 CloudwatchRoleArn => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The ARN of an Amazon CloudWatch role for the current Account. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 Features => ArrayRef[Str|Undef] |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
A list of features supported for the account. When usage plans are |
34
|
|
|
|
|
|
|
enabled, the features list will include an entry of C<"UsagePlans">. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 ThrottleSettings => L<Paws::ApiGateway::ThrottleSettings> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Specifies the API request limits configured for the current Account. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 _request_id => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=cut |
46
|
|
|
|
|
|
|
|