[][src]Struct cloudwatch_logs_upload::BatchUploader

pub struct BatchUploader { /* fields omitted */ }

Main interface for uploading logs in batches to AWS CloudWatch Logs.

This can be safely used from multiple threads by cloning it.

Implementations

impl BatchUploader[src]

pub fn new(client: CloudWatchLogsClient, target: UploadTarget) -> BatchUploader[src]

pub fn add_event(&self, event: InputLogEvent) -> Result<(), Error>[src]

Add a new event.

There are a couple AWS limits not enforced yet:

  • None of the log events in the batch can be more than 2 hours in the future

  • None of the log events in the batch can be older than 14 days or older than the retention period of the log group

pub fn start_background_thread(&self) -> Result<JoinHandle<()>, Error>[src]

Start a background thread for uploading batches of events.

Trait Implementations

impl Clone for BatchUploader[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.