@pulumi/aws 6.24.1 → 6.24.2
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/package.json
CHANGED
|
@@ -1,18 +1,34 @@
|
|
|
1
1
|
export declare const Runtime: {
|
|
2
|
+
readonly Dotnet6: "dotnet6";
|
|
3
|
+
readonly Dotnet7: "dotnet7";
|
|
4
|
+
readonly Dotnet8: "dotnet8";
|
|
5
|
+
readonly Java11: "java11";
|
|
6
|
+
readonly Java17: "java17";
|
|
7
|
+
readonly Java21: "java21";
|
|
8
|
+
readonly Java8AL2: "java8.al2";
|
|
9
|
+
readonly NodeJS16dX: "nodejs16.x";
|
|
10
|
+
readonly NodeJS18dX: "nodejs18.x";
|
|
11
|
+
readonly NodeJS20dX: "nodejs20.x";
|
|
12
|
+
readonly CustomAL2: "provided.al2";
|
|
13
|
+
readonly CustomAL2023: "provided.al2023";
|
|
14
|
+
readonly Python3d10: "python3.10";
|
|
15
|
+
readonly Python3d11: "python3.11";
|
|
16
|
+
readonly Python3d12: "python3.12";
|
|
17
|
+
readonly Python3d8: "python3.8";
|
|
18
|
+
readonly Python3d9: "python3.9";
|
|
19
|
+
readonly Ruby3d2: "ruby3.2";
|
|
2
20
|
/**
|
|
3
21
|
* @deprecated This runtime is now deprecated
|
|
4
22
|
*/
|
|
5
|
-
readonly
|
|
23
|
+
readonly Dotnet5d0: "dotnet5.0";
|
|
6
24
|
/**
|
|
7
25
|
* @deprecated This runtime is now deprecated
|
|
8
26
|
*/
|
|
9
|
-
readonly
|
|
27
|
+
readonly DotnetCore2d1: "dotnetcore2.1";
|
|
10
28
|
/**
|
|
11
29
|
* @deprecated This runtime is now deprecated
|
|
12
30
|
*/
|
|
13
|
-
readonly
|
|
14
|
-
readonly Dotnet6: "dotnet6";
|
|
15
|
-
readonly Dotnet7: "dotnet7";
|
|
31
|
+
readonly DotnetCore3d1: "dotnetcore3.1";
|
|
16
32
|
/**
|
|
17
33
|
* @deprecated This runtime is now deprecated
|
|
18
34
|
*/
|
|
@@ -21,19 +37,6 @@ export declare const Runtime: {
|
|
|
21
37
|
* @deprecated This runtime is now deprecated
|
|
22
38
|
*/
|
|
23
39
|
readonly Java8: "java8";
|
|
24
|
-
readonly Java8AL2: "java8.al2";
|
|
25
|
-
readonly Java11: "java11";
|
|
26
|
-
readonly Java17: "java17";
|
|
27
|
-
readonly Java21: "java21";
|
|
28
|
-
/**
|
|
29
|
-
* @deprecated This runtime is now deprecated
|
|
30
|
-
*/
|
|
31
|
-
readonly Ruby2d5: "ruby2.5";
|
|
32
|
-
/**
|
|
33
|
-
* @deprecated This runtime is now deprecated
|
|
34
|
-
*/
|
|
35
|
-
readonly Ruby2d7: "ruby2.7";
|
|
36
|
-
readonly Ruby3d2: "ruby3.2";
|
|
37
40
|
/**
|
|
38
41
|
* @deprecated This runtime is now deprecated
|
|
39
42
|
*/
|
|
@@ -46,9 +49,10 @@ export declare const Runtime: {
|
|
|
46
49
|
* @deprecated This runtime is now deprecated
|
|
47
50
|
*/
|
|
48
51
|
readonly NodeJS14dX: "nodejs14.x";
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
+
/**
|
|
53
|
+
* @deprecated This runtime is now deprecated
|
|
54
|
+
*/
|
|
55
|
+
readonly Custom: "provided";
|
|
52
56
|
/**
|
|
53
57
|
* @deprecated This runtime is now deprecated
|
|
54
58
|
*/
|
|
@@ -61,17 +65,14 @@ export declare const Runtime: {
|
|
|
61
65
|
* @deprecated This runtime is now deprecated
|
|
62
66
|
*/
|
|
63
67
|
readonly Python3d7: "python3.7";
|
|
64
|
-
readonly Python3d8: "python3.8";
|
|
65
|
-
readonly Python3d9: "python3.9";
|
|
66
|
-
readonly Python3d10: "python3.10";
|
|
67
|
-
readonly Python3d11: "python3.11";
|
|
68
|
-
readonly Python3d12: "python3.12";
|
|
69
68
|
/**
|
|
70
69
|
* @deprecated This runtime is now deprecated
|
|
71
70
|
*/
|
|
72
|
-
readonly
|
|
73
|
-
|
|
74
|
-
|
|
71
|
+
readonly Ruby2d5: "ruby2.5";
|
|
72
|
+
/**
|
|
73
|
+
* @deprecated This runtime is now deprecated
|
|
74
|
+
*/
|
|
75
|
+
readonly Ruby2d7: "ruby2.7";
|
|
75
76
|
};
|
|
76
77
|
/**
|
|
77
78
|
* See https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
|
|
@@ -4,20 +4,36 @@
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.Runtime = void 0;
|
|
6
6
|
exports.Runtime = {
|
|
7
|
+
Dotnet6: "dotnet6",
|
|
8
|
+
Dotnet7: "dotnet7",
|
|
9
|
+
Dotnet8: "dotnet8",
|
|
10
|
+
Java11: "java11",
|
|
11
|
+
Java17: "java17",
|
|
12
|
+
Java21: "java21",
|
|
13
|
+
Java8AL2: "java8.al2",
|
|
14
|
+
NodeJS16dX: "nodejs16.x",
|
|
15
|
+
NodeJS18dX: "nodejs18.x",
|
|
16
|
+
NodeJS20dX: "nodejs20.x",
|
|
17
|
+
CustomAL2: "provided.al2",
|
|
18
|
+
CustomAL2023: "provided.al2023",
|
|
19
|
+
Python3d10: "python3.10",
|
|
20
|
+
Python3d11: "python3.11",
|
|
21
|
+
Python3d12: "python3.12",
|
|
22
|
+
Python3d8: "python3.8",
|
|
23
|
+
Python3d9: "python3.9",
|
|
24
|
+
Ruby3d2: "ruby3.2",
|
|
7
25
|
/**
|
|
8
26
|
* @deprecated This runtime is now deprecated
|
|
9
27
|
*/
|
|
10
|
-
|
|
28
|
+
Dotnet5d0: "dotnet5.0",
|
|
11
29
|
/**
|
|
12
30
|
* @deprecated This runtime is now deprecated
|
|
13
31
|
*/
|
|
14
|
-
|
|
32
|
+
DotnetCore2d1: "dotnetcore2.1",
|
|
15
33
|
/**
|
|
16
34
|
* @deprecated This runtime is now deprecated
|
|
17
35
|
*/
|
|
18
|
-
|
|
19
|
-
Dotnet6: "dotnet6",
|
|
20
|
-
Dotnet7: "dotnet7",
|
|
36
|
+
DotnetCore3d1: "dotnetcore3.1",
|
|
21
37
|
/**
|
|
22
38
|
* @deprecated This runtime is now deprecated
|
|
23
39
|
*/
|
|
@@ -26,19 +42,6 @@ exports.Runtime = {
|
|
|
26
42
|
* @deprecated This runtime is now deprecated
|
|
27
43
|
*/
|
|
28
44
|
Java8: "java8",
|
|
29
|
-
Java8AL2: "java8.al2",
|
|
30
|
-
Java11: "java11",
|
|
31
|
-
Java17: "java17",
|
|
32
|
-
Java21: "java21",
|
|
33
|
-
/**
|
|
34
|
-
* @deprecated This runtime is now deprecated
|
|
35
|
-
*/
|
|
36
|
-
Ruby2d5: "ruby2.5",
|
|
37
|
-
/**
|
|
38
|
-
* @deprecated This runtime is now deprecated
|
|
39
|
-
*/
|
|
40
|
-
Ruby2d7: "ruby2.7",
|
|
41
|
-
Ruby3d2: "ruby3.2",
|
|
42
45
|
/**
|
|
43
46
|
* @deprecated This runtime is now deprecated
|
|
44
47
|
*/
|
|
@@ -51,9 +54,10 @@ exports.Runtime = {
|
|
|
51
54
|
* @deprecated This runtime is now deprecated
|
|
52
55
|
*/
|
|
53
56
|
NodeJS14dX: "nodejs14.x",
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
+
/**
|
|
58
|
+
* @deprecated This runtime is now deprecated
|
|
59
|
+
*/
|
|
60
|
+
Custom: "provided",
|
|
57
61
|
/**
|
|
58
62
|
* @deprecated This runtime is now deprecated
|
|
59
63
|
*/
|
|
@@ -66,16 +70,13 @@ exports.Runtime = {
|
|
|
66
70
|
* @deprecated This runtime is now deprecated
|
|
67
71
|
*/
|
|
68
72
|
Python3d7: "python3.7",
|
|
69
|
-
Python3d8: "python3.8",
|
|
70
|
-
Python3d9: "python3.9",
|
|
71
|
-
Python3d10: "python3.10",
|
|
72
|
-
Python3d11: "python3.11",
|
|
73
|
-
Python3d12: "python3.12",
|
|
74
73
|
/**
|
|
75
74
|
* @deprecated This runtime is now deprecated
|
|
76
75
|
*/
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
76
|
+
Ruby2d5: "ruby2.5",
|
|
77
|
+
/**
|
|
78
|
+
* @deprecated This runtime is now deprecated
|
|
79
|
+
*/
|
|
80
|
+
Ruby2d7: "ruby2.7",
|
|
80
81
|
};
|
|
81
82
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/lambda/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAGpE,QAAA,OAAO,GAAG;IACnB
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/lambda/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAGpE,QAAA,OAAO,GAAG;IACnB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,WAAW;IACrB,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,SAAS,EAAE,cAAc;IACzB,YAAY,EAAE,iBAAiB;IAC/B,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;IACtB,OAAO,EAAE,SAAS;IAClB;;OAEG;IACH,SAAS,EAAE,WAAW;IACtB;;OAEG;IACH,aAAa,EAAE,eAAe;IAC9B;;OAEG;IACH,aAAa,EAAE,eAAe;IAC9B;;OAEG;IACH,KAAK,EAAE,OAAO;IACd;;OAEG;IACH,KAAK,EAAE,OAAO;IACd;;OAEG;IACH,UAAU,EAAE,YAAY;IACxB;;OAEG;IACH,UAAU,EAAE,YAAY;IACxB;;OAEG;IACH,UAAU,EAAE,YAAY;IACxB;;OAEG;IACH,MAAM,EAAE,UAAU;IAClB;;OAEG;IACH,SAAS,EAAE,WAAW;IACtB;;OAEG;IACH,SAAS,EAAE,WAAW;IACtB;;OAEG;IACH,SAAS,EAAE,WAAW;IACtB;;OAEG;IACH,OAAO,EAAE,SAAS;IAClB;;OAEG;IACH,OAAO,EAAE,SAAS;CACZ,CAAC"}
|