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