pub struct EventTargetCloudwatchLogs {
pub auth: AWSAuth,
pub log_group_arn: String,
}
Fields§
§auth: AWSAuth
Configuration for how to authenticate into your AWS account. Exactly one of
role
or creds
should be configured.
log_group_arn: String
An Amazon Resource Name specifying the CloudWatch Logs group to deposit events into.
Trait Implementations§
Source§impl Clone for EventTargetCloudwatchLogs
impl Clone for EventTargetCloudwatchLogs
Source§fn clone(&self) -> EventTargetCloudwatchLogs
fn clone(&self) -> EventTargetCloudwatchLogs
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 EventTargetCloudwatchLogs
impl Debug for EventTargetCloudwatchLogs
Source§impl Default for EventTargetCloudwatchLogs
impl Default for EventTargetCloudwatchLogs
Source§fn default() -> EventTargetCloudwatchLogs
fn default() -> EventTargetCloudwatchLogs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventTargetCloudwatchLogs
impl<'de> Deserialize<'de> for EventTargetCloudwatchLogs
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 EventTargetCloudwatchLogs
impl RefUnwindSafe for EventTargetCloudwatchLogs
impl Send for EventTargetCloudwatchLogs
impl Sync for EventTargetCloudwatchLogs
impl Unpin for EventTargetCloudwatchLogs
impl UnwindSafe for EventTargetCloudwatchLogs
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