Struct aws_sdk_ec2::model::ConversionTask [−][src]
#[non_exhaustive]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<ConversionTaskState>,
pub status_message: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes a conversion task.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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<ConversionTaskState>
The state of the conversion task.
status_message: Option<String>
The status message related to the conversion task.
Any tags assigned to the task.
Implementations
The ID of the conversion task.
The time when the task expires. If the upload isn't complete before the expiration time, we automatically cancel the task.
If the task is for importing an instance, this contains information about the import instance task.
If the task is for importing a volume, this contains information about the import volume task.
The state of the conversion task.
The status message related to the conversion task.
Any tags assigned to the task.
Creates a new builder-style object to manufacture ConversionTask
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ConversionTask
impl Send for ConversionTask
impl Sync for ConversionTask
impl Unpin for ConversionTask
impl UnwindSafe for ConversionTask
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more