line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::AutoScaling::ScheduledUpdateGroupAction; |
2
|
1
|
|
|
1
|
|
496
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
413
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has AutoScalingGroupName => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has DesiredCapacity => (is => 'ro', isa => 'Int'); |
5
|
|
|
|
|
|
|
has EndTime => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has MaxSize => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has MinSize => (is => 'ro', isa => 'Int'); |
8
|
|
|
|
|
|
|
has Recurrence => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has ScheduledActionARN => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has ScheduledActionName => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
has StartTime => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
has Time => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::AutoScaling::ScheduledUpdateGroupAction |
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::AutoScaling::ScheduledUpdateGroupAction object: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { AutoScalingGroupName => $value, ..., Time => $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::AutoScaling::ScheduledUpdateGroupAction object: |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
39
|
|
|
|
|
|
|
$result->Att1->AutoScalingGroupName |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 DESCRIPTION |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Describes a scheduled update to an Auto Scaling group. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 AutoScalingGroupName => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The name of the group. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 DesiredCapacity => Int |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
The number of instances you prefer to maintain in the group. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 EndTime => Str |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The date and time that the action is scheduled to end. This date and |
61
|
|
|
|
|
|
|
time can be up to one month in the future. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head2 MaxSize => Int |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
The maximum size of the group. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head2 MinSize => Int |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
The minimum size of the group. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=head2 Recurrence => Str |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
The recurring schedule for the action. |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head2 ScheduledActionARN => Str |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the scheduled action. |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head2 ScheduledActionName => Str |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
The name of the scheduled action. |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=head2 StartTime => Str |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
The date and time that the action is scheduled to begin. This date and |
92
|
|
|
|
|
|
|
time can be up to one month in the future. |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
When C<StartTime> and C<EndTime> are specified with C<Recurrence>, they |
95
|
|
|
|
|
|
|
form the boundaries of when the recurring action will start and stop. |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=head2 Time => Str |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
This parameter is deprecated. |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
=head1 SEE ALSO |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::AutoScaling> |
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
|
|
|
|
|
|
|
|