[][src]Struct rusoto_ec2::HostProperties

pub struct HostProperties {
    pub cores: Option<i64>,
    pub instance_family: Option<String>,
    pub instance_type: Option<String>,
    pub sockets: Option<i64>,
    pub total_v_cpus: Option<i64>,
}

Describes the properties of a Dedicated Host.

Fields

cores: Option<i64>

The number of cores on the Dedicated Host.

instance_family: Option<String>

The instance family supported by the Dedicated Host. For example, m5.

instance_type: Option<String>

The instance type supported by the Dedicated Host. For example, m5.large. If the host supports multiple instance types, no instanceType is returned.

sockets: Option<i64>

The number of sockets on the Dedicated Host.

total_v_cpus: Option<i64>

The total number of vCPUs on the Dedicated Host.

Trait Implementations

impl Clone for HostProperties[src]

impl Debug for HostProperties[src]

impl Default for HostProperties[src]

impl PartialEq<HostProperties> for HostProperties[src]

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