[][src]Struct rusoto_lightsail::DistributionBundle

pub struct DistributionBundle {
    pub bundle_id: Option<String>,
    pub is_active: Option<bool>,
    pub name: Option<String>,
    pub price: Option<f32>,
    pub transfer_per_month_in_gb: Option<i64>,
}

Describes the specifications of a distribution bundle.

Fields

bundle_id: Option<String>

The ID of the bundle.

is_active: Option<bool>

Indicates whether the bundle is active, and can be specified for a new distribution.

name: Option<String>

The name of the distribution bundle.

price: Option<f32>

The monthly price, in US dollars, of the bundle.

transfer_per_month_in_gb: Option<i64>

The monthly network transfer quota of the bundle.

Trait Implementations

impl Clone for DistributionBundle[src]

impl Debug for DistributionBundle[src]

impl Default for DistributionBundle[src]

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

impl PartialEq<DistributionBundle> for DistributionBundle[src]

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