sst 2.23.6 → 2.23.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/constructs/Function.d.ts
CHANGED
|
@@ -634,6 +634,7 @@ export declare class Function extends CDKFunction implements SSTConstruct {
|
|
|
634
634
|
type: "Function";
|
|
635
635
|
data: {
|
|
636
636
|
arn: string;
|
|
637
|
+
runtime: "container" | "rust" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "nodejs18.x" | "python3.7" | "python3.8" | "python3.9" | "python3.10" | "dotnetcore3.1" | "dotnet6" | "java8" | "java11" | "java17" | "go1.x" | "go" | undefined;
|
|
637
638
|
handler: string | undefined;
|
|
638
639
|
localId: string;
|
|
639
640
|
secrets: string[];
|
package/constructs/Function.js
CHANGED