File Coverage

blib/lib/Paws/DAX/Parameter.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::Parameter;
2 1     1   291 use Moose;
  1         3  
  1         5  
3             has AllowedValues => (is => 'ro', isa => 'Str');
4             has ChangeType => (is => 'ro', isa => 'Str');
5             has DataType => (is => 'ro', isa => 'Str');
6             has Description => (is => 'ro', isa => 'Str');
7             has IsModifiable => (is => 'ro', isa => 'Str');
8             has NodeTypeSpecificValues => (is => 'ro', isa => 'ArrayRef[Paws::DAX::NodeTypeSpecificValue]');
9             has ParameterName => (is => 'ro', isa => 'Str');
10             has ParameterType => (is => 'ro', isa => 'Str');
11             has ParameterValue => (is => 'ro', isa => 'Str');
12             has Source => (is => 'ro', isa => 'Str');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::DAX::Parameter
20              
21             =head1 USAGE
22              
23             This class represents one of two things:
24              
25             =head3 Arguments in a call to a service
26              
27             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
28             Each attribute should be used as a named argument in the calls that expect this type of object.
29              
30             As an example, if Att1 is expected to be a Paws::DAX::Parameter object:
31              
32             $service_obj->Method(Att1 => { AllowedValues => $value, ..., Source => $value });
33              
34             =head3 Results returned from an API call
35              
36             Use accessors for each attribute. If Att1 is expected to be an Paws::DAX::Parameter object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->AllowedValues
40              
41             =head1 DESCRIPTION
42              
43             Describes an individual setting that controls some aspect of DAX
44             behavior.
45              
46             =head1 ATTRIBUTES
47              
48              
49             =head2 AllowedValues => Str
50              
51             A range of values within which the parameter can be set.
52              
53              
54             =head2 ChangeType => Str
55              
56             The conditions under which changes to this parameter can be applied.
57             For example, C<requires-reboot> indicates that a new value for this
58             parameter will only take effect if a node is rebooted.
59              
60              
61             =head2 DataType => Str
62              
63             The data type of the parameter. For example, C<integer>:
64              
65              
66             =head2 Description => Str
67              
68             A description of the parameter
69              
70              
71             =head2 IsModifiable => Str
72              
73             Whether the customer is allowed to modify the parameter.
74              
75              
76             =head2 NodeTypeSpecificValues => ArrayRef[L<Paws::DAX::NodeTypeSpecificValue>]
77              
78             A list of node types, and specific parameter values for each node.
79              
80              
81             =head2 ParameterName => Str
82              
83             The name of the parameter.
84              
85              
86             =head2 ParameterType => Str
87              
88             Determines whether the parameter can be applied to any nodes, or only
89             nodes of a particular type.
90              
91              
92             =head2 ParameterValue => Str
93              
94             The value for the parameter.
95              
96              
97             =head2 Source => Str
98              
99             How the parameter is defined. For example, C<system> denotes a
100             system-defined parameter.
101              
102              
103              
104             =head1 SEE ALSO
105              
106             This class forms part of L<Paws>, describing an object used in L<Paws::DAX>
107              
108             =head1 BUGS and CONTRIBUTIONS
109              
110             The source code is located here: https://github.com/pplu/aws-sdk-perl
111              
112             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
113              
114             =cut
115