pub struct EventTopic {
pub created_date_time: Option<f64>,
pub directory_id: Option<String>,
pub status: Option<String>,
pub topic_arn: Option<String>,
pub topic_name: Option<String>,
}
Expand description
Information about SNS topic and AWS Directory Service directory associations.
Fields§
§created_date_time: Option<f64>
The date and time of when you associated your directory with the SNS topic.
directory_id: Option<String>
The Directory ID of an AWS Directory Service directory that will publish status messages to an SNS topic.
status: Option<String>
The topic registration status.
topic_arn: Option<String>
The SNS topic ARN (Amazon Resource Name).
topic_name: Option<String>
The name of an AWS SNS topic the receives status messages from the directory.
Trait Implementations§
Source§impl Clone for EventTopic
impl Clone for EventTopic
Source§fn clone(&self) -> EventTopic
fn clone(&self) -> EventTopic
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 EventTopic
impl Debug for EventTopic
Source§impl Default for EventTopic
impl Default for EventTopic
Source§fn default() -> EventTopic
fn default() -> EventTopic
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventTopic
impl<'de> Deserialize<'de> for EventTopic
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
Source§impl PartialEq for EventTopic
impl PartialEq for EventTopic
impl StructuralPartialEq for EventTopic
Auto Trait Implementations§
impl Freeze for EventTopic
impl RefUnwindSafe for EventTopic
impl Send for EventTopic
impl Sync for EventTopic
impl Unpin for EventTopic
impl UnwindSafe for EventTopic
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