[][src]Struct rusoto_lightsail::CreateDiskFromSnapshotRequest

pub struct CreateDiskFromSnapshotRequest {
    pub availability_zone: String,
    pub disk_name: String,
    pub disk_snapshot_name: String,
    pub size_in_gb: i64,
}

Fields

The Availability Zone where you want to create the disk (e.g., us-east-2a). Choose the same Availability Zone as the Lightsail instance where you want to create the disk.

Use the GetRegions operation to list the Availability Zones where Lightsail is currently available.

The unique Lightsail disk name (e.g., my-disk).

The name of the disk snapshot (e.g., my-snapshot) from which to create the new storage disk.

The size of the disk in GB (e.g., 32).

Trait Implementations

impl Clone for CreateDiskFromSnapshotRequest
[src]

Performs copy-assignment from source. Read more

impl Default for CreateDiskFromSnapshotRequest
[src]

impl PartialEq<CreateDiskFromSnapshotRequest> for CreateDiskFromSnapshotRequest
[src]

impl Debug for CreateDiskFromSnapshotRequest
[src]

impl Serialize for CreateDiskFromSnapshotRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T