1
2package Paws::EMR::AddInstanceGroupsOutput {
3  use Moose;
4  has InstanceGroupIds => (is => 'ro', isa => 'ArrayRef[Str]');
5  has JobFlowId => (is => 'ro', isa => 'Str');
6
7}
8
9### main pod documentation begin ###
10
11=head1 NAME
12
13Paws::EMR::AddInstanceGroupsOutput
14
15=head1 ATTRIBUTES
16
17=head2 InstanceGroupIds => ArrayRef[Str]
18
19
20
21Instance group IDs of the newly created instance groups.
22
23
24
25
26
27
28
29
30
31=head2 JobFlowId => Str
32
33
34
35The job flow ID in which the instance groups are added.
36
37
38
39
40
41
42
43
44
45
46
47=cut
48
491;