[−][src]Struct rusoto_logs::CreateExportTaskRequest
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]
fn eq(&self, other: &CreateExportTaskRequest) -> bool
[src]
fn ne(&self, other: &CreateExportTaskRequest) -> bool
[src]
impl Default for CreateExportTaskRequest
[src]
fn default() -> CreateExportTaskRequest
[src]
impl Clone for CreateExportTaskRequest
[src]
fn clone(&self) -> 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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self