Class: Aws::WAFV2::Types::HTTPRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::WAFV2::Types::HTTPRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-wafv2/types.rb
 
Overview
Part of the response from GetSampledRequests. This is a complex type that appears as ‘Request` in the response syntax. `HTTPRequest` contains information about one of the web requests.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #client_ip  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IP address that the request originated from.
 - 
  
    
      #country  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The two-letter country code for the country that the request originated from.
 - 
  
    
      #headers  ⇒ Array<Types::HTTPHeader> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A complex type that contains the name and value for each header in the sampled web request.
 - 
  
    
      #http_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The HTTP version specified in the sampled web request, for example, ‘HTTP/1.1`.
 - 
  
    
      #method  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The HTTP method specified in the sampled web request.
 - 
  
    
      #uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URI path of the request, which identifies the resource, for example, ‘/images/daily-ad.jpg`.
 
Instance Attribute Details
#client_ip ⇒ String
The IP address that the request originated from. If the web ACL is associated with a CloudFront distribution, this is the value of one of the following fields in CloudFront access logs:
- 
‘c-ip`, if the viewer did not use an HTTP proxy or a load balancer to send the request
 - 
‘x-forwarded-for`, if the viewer did use an HTTP proxy or a load balancer to send the request
 
      3612 3613 3614 3615 3616 3617 3618 3619 3620 3621  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 3612 class HTTPRequest < Struct.new( :client_ip, :country, :uri, :method, :http_version, :headers) SENSITIVE = [] include Aws::Structure end  | 
  
#country ⇒ String
The two-letter country code for the country that the request originated from. For a current list of country codes, see the Wikipedia entry [ISO 3166-1 alpha-2].
      3612 3613 3614 3615 3616 3617 3618 3619 3620 3621  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 3612 class HTTPRequest < Struct.new( :client_ip, :country, :uri, :method, :http_version, :headers) SENSITIVE = [] include Aws::Structure end  | 
  
#headers ⇒ Array<Types::HTTPHeader>
A complex type that contains the name and value for each header in the sampled web request.
      3612 3613 3614 3615 3616 3617 3618 3619 3620 3621  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 3612 class HTTPRequest < Struct.new( :client_ip, :country, :uri, :method, :http_version, :headers) SENSITIVE = [] include Aws::Structure end  | 
  
#http_version ⇒ String
The HTTP version specified in the sampled web request, for example, ‘HTTP/1.1`.
      3612 3613 3614 3615 3616 3617 3618 3619 3620 3621  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 3612 class HTTPRequest < Struct.new( :client_ip, :country, :uri, :method, :http_version, :headers) SENSITIVE = [] include Aws::Structure end  | 
  
#method ⇒ String
The HTTP method specified in the sampled web request.
      3612 3613 3614 3615 3616 3617 3618 3619 3620 3621  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 3612 class HTTPRequest < Struct.new( :client_ip, :country, :uri, :method, :http_version, :headers) SENSITIVE = [] include Aws::Structure end  | 
  
#uri ⇒ String
The URI path of the request, which identifies the resource, for example, ‘/images/daily-ad.jpg`.
      3612 3613 3614 3615 3616 3617 3618 3619 3620 3621  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 3612 class HTTPRequest < Struct.new( :client_ip, :country, :uri, :method, :http_version, :headers) SENSITIVE = [] include Aws::Structure end  |