pub struct EventTarget {
pub firehose: Option<EventTargetFirehose>,
pub kinesis: Option<EventTargetKinesis>,
pub cloudwatch_logs: Option<EventTargetCloudwatchLogs>,
pub datadog: Option<EventTargetDatadog>,
pub azure_logs_ingestion: Option<EventTargetAzureLogsIngestion>,
}
Fields§
§firehose: Option<EventTargetFirehose>
Configuration used to send events to Amazon Kinesis Data Firehose.
kinesis: Option<EventTargetKinesis>
Configuration used to send events to Amazon Kinesis.
cloudwatch_logs: Option<EventTargetCloudwatchLogs>
Configuration used to send events to Amazon CloudWatch Logs.
datadog: Option<EventTargetDatadog>
Configuration used to send events to Datadog.
azure_logs_ingestion: Option<EventTargetAzureLogsIngestion>
Trait Implementations§
Source§impl Clone for EventTarget
impl Clone for EventTarget
Source§fn clone(&self) -> EventTarget
fn clone(&self) -> EventTarget
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 EventTarget
impl Debug for EventTarget
Source§impl Default for EventTarget
impl Default for EventTarget
Source§fn default() -> EventTarget
fn default() -> EventTarget
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventTarget
impl<'de> Deserialize<'de> for EventTarget
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 EventTarget
impl RefUnwindSafe for EventTarget
impl Send for EventTarget
impl Sync for EventTarget
impl Unpin for EventTarget
impl UnwindSafe for EventTarget
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