File Coverage

blib/lib/Paws/ElastiCache/PendingModifiedValues.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::PendingModifiedValues;
2 1     1   458 use Moose;
  1         2  
  1         7  
3             has CacheNodeIdsToRemove => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'CacheNodeId', traits => ['NameInRequest']);
4             has CacheNodeType => (is => 'ro', isa => 'Str');
5             has EngineVersion => (is => 'ro', isa => 'Str');
6             has NumCacheNodes => (is => 'ro', isa => 'Int');
7             1;
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::ElastiCache::PendingModifiedValues
14              
15             =head1 USAGE
16              
17             This class represents one of two things:
18              
19             =head3 Arguments in a call to a service
20              
21             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
22             Each attribute should be used as a named argument in the calls that expect this type of object.
23              
24             As an example, if Att1 is expected to be a Paws::ElastiCache::PendingModifiedValues object:
25              
26             $service_obj->Method(Att1 => { CacheNodeIdsToRemove => $value, ..., NumCacheNodes => $value });
27              
28             =head3 Results returned from an API call
29              
30             Use accessors for each attribute. If Att1 is expected to be an Paws::ElastiCache::PendingModifiedValues object:
31              
32             $result = $service_obj->Method(...);
33             $result->Att1->CacheNodeIdsToRemove
34              
35             =head1 DESCRIPTION
36              
37             A group of settings that are applied to the cache cluster in the
38             future, or that are currently being applied.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 CacheNodeIdsToRemove => ArrayRef[Str|Undef]
44              
45             A list of cache node IDs that are being removed (or will be removed)
46             from the cache cluster. A node ID is a numeric identifier (0001, 0002,
47             etc.).
48              
49              
50             =head2 CacheNodeType => Str
51              
52             The cache node type that this cache cluster or replication group is
53             scaled to.
54              
55              
56             =head2 EngineVersion => Str
57              
58             The new cache engine version that the cache cluster runs.
59              
60              
61             =head2 NumCacheNodes => Int
62              
63             The new number of cache nodes for the cache cluster.
64              
65             For clusters running Redis, this value must be 1. For clusters running
66             Memcached, this value must be between 1 and 20.
67              
68              
69              
70             =head1 SEE ALSO
71              
72             This class forms part of L<Paws>, describing an object used in L<Paws::ElastiCache>
73              
74             =head1 BUGS and CONTRIBUTIONS
75              
76             The source code is located here: https://github.com/pplu/aws-sdk-perl
77              
78             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
79              
80             =cut
81