Class: Aws::GameLift::Types::RoutingStrategy
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::RoutingStrategy
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fleet_id ⇒ String
A unique identifier for the fleet that the alias points to.
-
#message ⇒ String
The message text to be used with a terminal routing strategy.
-
#type ⇒ String
The type of routing strategy for the alias.
Instance Attribute Details
#fleet_id ⇒ String
A unique identifier for the fleet that the alias points to. This value is the fleet ID, not the fleet ARN.
9635 9636 9637 9638 9639 9640 9641 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 9635 class RoutingStrategy < Struct.new( :type, :fleet_id, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The message text to be used with a terminal routing strategy.
9635 9636 9637 9638 9639 9640 9641 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 9635 class RoutingStrategy < Struct.new( :type, :fleet_id, :message) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of routing strategy for the alias.
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 message embedded.
9635 9636 9637 9638 9639 9640 9641 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 9635 class RoutingStrategy < Struct.new( :type, :fleet_id, :message) SENSITIVE = [] include Aws::Structure end |