Class: Aws::Lambda::Types::InvokeResponseStreamUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::InvokeResponseStreamUpdate
- Defined in:
- gems/aws-sdk-lambda/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
3739 3740 3741 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3739 def event_type @event_type end |
#payload ⇒ String
Data returned by your Lambda function.
3739 3740 3741 3742 3743 3744 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3739 class InvokeResponseStreamUpdate < Struct.new( :payload, :event_type) SENSITIVE = [:payload] include Aws::Structure end |