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.
1489 1490 1491 1492 1493 1494 1495 1496 1497 |
# File 'lib/aws-sdk-xray/types.rb', line 1489 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.
1489 1490 1491 1492 1493 1494 1495 1496 1497 |
# File 'lib/aws-sdk-xray/types.rb', line 1489 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.
1489 1490 1491 1492 1493 1494 1495 1496 1497 |
# File 'lib/aws-sdk-xray/types.rb', line 1489 class Http < Struct.new( :http_url, :http_status, :http_method, :user_agent, :client_ip) SENSITIVE = [] include Aws::Structure end |