pub struct EventBus {
pub name: Option<String>,
pub arn: Option<String>,
pub description: Option<String>,
pub policy: Option<String>,
}Expand description
An event bus returned by ListEventBuses.
Fields§
§name: Option<String>The name of the event bus.
arn: Option<String>The ARN of the event bus.
description: Option<String>The description of the event bus.
policy: Option<String>The policy for the event bus.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EventBus
impl<'de> Deserialize<'de> for EventBus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EventBus
impl RefUnwindSafe for EventBus
impl Send for EventBus
impl Sync for EventBus
impl Unpin for EventBus
impl UnsafeUnpin for EventBus
impl UnwindSafe for EventBus
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