Struct aws_sdk_eventbridge::operation::delete_rule::DeleteRuleInput
source · #[non_exhaustive]pub struct DeleteRuleInput {
pub name: Option<String>,
pub event_bus_name: Option<String>,
pub force: Option<bool>,
}
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.
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.
force: Option<bool>
If this is a managed rule, created by an Amazon Web Services service on your behalf, you must specify Force
as True
to delete the rule. This parameter is ignored for rules that are not managed rules. You can check whether a rule is a managed rule by using DescribeRule
or ListRules
and checking the ManagedBy
field of the response.
Implementations§
source§impl DeleteRuleInput
impl DeleteRuleInput
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.
sourcepub fn force(&self) -> Option<bool>
pub fn force(&self) -> Option<bool>
If this is a managed rule, created by an Amazon Web Services service on your behalf, you must specify Force
as True
to delete the rule. This parameter is ignored for rules that are not managed rules. You can check whether a rule is a managed rule by using DescribeRule
or ListRules
and checking the ManagedBy
field of the response.
source§impl DeleteRuleInput
impl DeleteRuleInput
sourcepub fn builder() -> DeleteRuleInputBuilder
pub fn builder() -> DeleteRuleInputBuilder
Creates a new builder-style object to manufacture DeleteRuleInput
.
Trait Implementations§
source§impl Clone for DeleteRuleInput
impl Clone for DeleteRuleInput
source§fn clone(&self) -> DeleteRuleInput
fn clone(&self) -> DeleteRuleInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteRuleInput
impl Debug for DeleteRuleInput
source§impl PartialEq for DeleteRuleInput
impl PartialEq for DeleteRuleInput
source§fn eq(&self, other: &DeleteRuleInput) -> bool
fn eq(&self, other: &DeleteRuleInput) -> bool
self
and other
values to be equal, and is used
by ==
.