pub struct EventBus {
pub name: String,
pub arn: String,
pub tags: HashMap<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§
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