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