File Coverage

blib/lib/Paws/ApiGateway/ApiKey.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ApiGateway::ApiKey;
3 1     1   509 use Moose;
  1         3  
  1         7  
4             has CreatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'createdDate');
5             has CustomerId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'customerId');
6             has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description');
7             has Enabled => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'enabled');
8             has Id => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'id');
9             has LastUpdatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'lastUpdatedDate');
10             has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name');
11             has StageKeys => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'stageKeys');
12             has Value => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'value');
13              
14             has _request_id => (is => 'ro', isa => 'Str');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::ApiGateway::ApiKey
22              
23             =head1 ATTRIBUTES
24              
25              
26             =head2 CreatedDate => Str
27              
28             The timestamp when the API Key was created.
29              
30              
31             =head2 CustomerId => Str
32              
33             An AWS Marketplace customer identifier , when integrating with the AWS
34             SaaS Marketplace.
35              
36              
37             =head2 Description => Str
38              
39             The description of the API Key.
40              
41              
42             =head2 Enabled => Bool
43              
44             Specifies whether the API Key can be used by callers.
45              
46              
47             =head2 Id => Str
48              
49             The identifier of the API Key.
50              
51              
52             =head2 LastUpdatedDate => Str
53              
54             The timestamp when the API Key was last updated.
55              
56              
57             =head2 Name => Str
58              
59             The name of the API Key.
60              
61              
62             =head2 StageKeys => ArrayRef[Str|Undef]
63              
64             A list of Stage resources that are associated with the ApiKey resource.
65              
66              
67             =head2 Value => Str
68              
69             The value of the API Key.
70              
71              
72             =head2 _request_id => Str
73              
74              
75             =cut
76