Class: Aws::AppMesh::Types::GrpcGatewayRouteMatch
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AppMesh::Types::GrpcGatewayRouteMatch
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-appmesh/types.rb
 
Overview
An object that represents the criteria for determining a request match.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #hostname  ⇒ Types::GatewayRouteHostnameMatch 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The gateway route host name to be matched on.
 - 
  
    
      #metadata  ⇒ Array<Types::GrpcGatewayRouteMetadata> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The gateway route metadata to be matched on.
 - 
  
    
      #port  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The gateway route port to be matched on.
 - 
  
    
      #service_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The fully qualified domain name for the service to match from the request.
 
Instance Attribute Details
#hostname ⇒ Types::GatewayRouteHostnameMatch
The gateway route host name to be matched on.
      1804 1805 1806 1807 1808 1809 1810 1811  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 1804 class GrpcGatewayRouteMatch < Struct.new( :hostname, :metadata, :port, :service_name) SENSITIVE = [] include Aws::Structure end  | 
  
#metadata ⇒ Array<Types::GrpcGatewayRouteMetadata>
The gateway route metadata to be matched on.
      1804 1805 1806 1807 1808 1809 1810 1811  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 1804 class GrpcGatewayRouteMatch < Struct.new( :hostname, :metadata, :port, :service_name) SENSITIVE = [] include Aws::Structure end  | 
  
#port ⇒ Integer
The gateway route port to be matched on.
      1804 1805 1806 1807 1808 1809 1810 1811  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 1804 class GrpcGatewayRouteMatch < Struct.new( :hostname, :metadata, :port, :service_name) SENSITIVE = [] include Aws::Structure end  | 
  
#service_name ⇒ String
The fully qualified domain name for the service to match from the request.
      1804 1805 1806 1807 1808 1809 1810 1811  | 
    
      # File 'lib/aws-sdk-appmesh/types.rb', line 1804 class GrpcGatewayRouteMatch < Struct.new( :hostname, :metadata, :port, :service_name) SENSITIVE = [] include Aws::Structure end  |