AWSLambdaInvokeWithResponseStreamResponse

Objective-C

@interface AWSLambdaInvokeWithResponseStreamResponse

Swift

class AWSLambdaInvokeWithResponseStreamResponse
  • The stream of response payloads.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSLambdaInvokeWithResponseStreamResponseEvent *_Nullable eventStream;

    Swift

    var eventStream: AWSLambdaInvokeWithResponseStreamResponseEvent? { get set }
  • The version of the function that executed. When you invoke a function with an alias, this indicates which version the alias resolved to.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable executedVersion;

    Swift

    var executedVersion: String? { get set }
  • The type of data the stream is returning.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable responseStreamContentType;

    Swift

    var responseStreamContentType: String? { get set }
  • For a successful request, the HTTP status code is in the 200 range. For the RequestResponse invocation type, this status code is 200. For the DryRun invocation type, this status code is 204.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable statusCode;

    Swift

    var statusCode: NSNumber? { get set }