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>,
}Expand description
Represents an export task.
Fields§
§destination: Option<String>The name of Amazon S3 bucket to which the log data was exported.
destination_prefix: Option<String>The prefix that was used as the start of Amazon S3 key for every object exported.
execution_info: Option<ExportTaskExecutionInfo>Execution info about the export task.
from: Option<i64>The start time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp before this time are not exported.
log_group_name: Option<String>The name of the log group from which logs data was exported.
status: Option<ExportTaskStatus>The status of the export task.
task_id: Option<String>The ID of the export task.
task_name: Option<String>The name of the export task.
to: Option<i64>The end time, 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§
Source§impl Clone for ExportTask
impl Clone for ExportTask
Source§fn clone(&self) -> ExportTask
fn clone(&self) -> ExportTask
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExportTask
impl Debug for ExportTask
Source§impl Default for ExportTask
impl Default for ExportTask
Source§fn default() -> ExportTask
fn default() -> ExportTask
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportTask
impl<'de> Deserialize<'de> for ExportTask
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExportTask
impl PartialEq for ExportTask
impl StructuralPartialEq for ExportTask
Auto Trait Implementations§
impl Freeze for ExportTask
impl RefUnwindSafe for ExportTask
impl Send for ExportTask
impl Sync for ExportTask
impl Unpin for ExportTask
impl UnwindSafe for ExportTask
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more