[][src]Struct rusoto_lightsail::AutoSnapshotDetails

pub struct AutoSnapshotDetails {
    pub created_at: Option<f64>,
    pub date: Option<String>,
    pub from_attached_disks: Option<Vec<AttachedDisk>>,
    pub status: Option<String>,
}

Describes an automatic snapshot.

Fields

created_at: Option<f64>

The timestamp when the automatic snapshot was created.

date: Option<String>

The date of the automatic snapshot in YYYY-MM-DD format.

from_attached_disks: Option<Vec<AttachedDisk>>

An array of objects that describe the block storage disks attached to the instance when the automatic snapshot was created.

status: Option<String>

The status of the automatic snapshot.

Trait Implementations

impl Clone for AutoSnapshotDetails[src]

impl Debug for AutoSnapshotDetails[src]

impl Default for AutoSnapshotDetails[src]

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

impl PartialEq<AutoSnapshotDetails> for AutoSnapshotDetails[src]

impl StructuralPartialEq for AutoSnapshotDetails[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, 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.