[][src]Struct rusoto_ec2::GetCapacityReservationUsageResult

pub struct GetCapacityReservationUsageResult {
    pub available_instance_count: Option<i64>,
    pub capacity_reservation_id: Option<String>,
    pub instance_type: Option<String>,
    pub instance_usages: Option<Vec<InstanceUsage>>,
    pub next_token: Option<String>,
    pub state: Option<String>,
    pub total_instance_count: Option<i64>,
}

Fields

available_instance_count: Option<i64>

The remaining capacity. Indicates the number of instances that can be launched in the Capacity Reservation.

capacity_reservation_id: Option<String>

The ID of the Capacity Reservation.

instance_type: Option<String>

The type of instance for which the Capacity Reservation reserves capacity.

instance_usages: Option<Vec<InstanceUsage>>

Information about the Capacity Reservation usage.

next_token: Option<String>

The token to use to retrieve the next page of results. This value is null when there are no more results to return.

state: Option<String>

The current state of the Capacity Reservation. A Capacity Reservation can be in one of the following states:

  • active - The Capacity Reservation is active and the capacity is available for your use.

  • expired - The Capacity Reservation expired automatically at the date and time specified in your request. The reserved capacity is no longer available for your use.

  • cancelled - The Capacity Reservation was manually cancelled. The reserved capacity is no longer available for your use.

  • pending - The Capacity Reservation request was successful but the capacity provisioning is still pending.

  • failed - The Capacity Reservation request has failed. A request might fail due to invalid request parameters, capacity constraints, or instance limit constraints. Failed requests are retained for 60 minutes.

total_instance_count: Option<i64>

The number of instances for which the Capacity Reservation reserves capacity.

Trait Implementations

impl Clone for GetCapacityReservationUsageResult[src]

impl Debug for GetCapacityReservationUsageResult[src]

impl Default for GetCapacityReservationUsageResult[src]

impl PartialEq<GetCapacityReservationUsageResult> for GetCapacityReservationUsageResult[src]

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