Struct aws_sdk_eventbridge::types::Rule
source · #[non_exhaustive]pub struct Rule {
pub name: Option<String>,
pub arn: Option<String>,
pub event_pattern: Option<String>,
pub state: Option<RuleState>,
pub description: Option<String>,
pub schedule_expression: Option<String>,
pub role_arn: Option<String>,
pub managed_by: Option<String>,
pub event_bus_name: Option<String>,
}
Expand description
Contains information about a rule in Amazon EventBridge.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the rule.
arn: Option<String>
The Amazon Resource Name (ARN) of the rule.
event_pattern: Option<String>
The event pattern of the rule. For more information, see Events and Event Patterns in the Amazon EventBridge User Guide.
state: Option<RuleState>
The state of the rule.
description: Option<String>
The description of the rule.
schedule_expression: Option<String>
The scheduling expression. For example, "cron(0 20 * * ? *)", "rate(5 minutes)". For more information, see Creating an Amazon EventBridge rule that runs on a schedule.
role_arn: Option<String>
The Amazon Resource Name (ARN) of the role that is used for target invocation.
If you're setting an event bus in another account as the target and that account granted permission to your account through an organization instead of directly by the account ID, you must specify a RoleArn
with proper permissions in the Target
structure, instead of here in this parameter.
managed_by: Option<String>
If the rule was created on behalf of your account by an Amazon Web Services service, this field displays the principal name of the service that created the rule.
event_bus_name: Option<String>
The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.
Implementations§
source§impl Rule
impl Rule
sourcepub fn event_pattern(&self) -> Option<&str>
pub fn event_pattern(&self) -> Option<&str>
The event pattern of the rule. For more information, see Events and Event Patterns in the Amazon EventBridge User Guide.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the rule.
sourcepub fn schedule_expression(&self) -> Option<&str>
pub fn schedule_expression(&self) -> Option<&str>
The scheduling expression. For example, "cron(0 20 * * ? *)", "rate(5 minutes)". For more information, see Creating an Amazon EventBridge rule that runs on a schedule.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the role that is used for target invocation.
If you're setting an event bus in another account as the target and that account granted permission to your account through an organization instead of directly by the account ID, you must specify a RoleArn
with proper permissions in the Target
structure, instead of here in this parameter.
sourcepub fn managed_by(&self) -> Option<&str>
pub fn managed_by(&self) -> Option<&str>
If the rule was created on behalf of your account by an Amazon Web Services service, this field displays the principal name of the service that created the rule.
sourcepub fn event_bus_name(&self) -> Option<&str>
pub fn event_bus_name(&self) -> Option<&str>
The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.
Trait Implementations§
source§impl PartialEq for Rule
impl PartialEq for Rule
impl StructuralPartialEq for Rule
Auto Trait Implementations§
impl Freeze for Rule
impl RefUnwindSafe for Rule
impl Send for Rule
impl Sync for Rule
impl Unpin for Rule
impl UnwindSafe for Rule
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more