Struct rusoto_ec2::AvailableCapacity[][src]

pub struct AvailableCapacity {
    pub available_instance_capacity: Option<Vec<InstanceCapacity>>,
    pub available_v_cpus: Option<i64>,
}

The capacity information for instances launched onto the Dedicated Host.

Fields

The total number of instances that the Dedicated Host supports.

The number of vCPUs available on the Dedicated Host.

Trait Implementations

impl Default for AvailableCapacity
[src]

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

impl Debug for AvailableCapacity
[src]

Formats the value using the given formatter. Read more

impl Clone for AvailableCapacity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AvailableCapacity
[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