Update ALBResult (#45936)

This commit is contained in:
Donald Pipowitch 2020-07-10 17:43:44 +02:00 committed by GitHub
parent 7b855576c6
commit 070f243047
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,9 +24,9 @@ export interface ALBEvent {
export interface ALBResult {
statusCode: number;
statusDescription: string;
statusDescription?: string;
headers?: { [header: string]: boolean | number | string };
multiValueHeaders?: { [header: string]: Array<boolean | number | string> };
body?: string;
isBase64Encoded: boolean;
isBase64Encoded?: boolean;
}