Class: Aws::XRay::Types::Http
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::XRay::Types::Http
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-xray/types.rb
 
Overview
Information about an HTTP request.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #client_ip  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IP address of the requestor.
 - 
  
    
      #http_method  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The request method.
 - 
  
    
      #http_status  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The response status.
 - 
  
    
      #http_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The request URL.
 - 
  
    
      #user_agent  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The request’s user agent string.
 
Instance Attribute Details
#client_ip ⇒ String
The IP address of the requestor.
      1624 1625 1626 1627 1628 1629 1630 1631 1632  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1624 class Http < Struct.new( :http_url, :http_status, :http_method, :user_agent, :client_ip) SENSITIVE = [] include Aws::Structure end  | 
  
#http_method ⇒ String
The request method.
      1624 1625 1626 1627 1628 1629 1630 1631 1632  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1624 class Http < Struct.new( :http_url, :http_status, :http_method, :user_agent, :client_ip) SENSITIVE = [] include Aws::Structure end  | 
  
#http_status ⇒ Integer
The response status.
      1624 1625 1626 1627 1628 1629 1630 1631 1632  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1624 class Http < Struct.new( :http_url, :http_status, :http_method, :user_agent, :client_ip) SENSITIVE = [] include Aws::Structure end  |