pub struct ConversionTask {
pub conversion_task_id: Option<String>,
pub expiration_time: Option<String>,
pub import_instance: Option<ImportInstanceTaskDetails>,
pub import_volume: Option<ImportVolumeTaskDetails>,
pub state: Option<String>,
pub status_message: Option<String>,
pub tags: Option<Vec<Tag>>,
}Expand description
Describes a conversion task.
Fields§
§conversion_task_id: Option<String>The ID of the conversion task.
expiration_time: Option<String>The time when the task expires. If the upload isn't complete before the expiration time, we automatically cancel the task.
import_instance: Option<ImportInstanceTaskDetails>If the task is for importing an instance, this contains information about the import instance task.
import_volume: Option<ImportVolumeTaskDetails>If the task is for importing a volume, this contains information about the import volume task.
state: Option<String>The state of the conversion task.
status_message: Option<String>The status message related to the conversion task.
Any tags assigned to the task.
Trait Implementations§
Source§impl Clone for ConversionTask
impl Clone for ConversionTask
Source§fn clone(&self) -> ConversionTask
fn clone(&self) -> ConversionTask
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 ConversionTask
impl Debug for ConversionTask
Source§impl Default for ConversionTask
impl Default for ConversionTask
Source§fn default() -> ConversionTask
fn default() -> ConversionTask
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConversionTask
impl PartialEq for ConversionTask
impl StructuralPartialEq for ConversionTask
Auto Trait Implementations§
impl Freeze for ConversionTask
impl RefUnwindSafe for ConversionTask
impl Send for ConversionTask
impl Sync for ConversionTask
impl Unpin for ConversionTask
impl UnwindSafe for ConversionTask
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