[][src]Struct rusoto_lightsail::InstanceSnapshotInfo

pub struct InstanceSnapshotInfo {
    pub from_blueprint_id: Option<String>,
    pub from_bundle_id: Option<String>,
    pub from_disk_info: Option<Vec<DiskInfo>>,
}

Describes an instance snapshot.

Fields

from_blueprint_id: Option<String>

The blueprint ID from which the source instance (e.g., os_debian_8_3).

from_bundle_id: Option<String>

The bundle ID from which the source instance was created (e.g., micro_1_0).

from_disk_info: Option<Vec<DiskInfo>>

A list of objects describing the disks that were attached to the source instance.

Trait Implementations

impl Clone for InstanceSnapshotInfo[src]

impl Debug for InstanceSnapshotInfo[src]

impl Default for InstanceSnapshotInfo[src]

impl<'de> Deserialize<'de> for InstanceSnapshotInfo[src]

impl PartialEq<InstanceSnapshotInfo> for InstanceSnapshotInfo[src]

impl StructuralPartialEq for InstanceSnapshotInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.