line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::RDS::Parameter; |
2
|
1
|
|
|
1
|
|
303
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
3
|
|
|
|
|
|
|
has AllowedValues => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has ApplyMethod => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has ApplyType => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has DataType => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has IsModifiable => (is => 'ro', isa => 'Bool'); |
9
|
|
|
|
|
|
|
has MinimumEngineVersion => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has ParameterName => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
has ParameterValue => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
has Source => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::RDS::Parameter |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 USAGE |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This class represents one of two things: |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
28
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::RDS::Parameter object: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { AllowedValues => $value, ..., Source => $value }); |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head3 Results returned from an API call |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::RDS::Parameter object: |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
39
|
|
|
|
|
|
|
$result->Att1->AllowedValues |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 DESCRIPTION |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
This data type is used as a request parameter in the |
44
|
|
|
|
|
|
|
ModifyDBParameterGroup and ResetDBParameterGroup actions. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
This data type is used as a response element in the |
47
|
|
|
|
|
|
|
DescribeEngineDefaultParameters and DescribeDBParameters actions. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 AllowedValues => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Specifies the valid range of values for the parameter. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 ApplyMethod => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Indicates when to apply parameter updates. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 ApplyType => Str |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Specifies the engine specific parameters type. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 DataType => Str |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
Specifies the valid data type for the parameter. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 Description => Str |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
Provides a description of the parameter. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 IsModifiable => Bool |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
Indicates whether (C<true>) or not (C<false>) the parameter can be |
80
|
|
|
|
|
|
|
modified. Some parameters have security or operational implications |
81
|
|
|
|
|
|
|
that prevent them from being changed. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head2 MinimumEngineVersion => Str |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
The earliest engine version to which the parameter can apply. |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=head2 ParameterName => Str |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
Specifies the name of the parameter. |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
=head2 ParameterValue => Str |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
Specifies the value of the parameter. |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
=head2 Source => Str |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
Indicates the source of the parameter value. |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=head1 SEE ALSO |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::RDS> |
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
=cut |
116
|
|
|
|
|
|
|
|