Class: Aws::GameLift::Types::RoutingStrategy
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GameLift::Types::RoutingStrategy
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-gamelift/types.rb
 
Overview
The routing configuration for a fleet alias.
**Related actions**
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.
      9036 9037 9038 9039 9040 9041 9042  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 9036 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.
      9036 9037 9038 9039 9040 9041 9042  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 9036 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.
 
      9036 9037 9038 9039 9040 9041 9042  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 9036 class RoutingStrategy < Struct.new( :type, :fleet_id, :message) SENSITIVE = [] include Aws::Structure end  |