Class: Aws::Lambda::Types::InvokeWithResponseStreamCompleteEvent
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Lambda::Types::InvokeWithResponseStreamCompleteEvent
 
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
A response confirming that the event stream is complete.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #error_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An error code. 
- 
  
    
      #error_details  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The details of any returned error. 
- 
  
    
      #event_type  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute event_type. 
- 
  
    
      #log_result  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The last 4 KB of the execution log, which is base64-encoded. 
Instance Attribute Details
#error_code ⇒ String
An error code.
| 3905 3906 3907 3908 3909 3910 3911 3912 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3905 class InvokeWithResponseStreamCompleteEvent < Struct.new( :error_code, :error_details, :log_result, :event_type) SENSITIVE = [] include Aws::Structure end | 
#error_details ⇒ String
The details of any returned error.
| 3905 3906 3907 3908 3909 3910 3911 3912 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3905 class InvokeWithResponseStreamCompleteEvent < Struct.new( :error_code, :error_details, :log_result, :event_type) SENSITIVE = [] include Aws::Structure end | 
#event_type ⇒ Object
Returns the value of attribute event_type
| 3905 3906 3907 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3905 def event_type @event_type end | 
#log_result ⇒ String
The last 4 KB of the execution log, which is base64-encoded.
| 3905 3906 3907 3908 3909 3910 3911 3912 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3905 class InvokeWithResponseStreamCompleteEvent < Struct.new( :error_code, :error_details, :log_result, :event_type) SENSITIVE = [] include Aws::Structure end |