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.
<div class=“seeAlso”>
- Test API using the API Gateway console][1
-
</div>
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 of the test invoke request.
-
#log ⇒ String
The Amazon API Gateway execution log for the test invoke request.
-
#status ⇒ Integer
The HTTP status code.
Instance Attribute Details
#body ⇒ String
The body of the HTTP response.
5838 5839 5840 5841 5842 5843 5844 5845 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5838 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :log, :latency) include Aws::Structure end |
#headers ⇒ Hash<String,String>
The headers of the HTTP response.
5838 5839 5840 5841 5842 5843 5844 5845 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5838 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :log, :latency) include Aws::Structure end |
#latency ⇒ Integer
The execution latency of the test invoke request.
5838 5839 5840 5841 5842 5843 5844 5845 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5838 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :log, :latency) include Aws::Structure end |
#log ⇒ String
The Amazon API Gateway execution log for the test invoke request.
5838 5839 5840 5841 5842 5843 5844 5845 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5838 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :log, :latency) include Aws::Structure end |
#status ⇒ Integer
The HTTP status code.
5838 5839 5840 5841 5842 5843 5844 5845 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5838 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :log, :latency) include Aws::Structure end |