line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::Health::DateTimeRange; |
2
|
1
|
|
|
1
|
|
554
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
8
|
|
3
|
|
|
|
|
|
|
has From => (is => 'ro', isa => 'Str', request_name => 'from', traits => ['NameInRequest']); |
4
|
|
|
|
|
|
|
has To => (is => 'ro', isa => 'Str', request_name => 'to', traits => ['NameInRequest']); |
5
|
|
|
|
|
|
|
1; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
### main pod documentation begin ### |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Paws::Health::DateTimeRange |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 USAGE |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
This class represents one of two things: |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
20
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::Health::DateTimeRange object: |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { From => $value, ..., To => $value }); |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head3 Results returned from an API call |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::Health::DateTimeRange object: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
31
|
|
|
|
|
|
|
$result->Att1->From |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 DESCRIPTION |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
A range of dates and times that is used by the EventFilter and |
36
|
|
|
|
|
|
|
EntityFilter objects. If C<from> is set and C<to> is set: match items |
37
|
|
|
|
|
|
|
where the timestamp (C<startTime>, C<endTime>, or C<lastUpdatedTime>) |
38
|
|
|
|
|
|
|
is between C<from> and C<to> inclusive. If C<from> is set and C<to> is |
39
|
|
|
|
|
|
|
not set: match items where the timestamp value is equal to or after |
40
|
|
|
|
|
|
|
C<from>. If C<from> is not set and C<to> is set: match items where the |
41
|
|
|
|
|
|
|
timestamp value is equal to or before C<to>. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 From => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The starting date and time of a time range. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 To => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The ending date and time of a time range. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 SEE ALSO |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::Health> |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=cut |
68
|
|
|
|
|
|
|
|