Struct rusoto_gamelift::UpdateRuntimeConfigurationInput[][src]

pub struct UpdateRuntimeConfigurationInput {
    pub fleet_id: String,
    pub runtime_configuration: RuntimeConfiguration,
}

Represents the input for a request action.

Fields

Unique identifier for a fleet to update run-time configuration for.

Instructions for launching server processes on each instance in the fleet. The run-time configuration for a fleet has a collection of server process configurations, one for each type of server process to run on an instance. A server process configuration specifies the location of the server executable, launch parameters, and the number of concurrent processes with that configuration to maintain on each instance.

Trait Implementations

impl Default for UpdateRuntimeConfigurationInput
[src]

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

impl Debug for UpdateRuntimeConfigurationInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateRuntimeConfigurationInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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