Class: Aws::Lambda::Types::InvokeResponseStreamUpdate
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::InvokeResponseStreamUpdate
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
A chunk of the streamed response payload.
Constant Summary collapse
- SENSITIVE =
 [:payload]
Instance Attribute Summary collapse
- 
  
    
      #event_type  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute event_type.
 - 
  
    
      #payload  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Data returned by your Lambda function.
 
Instance Attribute Details
#event_type ⇒ Object
Returns the value of attribute event_type
      3731 3732 3733  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 3731 def event_type @event_type end  | 
  
#payload ⇒ String
Data returned by your Lambda function.
      3731 3732 3733 3734 3735 3736  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 3731 class InvokeResponseStreamUpdate < Struct.new( :payload, :event_type) SENSITIVE = [:payload] include Aws::Structure end  |