pub struct ExportTask {
pub task_id: String,
pub task_name: Option<String>,
pub log_group_name: String,
pub log_stream_name_prefix: Option<String>,
pub from_time: i64,
pub to_time: i64,
pub destination: String,
pub destination_prefix: String,
pub status_code: String,
pub status_message: String,
}Fields§
§task_id: String§task_name: Option<String>§log_group_name: String§log_stream_name_prefix: Option<String>§from_time: i64§to_time: i64§destination: String§destination_prefix: String§status_code: String§status_message: StringTrait 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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§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
Auto Trait Implementations§
impl Freeze for ExportTask
impl RefUnwindSafe for ExportTask
impl Send for ExportTask
impl Sync for ExportTask
impl Unpin for ExportTask
impl UnsafeUnpin 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