[−][src]Struct rusoto_gamelift::EC2InstanceCounts
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.
-
Describe fleets:
-
Update fleets:
-
Manage fleet actions:
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>
Maximum value allowed for the fleet's instance count.
minimum: Option<i64>
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 PartialEq<EC2InstanceCounts> for EC2InstanceCounts
[src]
fn eq(&self, other: &EC2InstanceCounts) -> bool
[src]
fn ne(&self, other: &EC2InstanceCounts) -> bool
[src]
impl Default for EC2InstanceCounts
[src]
fn default() -> EC2InstanceCounts
[src]
impl Clone for EC2InstanceCounts
[src]
fn clone(&self) -> EC2InstanceCounts
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for EC2InstanceCounts
[src]
impl<'de> Deserialize<'de> for EC2InstanceCounts
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for EC2InstanceCounts
impl Sync for EC2InstanceCounts
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self