line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudWatchEvents::DescribeRuleResponse; |
3
|
1
|
|
|
1
|
|
400
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has Arn => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has EventPattern => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has RoleArn => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has ScheduleExpression => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has State => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
### main pod documentation begin ### |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Paws::CloudWatchEvents::DescribeRuleResponse |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 Arn => Str |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the rule. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 Description => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
The description of the rule. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 EventPattern => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
The event pattern. For more information, see Events and Event Patterns |
36
|
|
|
|
|
|
|
in the I<Amazon CloudWatch Events User Guide>. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 Name => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The name of the rule. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 RoleArn => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the IAM role associated with the |
47
|
|
|
|
|
|
|
rule. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 ScheduleExpression => Str |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The scheduling expression. For example, "cron(0 20 * * ? *)", "rate(5 |
53
|
|
|
|
|
|
|
minutes)". |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 State => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
Specifies whether the rule is enabled or disabled. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Valid values are: C<"ENABLED">, C<"DISABLED"> |
61
|
|
|
|
|
|
|
=head2 _request_id => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
1; |