line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EC2::DescribeSpotFleetRequestHistoryResponse; |
3
|
1
|
|
|
1
|
|
510
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has HistoryRecords => (is => 'ro', isa => 'ArrayRef[Paws::EC2::HistoryRecord]', request_name => 'historyRecordSet', traits => ['NameInRequest',], required => 1); |
5
|
|
|
|
|
|
|
has LastEvaluatedTime => (is => 'ro', isa => 'Str', request_name => 'lastEvaluatedTime', traits => ['NameInRequest',], required => 1); |
6
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str', request_name => 'nextToken', traits => ['NameInRequest',]); |
7
|
|
|
|
|
|
|
has SpotFleetRequestId => (is => 'ro', isa => 'Str', request_name => 'spotFleetRequestId', traits => ['NameInRequest',], required => 1); |
8
|
|
|
|
|
|
|
has StartTime => (is => 'ro', isa => 'Str', request_name => 'startTime', traits => ['NameInRequest',], required => 1); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::EC2::DescribeSpotFleetRequestHistoryResponse |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 B<REQUIRED> HistoryRecords => ArrayRef[L<Paws::EC2::HistoryRecord>] |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Information about the events in the history of the Spot fleet request. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 B<REQUIRED> LastEvaluatedTime => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The last date and time for the events, in UTC format (for example, |
30
|
|
|
|
|
|
|
I<YYYY>-I<MM>-I<DD>TI<HH>:I<MM>:I<SS>Z). All records up to this time |
31
|
|
|
|
|
|
|
were retrieved. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
If C<nextToken> indicates that there are more results, this value is |
34
|
|
|
|
|
|
|
not present. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 NextToken => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The token required to retrieve the next set of results. This value is |
40
|
|
|
|
|
|
|
C<null> when there are no more results to return. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 B<REQUIRED> SpotFleetRequestId => Str |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The ID of the Spot fleet request. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 B<REQUIRED> StartTime => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The starting date and time for the events, in UTC format (for example, |
51
|
|
|
|
|
|
|
I<YYYY>-I<MM>-I<DD>TI<HH>:I<MM>:I<SS>Z). |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 _request_id => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=cut |
58
|
|
|
|
|
|
|
|