AWSLambdaInvokeWithResponseStreamResponseEvent
Objective-C
@interface AWSLambdaInvokeWithResponseStreamResponseEvent
Swift
class AWSLambdaInvokeWithResponseStreamResponseEvent
An object that includes a chunk of the response payload. When the stream has ended, Lambda includes a InvokeComplete
object.
-
An object that’s returned when the stream has ended and all the payload chunks have been returned.
Declaration
Objective-C
@property (nonatomic, strong) AWSLambdaInvokeWithResponseStreamCompleteEvent *_Nullable invokeComplete;
Swift
var invokeComplete: AWSLambdaInvokeWithResponseStreamCompleteEvent? { get set }
-
A chunk of the streamed response payload.
Declaration
Objective-C
@property (nonatomic, strong) AWSLambdaInvokeResponseStreamUpdate *_Nullable payloadChunk;
Swift
var payloadChunk: AWSLambdaInvokeResponseStreamUpdate? { get set }