Struct rusoto_gamelift::RoutingStrategy[][src]

pub struct RoutingStrategy {
    pub fleet_id: Option<String>,
    pub message: Option<String>,
    pub type_: Option<String>,
}

Fields

Unique identifier for a fleet that the alias points to.

Message text to be used with a terminal routing strategy.

Type of routing strategy.

Possible routing types include the following:

  • SIMPLE -- The alias resolves to one specific fleet. Use this type when routing to active fleets.

  • TERMINAL -- The alias does not resolve to a fleet but instead can be used to display a message to the user. A terminal alias throws a TerminalRoutingStrategyException with the RoutingStrategy message embedded.

Trait Implementations

impl Default for RoutingStrategy
[src]

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

impl Debug for RoutingStrategy
[src]

Formats the value using the given formatter. Read more

impl Clone for RoutingStrategy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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