[][src]Struct rusoto_elastic_inference::AcceleratorTypeOffering

pub struct AcceleratorTypeOffering {
    pub accelerator_type: Option<String>,
    pub location: Option<String>,
    pub location_type: Option<String>,
}

The offering for an Elastic Inference Accelerator type.

Fields

accelerator_type: Option<String>

The name of the Elastic Inference Accelerator type.

location: Option<String>

The location for the offering. It will return either the region, availability zone or availability zone id for the offering depending on the locationType value.

location_type: Option<String>

The location type for the offering. It can assume the following values: region: defines that the offering is at the regional level. availability-zone: defines that the offering is at the availability zone level. availability-zone-id: defines that the offering is at the availability zone level, defined by the availability zone id.

Trait Implementations

impl Clone for AcceleratorTypeOffering[src]

impl Debug for AcceleratorTypeOffering[src]

impl Default for AcceleratorTypeOffering[src]

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

impl PartialEq<AcceleratorTypeOffering> for AcceleratorTypeOffering[src]

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