CloudWatchClient

Trait CloudWatchClient 

Source
pub trait CloudWatchClient {
    // Required method
    fn put_logs<'life0, 'async_trait>(
        &'life0 self,
        dest: LogDestination,
        logs: Vec<LogEvent>,
    ) -> Pin<Box<dyn Future<Output = Result<(), PutLogsError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Trait that abstracts API call using the SDK.

Required Methods§

Source

fn put_logs<'life0, 'async_trait>( &'life0 self, dest: LogDestination, logs: Vec<LogEvent>, ) -> Pin<Box<dyn Future<Output = Result<(), PutLogsError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§