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.
| 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 | # File 'lib/aws-sdk-apigateway/types.rb', line 5303 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.
| 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 | # File 'lib/aws-sdk-apigateway/types.rb', line 5303 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.
| 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 | # File 'lib/aws-sdk-apigateway/types.rb', line 5303 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.
| 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 | # File 'lib/aws-sdk-apigateway/types.rb', line 5303 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.
| 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 | # File 'lib/aws-sdk-apigateway/types.rb', line 5303 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :multi_value_headers, :log, :latency) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ Integer
The HTTP status code.
| 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 | # File 'lib/aws-sdk-apigateway/types.rb', line 5303 class TestInvokeMethodResponse < Struct.new( :status, :body, :headers, :multi_value_headers, :log, :latency) SENSITIVE = [] include Aws::Structure end |