File Coverage

blib/lib/Paws/AutoScaling/DescribeScheduledActions.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::AutoScaling::DescribeScheduledActions;
3 1     1   490 use Moose;
  1     1   2  
  1         7  
  1         539  
  1         3  
  1         9  
4             has AutoScalingGroupName => (is => 'ro', isa => 'Str');
5             has EndTime => (is => 'ro', isa => 'Str');
6             has MaxRecords => (is => 'ro', isa => 'Int');
7             has NextToken => (is => 'ro', isa => 'Str');
8             has ScheduledActionNames => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
9             has StartTime => (is => 'ro', isa => 'Str');
10              
11 1     1   6543 use MooseX::ClassAttribute;
  1     1   2  
  1         8  
  1         7654  
  1         3  
  1         7  
12              
13             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeScheduledActions');
14             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::AutoScaling::ScheduledActionsType');
15             class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeScheduledActionsResult');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::AutoScaling::DescribeScheduledActions - Arguments for method DescribeScheduledActions on Paws::AutoScaling
23              
24             =head1 DESCRIPTION
25              
26             This class represents the parameters used for calling the method DescribeScheduledActions on the
27             Auto Scaling service. Use the attributes of this class
28             as arguments to method DescribeScheduledActions.
29              
30             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeScheduledActions.
31              
32             As an example:
33              
34             $service_obj->DescribeScheduledActions(Att1 => $value1, Att2 => $value2, ...);
35              
36             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.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 AutoScalingGroupName => Str
42              
43             The name of the group.
44              
45              
46              
47             =head2 EndTime => Str
48              
49             The latest scheduled start time to return. If scheduled action names
50             are provided, this parameter is ignored.
51              
52              
53              
54             =head2 MaxRecords => Int
55              
56             The maximum number of items to return with this call. The default value
57             is 50 and the maximum value is 100.
58              
59              
60              
61             =head2 NextToken => Str
62              
63             The token for the next set of items to return. (You received this token
64             from a previous call.)
65              
66              
67              
68             =head2 ScheduledActionNames => ArrayRef[Str|Undef]
69              
70             Describes one or more scheduled actions. If you omit this parameter,
71             all scheduled actions are described. If you specify an unknown
72             scheduled action, it is ignored with no error.
73              
74             You can describe up to a maximum of 50 instances with a single call. If
75             there are more items to return, the call returns a token. To get the
76             next set of items, repeat the call with the returned token.
77              
78              
79              
80             =head2 StartTime => Str
81              
82             The earliest scheduled start time to return. If scheduled action names
83             are provided, this parameter is ignored.
84              
85              
86              
87              
88             =head1 SEE ALSO
89              
90             This class forms part of L<Paws>, documenting arguments for method DescribeScheduledActions in L<Paws::AutoScaling>
91              
92             =head1 BUGS and CONTRIBUTIONS
93              
94             The source code is located here: https://github.com/pplu/aws-sdk-perl
95              
96             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
97              
98             =cut
99