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.
| 9924 9925 9926 9927 9928 9929 9930 | # File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 9924 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.
| 9924 9925 9926 9927 9928 9929 9930 | # File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 9924 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. 
| 9924 9925 9926 9927 9928 9929 9930 | # File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 9924 class RoutingStrategy < Struct.new( :type, :fleet_id, :message) SENSITIVE = [] include Aws::Structure end |