Class: Aws::AppMesh::Types::GatewayRouteHostnameMatch
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AppMesh::Types::GatewayRouteHostnameMatch
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-appmesh/types.rb
 
Overview
An object representing the gateway route host name to match.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #exact  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The exact host name to match on.
 - 
  
    
      #suffix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The specified ending characters of the host name to match on.
 
Instance Attribute Details
#exact ⇒ String
The exact host name to match on.
      1568 1569 1570 1571 1572 1573  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 1568 class GatewayRouteHostnameMatch < Struct.new( :exact, :suffix) SENSITIVE = [] include Aws::Structure end  | 
  
#suffix ⇒ String
The specified ending characters of the host name to match on.
      1568 1569 1570 1571 1572 1573  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 1568 class GatewayRouteHostnameMatch < Struct.new( :exact, :suffix) SENSITIVE = [] include Aws::Structure end  |