#[non_exhaustive]pub struct DisableRuleInput {
pub name: Option<String>,
pub event_bus_name: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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.
Implementations§
source§impl DisableRuleInput
impl DisableRuleInput
sourcepub fn builder() -> DisableRuleInputBuilder
pub fn builder() -> DisableRuleInputBuilder
Creates a new builder-style object to manufacture DisableRuleInput.
Trait Implementations§
source§impl Clone for DisableRuleInput
impl Clone for DisableRuleInput
source§fn clone(&self) -> DisableRuleInput
fn clone(&self) -> DisableRuleInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DisableRuleInput
impl Debug for DisableRuleInput
source§impl PartialEq for DisableRuleInput
impl PartialEq for DisableRuleInput
source§fn eq(&self, other: &DisableRuleInput) -> bool
fn eq(&self, other: &DisableRuleInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DisableRuleInput
Auto Trait Implementations§
impl Freeze for DisableRuleInput
impl RefUnwindSafe for DisableRuleInput
impl Send for DisableRuleInput
impl Sync for DisableRuleInput
impl Unpin for DisableRuleInput
impl UnwindSafe for DisableRuleInput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.