Struct rusoto_logs::ExportTask[][src]

pub struct ExportTask {
    pub destination: Option<String>,
    pub destination_prefix: Option<String>,
    pub execution_info: Option<ExportTaskExecutionInfo>,
    pub from: Option<i64>,
    pub log_group_name: Option<String>,
    pub status: Option<ExportTaskStatus>,
    pub task_id: Option<String>,
    pub task_name: Option<String>,
    pub to: Option<i64>,
}

Represents an export task.

Fields

The name of Amazon S3 bucket to which the log data was exported.

The prefix that was used as the start of Amazon S3 key for every object exported.

Execution info about the export task.

The start time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a time stamp before this time are not exported.

The name of the log group from which logs data was exported.

The status of the export task.

The ID of the export task.

The name of the export task.

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

Trait Implementations

impl Default for ExportTask
[src]

Returns the "default value" for a type. Read more

impl Debug for ExportTask
[src]

Formats the value using the given formatter. Read more

impl Clone for ExportTask
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ExportTask
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for ExportTask

impl Sync for ExportTask