pub struct CreateEventBusOutput {
pub event_bus_arn: Option<String>,
pub description: Option<String>,
pub dead_letter_config: Option<DeadLetterConfig>,
pub kms_key_identifier: Option<String>,
}Expand description
Output for the CreateEventBus operation.
Fields§
§event_bus_arn: Option<String>The ARN of the new event bus.
description: Option<String>The description of the event bus.
dead_letter_config: Option<DeadLetterConfig>The dead-letter queue configuration.
kms_key_identifier: Option<String>The KMS key identifier for encryption.
Trait Implementations§
Source§impl Clone for CreateEventBusOutput
impl Clone for CreateEventBusOutput
Source§fn clone(&self) -> CreateEventBusOutput
fn clone(&self) -> CreateEventBusOutput
Returns a duplicate 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 CreateEventBusOutput
impl Debug for CreateEventBusOutput
Source§impl Default for CreateEventBusOutput
impl Default for CreateEventBusOutput
Source§fn default() -> CreateEventBusOutput
fn default() -> CreateEventBusOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateEventBusOutput
impl<'de> Deserialize<'de> for CreateEventBusOutput
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 CreateEventBusOutput
impl RefUnwindSafe for CreateEventBusOutput
impl Send for CreateEventBusOutput
impl Sync for CreateEventBusOutput
impl Unpin for CreateEventBusOutput
impl UnsafeUnpin for CreateEventBusOutput
impl UnwindSafe for CreateEventBusOutput
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