Struct rusoto_logs::CreateExportTaskRequest[][src]

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

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

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

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 time stamp earlier than this time are not exported.

The name of the log group.

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

The name of the export task.

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 time stamp later than this time are not exported.

Trait Implementations

impl Default for CreateExportTaskRequest
[src]

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

impl Debug for CreateExportTaskRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateExportTaskRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateExportTaskRequest
[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