pub struct ExportImageTask {
pub description: Option<String>,
pub export_image_task_id: Option<String>,
pub image_id: Option<String>,
pub progress: Option<String>,
pub s3_export_location: Option<ExportTaskS3Location>,
pub status: Option<String>,
pub status_message: Option<String>,
pub tags: Option<Vec<Tag>>,
}Expand description
Describes an export image task.
Fields§
§description: Option<String>A description of the image being exported.
export_image_task_id: Option<String>The ID of the export image task.
image_id: Option<String>The ID of the image.
progress: Option<String>The percent complete of the export image task.
s3_export_location: Option<ExportTaskS3Location>Information about the destination Amazon S3 bucket.
status: Option<String>The status of the export image task. The possible values are active, completed, deleting, and deleted.
status_message: Option<String>The status message for the export image task.
Any tags assigned to the image being exported.
Trait Implementations§
Source§impl Clone for ExportImageTask
impl Clone for ExportImageTask
Source§fn clone(&self) -> ExportImageTask
fn clone(&self) -> ExportImageTask
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 ExportImageTask
impl Debug for ExportImageTask
Source§impl Default for ExportImageTask
impl Default for ExportImageTask
Source§fn default() -> ExportImageTask
fn default() -> ExportImageTask
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExportImageTask
impl PartialEq for ExportImageTask
impl StructuralPartialEq for ExportImageTask
Auto Trait Implementations§
impl Freeze for ExportImageTask
impl RefUnwindSafe for ExportImageTask
impl Send for ExportImageTask
impl Sync for ExportImageTask
impl Unpin for ExportImageTask
impl UnwindSafe for ExportImageTask
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