Struct rusoto_gamelift::UpdateFleetCapacityInput[][src]

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

Number of EC2 instances you want this fleet to host.

Unique identifier for a fleet to update capacity for.

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

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

Trait Implementations

impl Default for UpdateFleetCapacityInput
[src]

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

impl Debug for UpdateFleetCapacityInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateFleetCapacityInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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