pub struct DiskImageDetail {
pub bytes: i64,
pub format: String,
pub import_manifest_url: String,
}
Expand description
Describes a disk image.
Fields§
§bytes: i64
The size of the disk image, in GiB.
format: String
The disk image format.
import_manifest_url: String
A presigned URL for the import manifest stored in Amazon S3 and presented here as an Amazon S3 presigned URL. For information about creating a presigned URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.
For information about the import manifest referenced by this API action, see VM Import Manifest.
Trait Implementations§
Source§impl Clone for DiskImageDetail
impl Clone for DiskImageDetail
Source§fn clone(&self) -> DiskImageDetail
fn clone(&self) -> DiskImageDetail
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 DiskImageDetail
impl Debug for DiskImageDetail
Source§impl Default for DiskImageDetail
impl Default for DiskImageDetail
Source§fn default() -> DiskImageDetail
fn default() -> DiskImageDetail
Returns the “default value” for a type. Read more
Source§impl PartialEq for DiskImageDetail
impl PartialEq for DiskImageDetail
impl StructuralPartialEq for DiskImageDetail
Auto Trait Implementations§
impl Freeze for DiskImageDetail
impl RefUnwindSafe for DiskImageDetail
impl Send for DiskImageDetail
impl Sync for DiskImageDetail
impl Unpin for DiskImageDetail
impl UnwindSafe for DiskImageDetail
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