Class: Aws::WAFV2::Types::HTTPRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-wafv2/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

Instance Attribute Details

#client_ipString

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

Returns:

  • (String)


3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3552

class HTTPRequest < Struct.new(
  :client_ip,
  :country,
  :uri,
  :method,
  :http_version,
  :headers)
  SENSITIVE = []
  include Aws::Structure
end

#countryString

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.

Returns:

  • (String)


3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3552

class HTTPRequest < Struct.new(
  :client_ip,
  :country,
  :uri,
  :method,
  :http_version,
  :headers)
  SENSITIVE = []
  include Aws::Structure
end

#headersArray<Types::HTTPHeader>

A complex type that contains the name and value for each header in the sampled web request.

Returns:



3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3552

class HTTPRequest < Struct.new(
  :client_ip,
  :country,
  :uri,
  :method,
  :http_version,
  :headers)
  SENSITIVE = []
  include Aws::Structure
end

#http_versionString

The HTTP version specified in the sampled web request, for example, HTTP/1.1.

Returns:

  • (String)


3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3552

class HTTPRequest < Struct.new(
  :client_ip,
  :country,
  :uri,
  :method,
  :http_version,
  :headers)
  SENSITIVE = []
  include Aws::Structure
end

#methodString

The HTTP method specified in the sampled web request.

Returns:

  • (String)


3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3552

class HTTPRequest < Struct.new(
  :client_ip,
  :country,
  :uri,
  :method,
  :http_version,
  :headers)
  SENSITIVE = []
  include Aws::Structure
end

#uriString

The URI path of the request, which identifies the resource, for example, /images/daily-ad.jpg.

Returns:

  • (String)


3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 3552

class HTTPRequest < Struct.new(
  :client_ip,
  :country,
  :uri,
  :method,
  :http_version,
  :headers)
  SENSITIVE = []
  include Aws::Structure
end