File Coverage

blib/lib/Paws/ElastiCache/CacheNodeTypeSpecificParameter.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::ElastiCache::CacheNodeTypeSpecificParameter;
2 1     1   686 use Moose;
  1         3  
  1         10  
3             has AllowedValues => (is => 'ro', isa => 'Str');
4             has CacheNodeTypeSpecificValues => (is => 'ro', isa => 'ArrayRef[Paws::ElastiCache::CacheNodeTypeSpecificValue]', request_name => 'CacheNodeTypeSpecificValue', traits => ['NameInRequest']);
5             has ChangeType => (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 Source => (is => 'ro', isa => 'Str');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::ElastiCache::CacheNodeTypeSpecificParameter
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::CacheNodeTypeSpecificParameter 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::CacheNodeTypeSpecificParameter object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->AllowedValues
39              
40             =head1 DESCRIPTION
41              
42             A parameter that has a different value for each cache node type it is
43             applied to. For example, in a Redis cache cluster, a C<cache.m1.large>
44             cache node type would have a larger C<maxmemory> value than a
45             C<cache.m1.small> type.
46              
47             =head1 ATTRIBUTES
48              
49              
50             =head2 AllowedValues => Str
51              
52             The valid range of values for the parameter.
53              
54              
55             =head2 CacheNodeTypeSpecificValues => ArrayRef[L<Paws::ElastiCache::CacheNodeTypeSpecificValue>]
56              
57             A list of cache node types and their corresponding values for this
58             parameter.
59              
60              
61             =head2 ChangeType => Str
62              
63             Indicates whether a change to the parameter is applied immediately or
64             requires a reboot for the change to be applied. You can force a reboot
65             or wait until the next maintenance window's reboot. For more
66             information, see Rebooting a Cluster.
67              
68              
69             =head2 DataType => Str
70              
71             The valid data type for the parameter.
72              
73              
74             =head2 Description => Str
75              
76             A description of the parameter.
77              
78              
79             =head2 IsModifiable => Bool
80              
81             Indicates whether (C<true>) or not (C<false>) the parameter can be
82             modified. Some parameters have security or operational implications
83             that prevent them from being changed.
84              
85              
86             =head2 MinimumEngineVersion => Str
87              
88             The earliest cache engine version to which the parameter can apply.
89              
90              
91             =head2 ParameterName => Str
92              
93             The name of the parameter.
94              
95              
96             =head2 Source => Str
97              
98             The source of the parameter value.
99              
100              
101              
102             =head1 SEE ALSO
103              
104             This class forms part of L<Paws>, describing an object used in L<Paws::ElastiCache>
105              
106             =head1 BUGS and CONTRIBUTIONS
107              
108             The source code is located here: https://github.com/pplu/aws-sdk-perl
109              
110             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
111              
112             =cut
113