pub struct SnsTopic {
pub topic_arn: String,
pub name: String,
pub attributes: HashMap<String, String>,
pub tags: Vec<(String, String)>,
pub is_fifo: bool,
pub created_at: DateTime<Utc>,
}Fields§
§topic_arn: String§name: String§attributes: HashMap<String, String>§is_fifo: bool§created_at: DateTime<Utc>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SnsTopic
impl RefUnwindSafe for SnsTopic
impl Send for SnsTopic
impl Sync for SnsTopic
impl Unpin for SnsTopic
impl UnsafeUnpin for SnsTopic
impl UnwindSafe for SnsTopic
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