line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::ES::ElasticsearchClusterConfig; |
2
|
1
|
|
|
1
|
|
551
|
use Moose; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
508
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has DedicatedMasterCount => (is => 'ro', isa => 'Int'); |
4
|
|
|
|
|
|
|
has DedicatedMasterEnabled => (is => 'ro', isa => 'Bool'); |
5
|
|
|
|
|
|
|
has DedicatedMasterType => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has InstanceCount => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has InstanceType => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has ZoneAwarenessEnabled => (is => 'ro', isa => 'Bool'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::ES::ElasticsearchClusterConfig |
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::ES::ElasticsearchClusterConfig object: |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { DedicatedMasterCount => $value, ..., ZoneAwarenessEnabled => $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::ES::ElasticsearchClusterConfig object: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
35
|
|
|
|
|
|
|
$result->Att1->DedicatedMasterCount |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 DESCRIPTION |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Specifies the configuration for the domain cluster, such as the type |
40
|
|
|
|
|
|
|
and number of instances. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 DedicatedMasterCount => Int |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Total number of dedicated master nodes, active and on standby, for the |
48
|
|
|
|
|
|
|
cluster. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 DedicatedMasterEnabled => Bool |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
A boolean value to indicate whether a dedicated master node is enabled. |
54
|
|
|
|
|
|
|
See About Dedicated Master Nodes for more information. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 DedicatedMasterType => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The instance type for a dedicated master node. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 InstanceCount => Int |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The number of instances in the specified domain cluster. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 InstanceType => Str |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
The instance type for an Elasticsearch cluster. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 ZoneAwarenessEnabled => Bool |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
A boolean value to indicate whether zone awareness is enabled. See |
75
|
|
|
|
|
|
|
About Zone Awareness for more information. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 SEE ALSO |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::ES> |
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
|
|
|
|
|
|
|
|