[][src]Struct rusoto_lightsail::CreateDiskRequest

pub struct CreateDiskRequest {
    pub availability_zone: String,
    pub disk_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 size of the disk in GB (e.g., 32).

Trait Implementations

impl Clone for CreateDiskRequest
[src]

Performs copy-assignment from source. Read more

impl Default for CreateDiskRequest
[src]

impl PartialEq<CreateDiskRequest> for CreateDiskRequest
[src]

impl Debug for CreateDiskRequest
[src]

impl Serialize for CreateDiskRequest
[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