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
3873 3874 3875 |
# File 'lib/aws-sdk-lambda/types.rb', line 3873 def event_type @event_type end |
#payload ⇒ String
Data returned by your Lambda function.
3873 3874 3875 3876 3877 3878 |
# File 'lib/aws-sdk-lambda/types.rb', line 3873 class InvokeResponseStreamUpdate < Struct.new( :payload, :event_type) SENSITIVE = [:payload] include Aws::Structure end |