File Coverage

blib/lib/Paws/AutoScaling/ProcessType.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Paws::AutoScaling::ProcessType;
2 1     1   463 use Moose;
  1     1   3  
  1         8  
  1         547  
  1         3  
  1         8  
3             has ProcessName => (is => 'ro', isa => 'Str', required => 1);
4             1;
5              
6             ### main pod documentation begin ###
7              
8             =head1 NAME
9              
10             Paws::AutoScaling::ProcessType
11              
12             =head1 USAGE
13              
14             This class represents one of two things:
15              
16             =head3 Arguments in a call to a service
17              
18             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
19             Each attribute should be used as a named argument in the calls that expect this type of object.
20              
21             As an example, if Att1 is expected to be a Paws::AutoScaling::ProcessType object:
22              
23             $service_obj->Method(Att1 => { ProcessName => $value, ..., ProcessName => $value });
24              
25             =head3 Results returned from an API call
26              
27             Use accessors for each attribute. If Att1 is expected to be an Paws::AutoScaling::ProcessType object:
28              
29             $result = $service_obj->Method(...);
30             $result->Att1->ProcessName
31              
32             =head1 DESCRIPTION
33              
34             Describes a process type.
35              
36             For more information, see Auto Scaling Processes in the I<Auto Scaling
37             User Guide>.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 B<REQUIRED> ProcessName => Str
43              
44             One of the following processes:
45              
46             =over
47              
48             =item *
49              
50             C<Launch>
51              
52             =item *
53              
54             C<Terminate>
55              
56             =item *
57              
58             C<AddToLoadBalancer>
59              
60             =item *
61              
62             C<AlarmNotification>
63              
64             =item *
65              
66             C<AZRebalance>
67              
68             =item *
69              
70             C<HealthCheck>
71              
72             =item *
73              
74             C<ReplaceUnhealthy>
75              
76             =item *
77              
78             C<ScheduledActions>
79              
80             =back
81              
82              
83              
84              
85             =head1 SEE ALSO
86              
87             This class forms part of L<Paws>, describing an object used in L<Paws::AutoScaling>
88              
89             =head1 BUGS and CONTRIBUTIONS
90              
91             The source code is located here: https://github.com/pplu/aws-sdk-perl
92              
93             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
94              
95             =cut
96