[][src]Struct rusoto_logs::CreateExportTaskRequest

pub struct CreateExportTaskRequest {
    pub destination: String,
    pub destination_prefix: Option<String>,
    pub from: i64,
    pub log_group_name: String,
    pub log_stream_name_prefix: Option<String>,
    pub task_name: Option<String>,
    pub to: i64,
}

Fields

destination: String

The name of S3 bucket for the exported log data. The bucket must be in the same AWS region.

destination_prefix: Option<String>

The prefix used as the start of the key for every object exported. If you don't specify a value, the default is exportedlogs.

from: i64

The start time of the range for the request, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp earlier than this time are not exported.

log_group_name: String

The name of the log group.

log_stream_name_prefix: Option<String>

Export only log streams that match the provided prefix. If you don't specify a value, no prefix filter is applied.

task_name: Option<String>

The name of the export task.

to: i64

The end time of the range for the request, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp later than this time are not exported.

Trait Implementations

impl PartialEq<CreateExportTaskRequest> for CreateExportTaskRequest[src]

impl Default for CreateExportTaskRequest[src]

impl Clone for CreateExportTaskRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateExportTaskRequest[src]

impl Serialize for CreateExportTaskRequest[src]

Auto Trait Implementations

impl Send for CreateExportTaskRequest

impl Sync for CreateExportTaskRequest

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self