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