[][src]Struct rusoto_gamelift::UpdateFleetCapacityInput

pub struct UpdateFleetCapacityInput {
    pub desired_instances: Option<i64>,
    pub fleet_id: String,
    pub max_size: Option<i64>,
    pub min_size: Option<i64>,
}

Represents the input for a request action.

Fields

desired_instances: Option<i64>

Number of EC2 instances you want this fleet to host.

fleet_id: String

Unique identifier for a fleet to update capacity for.

max_size: Option<i64>

Maximum value allowed for the fleet's instance count. Default if not set is 1.

min_size: Option<i64>

Minimum value allowed for the fleet's instance count. Default if not set is 0.

Trait Implementations

impl Clone for UpdateFleetCapacityInput[src]

impl Default for UpdateFleetCapacityInput[src]

impl PartialEq<UpdateFleetCapacityInput> for UpdateFleetCapacityInput[src]

impl Debug for UpdateFleetCapacityInput[src]

impl StructuralPartialEq for UpdateFleetCapacityInput[src]

impl Serialize for UpdateFleetCapacityInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self