The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Moose;
has Arn => (is => 'ro', isa => 'Str');
has Description => (is => 'ro', isa => 'Str');
has EventPattern => (is => 'ro', isa => 'Str');
has Name => (is => 'ro', isa => 'Str');
has RoleArn => (is => 'ro', isa => 'Str');
has ScheduleExpression => (is => 'ro', isa => 'Str');
has State => (is => 'ro', isa => 'Str');
### main pod documentation begin ###
=head1 NAME
Paws::CloudWatchEvents::DescribeRuleResponse
=head1 ATTRIBUTES
=head2 Arn => Str
The Amazon Resource Name (ARN) associated with the rule.
=head2 Description => Str
The rule's description.
=head2 EventPattern => Str
The event pattern.
=head2 Name => Str
The rule's name.
=head2 RoleArn => Str
The Amazon Resource Name (ARN) of the IAM role associated with the
rule.
=head2 ScheduleExpression => Str
The scheduling expression. For example, "cron(0 20 * * ? *)", "rate(5
minutes)".
=head2 State => Str
Specifies whether the rule is enabled or disabled.
Valid values are: C<"ENABLED">, C<"DISABLED">
=cut
1;