File Coverage

blib/lib/Paws/ApiGateway/Deployment.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::Deployment;
3 1     1   601 use Moose;
  1         2  
  1         8  
4             has ApiSummary => (is => 'ro', isa => 'Paws::ApiGateway::PathToMapOfMethodSnapshot', traits => ['NameInRequest'], request_name => 'apiSummary');
5             has CreatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'createdDate');
6             has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description');
7             has Id => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'id');
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::Deployment
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 ApiSummary => L<Paws::ApiGateway::PathToMapOfMethodSnapshot>
22              
23             A summary of the RestApi at the date and time that the deployment
24             resource was created.
25              
26              
27             =head2 CreatedDate => Str
28              
29             The date and time that the deployment resource was created.
30              
31              
32             =head2 Description => Str
33              
34             The description for the deployment resource.
35              
36              
37             =head2 Id => Str
38              
39             The identifier for the deployment resource.
40              
41              
42             =head2 _request_id => Str
43              
44              
45             =cut
46