line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::DAX::UpdateCluster; |
3
|
1
|
|
|
1
|
|
274
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has ClusterName => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has NotificationTopicArn => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has NotificationTopicStatus => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has ParameterGroupName => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has PreferredMaintenanceWindow => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has SecurityGroupIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
5341
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateCluster'); |
15
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::DAX::UpdateClusterResponse'); |
16
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
### main pod documentation begin ### |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Paws::DAX::UpdateCluster - Arguments for method UpdateCluster on Paws::DAX |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 DESCRIPTION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This class represents the parameters used for calling the method UpdateCluster on the |
28
|
|
|
|
|
|
|
Amazon DynamoDB Accelerator (DAX) service. Use the attributes of this class |
29
|
|
|
|
|
|
|
as arguments to method UpdateCluster. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateCluster. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
As an example: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$service_obj->UpdateCluster(Att1 => $value1, Att2 => $value2, ...); |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 B<REQUIRED> ClusterName => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The name of the DAX cluster to be modified. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 Description => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
A description of the changes being made to the cluster. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 NotificationTopicArn => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) that identifies the topic. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head2 NotificationTopicStatus => Str |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
The current state of the topic. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 ParameterGroupName => Str |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The name of a parameter group for this cluster. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 PreferredMaintenanceWindow => Str |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
A range of time when maintenance of DAX cluster software will be |
75
|
|
|
|
|
|
|
performed. For example: C<sun:01:00-sun:09:00>. Cluster maintenance |
76
|
|
|
|
|
|
|
normally takes less than 30 minutes, and is performed automatically |
77
|
|
|
|
|
|
|
within the maintenance window. |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=head2 SecurityGroupIds => ArrayRef[Str|Undef] |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
A list of user-specified security group IDs to be assigned to each node |
84
|
|
|
|
|
|
|
in the DAX cluster. If this parameter is not specified, DAX assigns the |
85
|
|
|
|
|
|
|
default VPC security group to each node. |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head1 SEE ALSO |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method UpdateCluster in L<Paws::DAX> |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
=cut |
101
|
|
|
|
|
|
|
|