line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::GameLift::DescribeFleetEvents; |
3
|
1
|
|
|
1
|
|
445
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has EndTime => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has FleetId => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has Limit => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has StartTime => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
5847
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeFleetEvents'); |
13
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::GameLift::DescribeFleetEventsOutput'); |
14
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
### main pod documentation begin ### |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Paws::GameLift::DescribeFleetEvents - Arguments for method DescribeFleetEvents on Paws::GameLift |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 DESCRIPTION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This class represents the parameters used for calling the method DescribeFleetEvents on the |
26
|
|
|
|
|
|
|
Amazon GameLift service. Use the attributes of this class |
27
|
|
|
|
|
|
|
as arguments to method DescribeFleetEvents. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeFleetEvents. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
As an example: |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
$service_obj->DescribeFleetEvents(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 EndTime => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Most recent date to retrieve event logs for. If no end time is |
43
|
|
|
|
|
|
|
specified, this call returns entries from the specified start time up |
44
|
|
|
|
|
|
|
to the present. Format is a number expressed in Unix time as |
45
|
|
|
|
|
|
|
milliseconds (ex: "1469498468.057"). |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 B<REQUIRED> FleetId => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Unique identifier for a fleet to get event logs for. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 Limit => Int |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
Maximum number of results to return. Use this parameter with |
58
|
|
|
|
|
|
|
C<NextToken> to get results as a set of sequential pages. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 NextToken => Str |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Token that indicates the start of the next sequential page of results. |
65
|
|
|
|
|
|
|
Use the token that is returned with a previous call to this action. To |
66
|
|
|
|
|
|
|
start at the beginning of the result set, do not specify a value. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head2 StartTime => Str |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Earliest date to retrieve event logs for. If no start time is |
73
|
|
|
|
|
|
|
specified, this call returns entries starting from when the fleet was |
74
|
|
|
|
|
|
|
created to the specified end time. Format is a number expressed in Unix |
75
|
|
|
|
|
|
|
time as milliseconds (ex: "1469498468.057"). |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head1 SEE ALSO |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method DescribeFleetEvents in L<Paws::GameLift> |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=cut |
91
|
|
|
|
|
|
|
|