Struct rusoto_gamelift::PutScalingPolicyInput [] [src]

pub struct PutScalingPolicyInput {
    pub comparison_operator: String,
    pub evaluation_periods: i64,
    pub fleet_id: String,
    pub metric_name: String,
    pub name: String,
    pub scaling_adjustment: i64,
    pub scaling_adjustment_type: String,
    pub threshold: f64,
}

Represents the input for a request action.

Fields

Comparison operator to use when measuring the metric against the threshold value.

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

Unique identifier for a fleet to apply this policy to.

Name of the Amazon GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions – number of game sessions in the process of being created (game session status = ACTIVATING).

  • ActiveGameSessions – number of game sessions currently running (game session status = ACTIVE).

  • CurrentPlayerSessions – number of active or reserved player sessions (player session status = ACTIVE or RESERVED).

  • AvailablePlayerSessions – number of player session slots currently available in active game sessions across the fleet, calculated by subtracting a game session's current player session count from its maximum player session count. This number includes game sessions that are not currently accepting players (game session PlayerSessionCreationPolicy = DENY_ALL).

  • ActiveInstances – number of instances currently running a game session.

  • IdleInstances – number of instances not currently running a game session.

Descriptive label that is associated with a scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

Amount of adjustment to make, based on the scaling adjustment type.

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity – add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.

  • ExactCapacity – set the instance count to the scaling adjustment value.

  • PercentChangeInCapacity – increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down; for example, a value of "-10" scales the fleet down by 10%.

Metric value used to trigger a scaling event.

Trait Implementations

impl Default for PutScalingPolicyInput
[src]

[src]

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

impl Debug for PutScalingPolicyInput
[src]

[src]

Formats the value using the given formatter.

impl Clone for PutScalingPolicyInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more