line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ElastiCache::AllowedNodeTypeModificationsMessage; |
3
|
1
|
|
|
1
|
|
716
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has ScaleUpModifications => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
1; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::ElastiCache::AllowedNodeTypeModificationsMessage |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 ScaleUpModifications => ArrayRef[Str|Undef] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
A string list, each element of which specifies a cache node type which |
21
|
|
|
|
|
|
|
you can use to scale your cache cluster or replication group. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
When scaling up a Redis cluster or replication group using |
24
|
|
|
|
|
|
|
C<ModifyCacheCluster> or C<ModifyReplicationGroup>, use a value from |
25
|
|
|
|
|
|
|
this list for the C<CacheNodeType> parameter. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 _request_id => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=cut |
32
|
|
|
|
|
|
|
|