Class: Aws::Lambda::Types::InvokeResponseStreamUpdate

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#event_typeObject

Returns the value of attribute event_type

Returns:

  • (Object)

    the current value of event_type



3606
3607
3608
# File 'lib/aws-sdk-lambda/types.rb', line 3606

def event_type
  @event_type
end

#payloadString

Data returned by your Lambda function.

Returns:

  • (String)


3606
3607
3608
3609
3610
3611
# File 'lib/aws-sdk-lambda/types.rb', line 3606

class InvokeResponseStreamUpdate < Struct.new(
  :payload,
  :event_type)
  SENSITIVE = [:payload]
  include Aws::Structure
end