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



3873
3874
3875
# File 'lib/aws-sdk-lambda/types.rb', line 3873

def event_type
  @event_type
end

#payloadString

Data returned by your Lambda function.

Returns:

  • (String)


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