File Coverage

blib/lib/Paws/DAX/Node.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::DAX::Node;
2 1     1   642 use Moose;
  1         3  
  1         11  
3             has AvailabilityZone => (is => 'ro', isa => 'Str');
4             has Endpoint => (is => 'ro', isa => 'Paws::DAX::Endpoint');
5             has NodeCreateTime => (is => 'ro', isa => 'Str');
6             has NodeId => (is => 'ro', isa => 'Str');
7             has NodeStatus => (is => 'ro', isa => 'Str');
8             has ParameterGroupStatus => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::DAX::Node
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::DAX::Node object:
27              
28             $service_obj->Method(Att1 => { AvailabilityZone => $value, ..., ParameterGroupStatus => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::DAX::Node object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->AvailabilityZone
36              
37             =head1 DESCRIPTION
38              
39             Represents an individual node within a DAX cluster.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 AvailabilityZone => Str
45              
46             The Availability Zone (AZ) in which the node has been deployed.
47              
48              
49             =head2 Endpoint => L<Paws::DAX::Endpoint>
50              
51             The endpoint for the node, consisting of a DNS name and a port number.
52             Client applications can connect directly to a node endpoint, if desired
53             (as an alternative to allowing DAX client software to intelligently
54             route requests and responses to nodes in the DAX cluster.
55              
56              
57             =head2 NodeCreateTime => Str
58              
59             The date and time (in UNIX epoch format) when the node was launched.
60              
61              
62             =head2 NodeId => Str
63              
64             A system-generated identifier for the node.
65              
66              
67             =head2 NodeStatus => Str
68              
69             The current status of the node. For example: C<available>.
70              
71              
72             =head2 ParameterGroupStatus => Str
73              
74             The status of the parameter group associated with this node. For
75             example, C<in-sync>.
76              
77              
78              
79             =head1 SEE ALSO
80              
81             This class forms part of L<Paws>, describing an object used in L<Paws::DAX>
82              
83             =head1 BUGS and CONTRIBUTIONS
84              
85             The source code is located here: https://github.com/pplu/aws-sdk-perl
86              
87             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
88              
89             =cut
90