File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export abstract class Code {
35
35
/**
36
36
* Inline code for AppSync function
37
37
* @returns `InlineCode` with inline code.
38
- * @param code The actual handler code (limited to 4KiB )
38
+ * @param code The actual handler code (the resulting zip file cannot exceed 4MB )
39
39
*/
40
40
public static fromInline ( code : string ) : InlineCode {
41
41
return new InlineCode ( code ) ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export abstract class Code {
45
45
/**
46
46
* Inline code for Lambda handler
47
47
* @returns `LambdaInlineCode` with inline code.
48
- * @param code The actual handler code (limited to 4KiB )
48
+ * @param code The actual handler code (the resulting zip file cannot exceed 4MB )
49
49
*/
50
50
public static fromInline ( code : string ) : InlineCode {
51
51
return new InlineCode ( code ) ;
You can’t perform that action at this time.
0 commit comments