line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::AutoScaling::CompleteLifecycleAction; |
3
|
1
|
|
|
1
|
|
560
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has AutoScalingGroupName => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has InstanceId => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has LifecycleActionResult => (is => 'ro', isa => 'Str', required => 1); |
7
|
|
|
|
|
|
|
has LifecycleActionToken => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has LifecycleHookName => (is => 'ro', isa => 'Str', required => 1); |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
6587
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'CompleteLifecycleAction'); |
13
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::AutoScaling::CompleteLifecycleActionAnswer'); |
14
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro', default => 'CompleteLifecycleActionResult'); |
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
### main pod documentation begin ### |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Paws::AutoScaling::CompleteLifecycleAction - Arguments for method CompleteLifecycleAction on Paws::AutoScaling |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 DESCRIPTION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This class represents the parameters used for calling the method CompleteLifecycleAction on the |
26
|
|
|
|
|
|
|
Auto Scaling service. Use the attributes of this class |
27
|
|
|
|
|
|
|
as arguments to method CompleteLifecycleAction. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CompleteLifecycleAction. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
As an example: |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
$service_obj->CompleteLifecycleAction(Att1 => $value1, Att2 => $value2, ...); |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
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. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 B<REQUIRED> AutoScalingGroupName => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The name of the group for the lifecycle hook. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 InstanceId => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The ID of the instance. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 B<REQUIRED> LifecycleActionResult => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
The action for the group to take. This parameter can be either |
55
|
|
|
|
|
|
|
C<CONTINUE> or C<ABANDON>. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head2 LifecycleActionToken => Str |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
A universally unique identifier (UUID) that identifies a specific |
62
|
|
|
|
|
|
|
lifecycle action associated with an instance. Auto Scaling sends this |
63
|
|
|
|
|
|
|
token to the notification target you specified when you created the |
64
|
|
|
|
|
|
|
lifecycle hook. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head2 B<REQUIRED> LifecycleHookName => Str |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
The name of the lifecycle hook. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head1 SEE ALSO |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method CompleteLifecycleAction in L<Paws::AutoScaling> |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=cut |
86
|
|
|
|
|
|
|
|