File Coverage

blib/lib/Paws/ElastiCache/NodeSnapshot.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::NodeSnapshot;
2 1     1   470 use Moose;
  1         2  
  1         10  
3             has CacheClusterId => (is => 'ro', isa => 'Str');
4             has CacheNodeCreateTime => (is => 'ro', isa => 'Str');
5             has CacheNodeId => (is => 'ro', isa => 'Str');
6             has CacheSize => (is => 'ro', isa => 'Str');
7             has NodeGroupConfiguration => (is => 'ro', isa => 'Paws::ElastiCache::NodeGroupConfiguration');
8             has NodeGroupId => (is => 'ro', isa => 'Str');
9             has SnapshotCreateTime => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::ElastiCache::NodeSnapshot
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::ElastiCache::NodeSnapshot object:
28              
29             $service_obj->Method(Att1 => { CacheClusterId => $value, ..., SnapshotCreateTime => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::ElastiCache::NodeSnapshot object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->CacheClusterId
37              
38             =head1 DESCRIPTION
39              
40             Represents an individual cache node in a snapshot of a cache cluster.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 CacheClusterId => Str
46              
47             A unique identifier for the source cache cluster.
48              
49              
50             =head2 CacheNodeCreateTime => Str
51              
52             The date and time when the cache node was created in the source cache
53             cluster.
54              
55              
56             =head2 CacheNodeId => Str
57              
58             The cache node identifier for the node in the source cache cluster.
59              
60              
61             =head2 CacheSize => Str
62              
63             The size of the cache on the source cache node.
64              
65              
66             =head2 NodeGroupConfiguration => L<Paws::ElastiCache::NodeGroupConfiguration>
67              
68             The configuration for the source node group (shard).
69              
70              
71             =head2 NodeGroupId => Str
72              
73             A unique identifier for the source node group (shard).
74              
75              
76             =head2 SnapshotCreateTime => Str
77              
78             The date and time when the source node's metadata and cache data set
79             was obtained for the snapshot.
80              
81              
82              
83             =head1 SEE ALSO
84              
85             This class forms part of L<Paws>, describing an object used in L<Paws::ElastiCache>
86              
87             =head1 BUGS and CONTRIBUTIONS
88              
89             The source code is located here: https://github.com/pplu/aws-sdk-perl
90              
91             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
92              
93             =cut
94