File Coverage

blib/lib/Paws/ApiGateway/SdkType.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::SdkType;
3 1     1   510 use Moose;
  1         2  
  1         7  
4             has ConfigurationProperties => (is => 'ro', isa => 'ArrayRef[Paws::ApiGateway::SdkConfigurationProperty]', traits => ['NameInRequest'], request_name => 'configurationProperties');
5             has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description');
6             has FriendlyName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'friendlyName');
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::SdkType
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 ConfigurationProperties => ArrayRef[L<Paws::ApiGateway::SdkConfigurationProperty>]
22              
23             A list of configuration properties of an SdkType.
24              
25              
26             =head2 Description => Str
27              
28             The description of an SdkType.
29              
30              
31             =head2 FriendlyName => Str
32              
33             The user-friendly name of an SdkType instance.
34              
35              
36             =head2 Id => Str
37              
38             The identifier of an SdkType instance.
39              
40              
41             =head2 _request_id => Str
42              
43              
44             =cut
45