File Coverage

blib/lib/Paws/ApiGateway/SdkConfigurationProperty.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             package Paws::ApiGateway::SdkConfigurationProperty;
2 1     1   663 use Moose;
  1         3  
  1         10  
3             has DefaultValue => (is => 'ro', isa => 'Str', request_name => 'defaultValue', traits => ['NameInRequest']);
4             has Description => (is => 'ro', isa => 'Str', request_name => 'description', traits => ['NameInRequest']);
5             has FriendlyName => (is => 'ro', isa => 'Str', request_name => 'friendlyName', traits => ['NameInRequest']);
6             has Name => (is => 'ro', isa => 'Str', request_name => 'name', traits => ['NameInRequest']);
7             has Required => (is => 'ro', isa => 'Bool', request_name => 'required', traits => ['NameInRequest']);
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::ApiGateway::SdkConfigurationProperty
15              
16             =head1 USAGE
17              
18             This class represents one of two things:
19              
20             =head3 Arguments in a call to a service
21              
22             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
23             Each attribute should be used as a named argument in the calls that expect this type of object.
24              
25             As an example, if Att1 is expected to be a Paws::ApiGateway::SdkConfigurationProperty object:
26              
27             $service_obj->Method(Att1 => { DefaultValue => $value, ..., Required => $value });
28              
29             =head3 Results returned from an API call
30              
31             Use accessors for each attribute. If Att1 is expected to be an Paws::ApiGateway::SdkConfigurationProperty object:
32              
33             $result = $service_obj->Method(...);
34             $result->Att1->DefaultValue
35              
36             =head1 DESCRIPTION
37              
38             A configuration property of an SDK type.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 DefaultValue => Str
44              
45             The default value of an SdkType configuration property.
46              
47              
48             =head2 Description => Str
49              
50             The description of an SdkType configuration property.
51              
52              
53             =head2 FriendlyName => Str
54              
55             The user-friendly name of an SdkType configuration property.
56              
57              
58             =head2 Name => Str
59              
60             The name of a an SdkType configuration property.
61              
62              
63             =head2 Required => Bool
64              
65             A boolean flag of an SdkType configuration property to indicate if the
66             associated SDK configuration property is required (C<true>) or not
67             (C<false>).
68              
69              
70              
71             =head1 SEE ALSO
72              
73             This class forms part of L<Paws>, describing an object used in L<Paws::ApiGateway>
74              
75             =head1 BUGS and CONTRIBUTIONS
76              
77             The source code is located here: https://github.com/pplu/aws-sdk-perl
78              
79             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
80              
81             =cut
82