[][src]Struct rusoto_ce::EC2ResourceDetails

pub struct EC2ResourceDetails {
    pub hourly_on_demand_rate: Option<String>,
    pub instance_type: Option<String>,
    pub memory: Option<String>,
    pub network_performance: Option<String>,
    pub platform: Option<String>,
    pub region: Option<String>,
    pub sku: Option<String>,
    pub storage: Option<String>,
    pub vcpu: Option<String>,
}

Details on the Amazon EC2 Resource.

Fields

hourly_on_demand_rate: Option<String>

Hourly public On Demand rate for the instance type.

instance_type: Option<String>

The type of Amazon Web Services instance.

memory: Option<String>

Memory capacity of Amazon Web Services instance.

network_performance: Option<String>

Network performance capacity of the Amazon Web Services instance.

platform: Option<String>

The platform of the Amazon Web Services instance. The platform is the specific combination of operating system, license model, and software on an instance.

region: Option<String>

The Amazon Web Services Region of the instance.

sku: Option<String>

The SKU of the product.

storage: Option<String>

The disk storage of the Amazon Web Services instance (Not EBS storage).

vcpu: Option<String>

Number of VCPU cores in the Amazon Web Services instance type.

Trait Implementations

impl Clone for EC2ResourceDetails[src]

impl Debug for EC2ResourceDetails[src]

impl Default for EC2ResourceDetails[src]

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

impl PartialEq<EC2ResourceDetails> for EC2ResourceDetails[src]

impl StructuralPartialEq for EC2ResourceDetails[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, 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> Sealed<T> for T where
    T: ?Sized

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.