line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::StorageGateway::DescribeMaintenanceStartTimeOutput; |
3
|
1
|
|
|
1
|
|
569
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has DayOfWeek => (is => 'ro', isa => 'Int'); |
5
|
|
|
|
|
|
|
has GatewayARN => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has HourOfDay => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has MinuteOfHour => (is => 'ro', isa => 'Int'); |
8
|
|
|
|
|
|
|
has Timezone => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::StorageGateway::DescribeMaintenanceStartTimeOutput |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 DayOfWeek => Int |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
An ordinal number between 0 and 6 that represents the day of the week, |
24
|
|
|
|
|
|
|
where 0 represents Sunday and 6 represents Saturday. The day of week is |
25
|
|
|
|
|
|
|
in the time zone of the gateway. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 GatewayARN => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 HourOfDay => Int |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
The hour component of the maintenance start time represented as I<hh>, |
36
|
|
|
|
|
|
|
where I<hh> is the hour (0 to 23). The hour of the day is in the time |
37
|
|
|
|
|
|
|
zone of the gateway. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 MinuteOfHour => Int |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The minute component of the maintenance start time represented as |
43
|
|
|
|
|
|
|
I<mm>, where I<mm> is the minute (0 to 59). The minute of the hour is |
44
|
|
|
|
|
|
|
in the time zone of the gateway. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 Timezone => Str |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 _request_id => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
1; |