pub struct SnapshotDiskContainer {
pub description: Option<String>,
pub format: Option<String>,
pub url: Option<String>,
pub user_bucket: Option<UserBucket>,
}Expand description
The disk container object for the import snapshot request.
Fields§
§description: Option<String>The description of the disk image being imported.
format: Option<String>The format of the disk image being imported.
Valid values: VHD | VMDK
url: Option<String>The URL to the Amazon S3-based disk image being imported. It can either be a https URL (https://..) or an Amazon S3 URL (s3://..).
user_bucket: Option<UserBucket>The Amazon S3 bucket for the disk image.
Trait Implementations§
Source§impl Clone for SnapshotDiskContainer
impl Clone for SnapshotDiskContainer
Source§fn clone(&self) -> SnapshotDiskContainer
fn clone(&self) -> SnapshotDiskContainer
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 SnapshotDiskContainer
impl Debug for SnapshotDiskContainer
Source§impl Default for SnapshotDiskContainer
impl Default for SnapshotDiskContainer
Source§fn default() -> SnapshotDiskContainer
fn default() -> SnapshotDiskContainer
Returns the “default value” for a type. Read more
Source§impl PartialEq for SnapshotDiskContainer
impl PartialEq for SnapshotDiskContainer
impl StructuralPartialEq for SnapshotDiskContainer
Auto Trait Implementations§
impl Freeze for SnapshotDiskContainer
impl RefUnwindSafe for SnapshotDiskContainer
impl Send for SnapshotDiskContainer
impl Sync for SnapshotDiskContainer
impl Unpin for SnapshotDiskContainer
impl UnwindSafe for SnapshotDiskContainer
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