pub struct EventBus {
pub name: String,
pub arn: String,
pub tags: BTreeMap<String, String>,
pub policy: Option<Value>,
pub description: Option<String>,
pub kms_key_identifier: Option<String>,
pub dead_letter_config: Option<Value>,
pub creation_time: DateTime<Utc>,
pub last_modified_time: DateTime<Utc>,
}Fields§
§name: String§arn: String§policy: Option<Value>§description: Option<String>§kms_key_identifier: Option<String>§dead_letter_config: Option<Value>§creation_time: DateTime<Utc>§last_modified_time: DateTime<Utc>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