[][src]Struct rusoto_ec2::ImageDiskContainer

pub struct ImageDiskContainer {
    pub description: Option<String>,
    pub device_name: Option<String>,
    pub format: Option<String>,
    pub snapshot_id: Option<String>,
    pub url: Option<String>,
    pub user_bucket: Option<UserBucket>,
}

Describes the disk container object for an import image task.

Fields

description: Option<String>

The description of the disk image.

device_name: Option<String>

The block device mapping for the disk.

format: Option<String>

The format of the disk image being imported.

Valid values: OVA | VHD | VHDX |VMDK

snapshot_id: Option<String>

The ID of the EBS snapshot to be used for importing the snapshot.

url: Option<String>

The URL to the Amazon S3-based disk image being imported. The URL can either be a https URL (https://..) or an Amazon S3 URL (s3://..)

user_bucket: Option<UserBucket>

The S3 bucket for the disk image.

Trait Implementations

impl Clone for ImageDiskContainer[src]

impl Debug for ImageDiskContainer[src]

impl Default for ImageDiskContainer[src]

impl PartialEq<ImageDiskContainer> for ImageDiskContainer[src]

impl StructuralPartialEq for ImageDiskContainer[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.