pub struct BundleTask {
pub bundle_id: Option<String>,
pub bundle_task_error: Option<BundleTaskError>,
pub instance_id: Option<String>,
pub progress: Option<String>,
pub start_time: Option<String>,
pub state: Option<String>,
pub storage: Option<Storage>,
pub update_time: Option<String>,
}
Expand description
Describes a bundle task.
Fields§
§bundle_id: Option<String>
The ID of the bundle task.
bundle_task_error: Option<BundleTaskError>
If the task fails, a description of the error.
instance_id: Option<String>
The ID of the instance associated with this bundle task.
progress: Option<String>
The level of task completion, as a percent (for example, 20%).
start_time: Option<String>
The time this task started.
state: Option<String>
The state of the task.
storage: Option<Storage>
The Amazon S3 storage locations.
update_time: Option<String>
The time of the most recent update for the task.
Trait Implementations§
Source§impl Clone for BundleTask
impl Clone for BundleTask
Source§fn clone(&self) -> BundleTask
fn clone(&self) -> BundleTask
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 BundleTask
impl Debug for BundleTask
Source§impl Default for BundleTask
impl Default for BundleTask
Source§fn default() -> BundleTask
fn default() -> BundleTask
Returns the “default value” for a type. Read more
Source§impl PartialEq for BundleTask
impl PartialEq for BundleTask
impl StructuralPartialEq for BundleTask
Auto Trait Implementations§
impl !Freeze for BundleTask
impl RefUnwindSafe for BundleTask
impl Send for BundleTask
impl Sync for BundleTask
impl Unpin for BundleTask
impl UnwindSafe for BundleTask
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