Class: Aws::Lambda::Types::InvokeWithResponseStreamResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::InvokeWithResponseStreamResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #event_stream  ⇒ Types::InvokeWithResponseStreamResponseEvent 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The stream of response payloads.
 - 
  
    
      #executed_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The version of the function that executed.
 - 
  
    
      #response_stream_content_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of data the stream is returning.
 - 
  
    
      #status_code  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
For a successful request, the HTTP status code is in the 200 range.
 
Instance Attribute Details
#event_stream ⇒ Types::InvokeWithResponseStreamResponseEvent
The stream of response payloads.
      3848 3849 3850 3851 3852 3853 3854 3855  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 3848 class InvokeWithResponseStreamResponse < Struct.new( :status_code, :executed_version, :event_stream, :response_stream_content_type) SENSITIVE = [] include Aws::Structure end  | 
  
#executed_version ⇒ String
The version of the function that executed. When you invoke a function with an alias, this indicates which version the alias resolved to.
      3848 3849 3850 3851 3852 3853 3854 3855  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 3848 class InvokeWithResponseStreamResponse < Struct.new( :status_code, :executed_version, :event_stream, :response_stream_content_type) SENSITIVE = [] include Aws::Structure end  | 
  
#response_stream_content_type ⇒ String
The type of data the stream is returning.
      3848 3849 3850 3851 3852 3853 3854 3855  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 3848 class InvokeWithResponseStreamResponse < Struct.new( :status_code, :executed_version, :event_stream, :response_stream_content_type) SENSITIVE = [] include Aws::Structure end  | 
  
#status_code ⇒ Integer
For a successful request, the HTTP status code is in the 200 range. For the ‘RequestResponse` invocation type, this status code is 200. For the `DryRun` invocation type, this status code is 204.
      3848 3849 3850 3851 3852 3853 3854 3855  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 3848 class InvokeWithResponseStreamResponse < Struct.new( :status_code, :executed_version, :event_stream, :response_stream_content_type) SENSITIVE = [] include Aws::Structure end  |