pub struct LogSubscription {
pub directory_id: Option<String>,
pub log_group_name: Option<String>,
pub subscription_created_date_time: Option<f64>,
}
Expand description
Represents a log subscription, which tracks real-time data from a chosen log group to a specified destination.
Fields§
§directory_id: Option<String>
Identifier (ID) of the directory that you want to associate with the log subscription.
log_group_name: Option<String>
The name of the log group.
subscription_created_date_time: Option<f64>
The date and time that the log subscription was created.
Trait Implementations§
Source§impl Clone for LogSubscription
impl Clone for LogSubscription
Source§fn clone(&self) -> LogSubscription
fn clone(&self) -> LogSubscription
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 LogSubscription
impl Debug for LogSubscription
Source§impl Default for LogSubscription
impl Default for LogSubscription
Source§fn default() -> LogSubscription
fn default() -> LogSubscription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogSubscription
impl<'de> Deserialize<'de> for LogSubscription
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 LogSubscription
impl PartialEq for LogSubscription
impl StructuralPartialEq for LogSubscription
Auto Trait Implementations§
impl Freeze for LogSubscription
impl RefUnwindSafe for LogSubscription
impl Send for LogSubscription
impl Sync for LogSubscription
impl Unpin for LogSubscription
impl UnwindSafe for LogSubscription
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