Struct rusoto_ec2::InstanceCapacity[][src]

pub struct InstanceCapacity {
    pub available_capacity: Option<i64>,
    pub instance_type: Option<String>,
    pub total_capacity: Option<i64>,
}

Information about the instance type that the Dedicated Host supports.

Fields

The number of instances that can still be launched onto the Dedicated Host.

The instance type size supported by the Dedicated Host.

The total number of instances that can be launched onto the Dedicated Host.

Trait Implementations

impl Default for InstanceCapacity
[src]

Returns the "default value" for a type. Read more

impl Debug for InstanceCapacity
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceCapacity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InstanceCapacity
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations