pub struct UpdateEventBusOutput {
pub arn: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub dead_letter_config: Option<DeadLetterConfig>,
pub kms_key_identifier: Option<String>,
}Expand description
Output for the UpdateEventBus operation.
Fields§
§arn: Option<String>The ARN of the updated event bus.
name: Option<String>The name of the updated event bus.
description: Option<String>The description of the updated 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 UpdateEventBusOutput
impl Clone for UpdateEventBusOutput
Source§fn clone(&self) -> UpdateEventBusOutput
fn clone(&self) -> UpdateEventBusOutput
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 UpdateEventBusOutput
impl Debug for UpdateEventBusOutput
Source§impl Default for UpdateEventBusOutput
impl Default for UpdateEventBusOutput
Source§fn default() -> UpdateEventBusOutput
fn default() -> UpdateEventBusOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateEventBusOutput
impl<'de> Deserialize<'de> for UpdateEventBusOutput
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 UpdateEventBusOutput
impl RefUnwindSafe for UpdateEventBusOutput
impl Send for UpdateEventBusOutput
impl Sync for UpdateEventBusOutput
impl Unpin for UpdateEventBusOutput
impl UnsafeUnpin for UpdateEventBusOutput
impl UnwindSafe for UpdateEventBusOutput
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