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 since Jan 1, 1970 00:00:00 UTC. Events with a timestamp prior to 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 since Jan 1, 1970 00:00:00 UTC. Events with a timestamp 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.

impl Clone for ExportTask
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more