[][src]Struct rusoto_gamelift::EC2InstanceCounts

pub struct EC2InstanceCounts {
    pub active: Option<i64>,
    pub desired: Option<i64>,
    pub idle: Option<i64>,
    pub maximum: Option<i64>,
    pub minimum: Option<i64>,
    pub pending: Option<i64>,
    pub terminating: Option<i64>,
}

Current status of fleet capacity. The number of active instances should match or be in the process of matching the number of desired instances. Pending and terminating counts are non-zero only if fleet capacity is adjusting to an UpdateFleetCapacity request, or if access to resources is temporarily affected.

Fields

active: Option<i64>

Actual number of active instances in the fleet.

desired: Option<i64>

Ideal number of active instances in the fleet.

idle: Option<i64>

Number of active instances in the fleet that are not currently hosting a game session.

maximum: Option<i64>

The maximum value allowed for the fleet's instance count.

minimum: Option<i64>

The minimum value allowed for the fleet's instance count.

pending: Option<i64>

Number of instances in the fleet that are starting but not yet active.

terminating: Option<i64>

Number of instances in the fleet that are no longer active but haven't yet been terminated.

Trait Implementations

impl Clone for EC2InstanceCounts[src]

impl Debug for EC2InstanceCounts[src]

impl Default for EC2InstanceCounts[src]

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

impl PartialEq<EC2InstanceCounts> for EC2InstanceCounts[src]

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