Class: Aws::APIGateway::Types::TestInvokeMethodResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::TestInvokeMethodResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Represents the response of the test invoke request in the HTTP method.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#body ⇒ String
The body of the HTTP response.
-
#headers ⇒ Hash<String,String>
The headers of the HTTP response.
-
#latency ⇒ Integer
The execution latency, in ms, of the test invoke request.
-
#log ⇒ String
The API Gateway execution log for the test invoke request.
-
#multi_value_headers ⇒ Hash<String,Array<String>>
The headers of the HTTP response as a map from string to list of values.
-
#status ⇒ Integer
The HTTP status code.
Instance Attribute Details
#body ⇒ String
The body of the HTTP response.
5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5094 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :multi_value_headers, :log, :latency) SENSITIVE = [] include Aws::Structure end |
#headers ⇒ Hash<String,String>
The headers of the HTTP response.
5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5094 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :multi_value_headers, :log, :latency) SENSITIVE = [] include Aws::Structure end |
#latency ⇒ Integer
The execution latency, in ms, of the test invoke request.
5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5094 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :multi_value_headers, :log, :latency) SENSITIVE = [] include Aws::Structure end |
#log ⇒ String
The API Gateway execution log for the test invoke request.
5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5094 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :multi_value_headers, :log, :latency) SENSITIVE = [] include Aws::Structure end |
#multi_value_headers ⇒ Hash<String,Array<String>>
The headers of the HTTP response as a map from string to list of values.
5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5094 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :multi_value_headers, :log, :latency) SENSITIVE = [] include Aws::Structure end |
#status ⇒ Integer
The HTTP status code.
5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5094 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :multi_value_headers, :log, :latency) SENSITIVE = [] include Aws::Structure end |