pub struct ExportImageResult {
pub description: Option<String>,
pub disk_image_format: Option<String>,
pub export_image_task_id: Option<String>,
pub image_id: Option<String>,
pub progress: Option<String>,
pub role_name: Option<String>,
pub s3_export_location: Option<ExportTaskS3Location>,
pub status: Option<String>,
pub status_message: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Fields§
§description: Option<String>
A description of the image being exported.
disk_image_format: Option<String>
The disk image format for the exported image.
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.
role_name: Option<String>
The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.
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 export image task.
Trait Implementations§
Source§impl Clone for ExportImageResult
impl Clone for ExportImageResult
Source§fn clone(&self) -> ExportImageResult
fn clone(&self) -> ExportImageResult
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 ExportImageResult
impl Debug for ExportImageResult
Source§impl Default for ExportImageResult
impl Default for ExportImageResult
Source§fn default() -> ExportImageResult
fn default() -> ExportImageResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExportImageResult
impl PartialEq for ExportImageResult
impl StructuralPartialEq for ExportImageResult
Auto Trait Implementations§
impl Freeze for ExportImageResult
impl RefUnwindSafe for ExportImageResult
impl Send for ExportImageResult
impl Sync for ExportImageResult
impl Unpin for ExportImageResult
impl UnwindSafe for ExportImageResult
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