Struct aws_sdk_ec2::model::ReplaceRootVolumeTask [−][src]
#[non_exhaustive]pub struct ReplaceRootVolumeTask {
pub replace_root_volume_task_id: Option<String>,
pub instance_id: Option<String>,
pub task_state: Option<ReplaceRootVolumeTaskState>,
pub start_time: Option<String>,
pub complete_time: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Information about a root volume replacement 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.replace_root_volume_task_id: Option<String>
The ID of the root volume replacement task.
instance_id: Option<String>
The ID of the instance for which the root volume replacement task was created.
task_state: Option<ReplaceRootVolumeTaskState>
The state of the task. The task can be in one of the following states:
-
pending
- the replacement volume is being created. -
in-progress
- the original volume is being detached and the replacement volume is being attached. -
succeeded
- the replacement volume has been successfully attached to the instance and the instance is available. -
failing
- the replacement task is in the process of failing. -
failed
- the replacement task has failed but the original root volume is still attached. -
failing-detached
- the replacement task is in the process of failing. The instance might have no root volume attached. -
failed-detached
- the replacement task has failed and the instance has no root volume attached.
start_time: Option<String>
The time the task was started.
complete_time: Option<String>
The time the task completed.
The tags assigned to the task.
Implementations
The ID of the root volume replacement task.
The ID of the instance for which the root volume replacement task was created.
The state of the task. The task can be in one of the following states:
-
pending
- the replacement volume is being created. -
in-progress
- the original volume is being detached and the replacement volume is being attached. -
succeeded
- the replacement volume has been successfully attached to the instance and the instance is available. -
failing
- the replacement task is in the process of failing. -
failed
- the replacement task has failed but the original root volume is still attached. -
failing-detached
- the replacement task is in the process of failing. The instance might have no root volume attached. -
failed-detached
- the replacement task has failed and the instance has no root volume attached.
The time the task was started.
The time the task completed.
The tags assigned to the task.
Creates a new builder-style object to manufacture ReplaceRootVolumeTask
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 ReplaceRootVolumeTask
impl Send for ReplaceRootVolumeTask
impl Sync for ReplaceRootVolumeTask
impl Unpin for ReplaceRootVolumeTask
impl UnwindSafe for ReplaceRootVolumeTask
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