@aws-sdk/client-lambda 3.516.0 → 3.521.0
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/dist-cjs/index.js +1 -0
- package/dist-cjs/runtimeConfig.browser.js +1 -1
- package/dist-cjs/runtimeConfig.js +1 -1
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/runtimeConfig.browser.js +1 -1
- package/dist-es/runtimeConfig.js +1 -1
- package/dist-types/LambdaClient.d.ts +4 -4
- package/dist-types/commands/CreateFunctionCommand.d.ts +2 -2
- package/dist-types/commands/GetFunctionCommand.d.ts +1 -1
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +1 -1
- package/dist-types/commands/GetLayerVersionCommand.d.ts +1 -1
- package/dist-types/commands/ListFunctionsCommand.d.ts +1 -1
- package/dist-types/commands/ListLayerVersionsCommand.d.ts +2 -2
- package/dist-types/commands/ListLayersCommand.d.ts +2 -2
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +1 -1
- package/dist-types/commands/PublishLayerVersionCommand.d.ts +2 -2
- package/dist-types/commands/PublishVersionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +3 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -4
- package/dist-types/runtimeConfig.d.ts +1 -4
- package/dist-types/runtimeConfig.native.d.ts +1 -4
- package/dist-types/ts3.4/LambdaClient.d.ts +3 -3
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -13
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -14
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -13
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -30,7 +30,7 @@ const getRuntimeConfig = (config) => {
|
|
|
30
30
|
eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_browser_1.eventStreamSerdeProvider,
|
|
31
31
|
maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
32
32
|
region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
|
|
33
|
-
requestHandler: config?.requestHandler ??
|
|
33
|
+
requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
34
34
|
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE),
|
|
35
35
|
sha256: config?.sha256 ?? sha256_browser_1.Sha256,
|
|
36
36
|
streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector,
|
|
@@ -36,7 +36,7 @@ const getRuntimeConfig = (config) => {
|
|
|
36
36
|
eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_node_1.eventStreamSerdeProvider,
|
|
37
37
|
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
38
38
|
region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
39
|
-
requestHandler: config?.requestHandler ??
|
|
39
|
+
requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
40
40
|
retryMode: config?.retryMode ??
|
|
41
41
|
(0, node_config_provider_1.loadConfig)({
|
|
42
42
|
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
@@ -26,7 +26,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
26
|
eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider,
|
|
27
27
|
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
28
28
|
region: config?.region ?? invalidProvider("Region is missing"),
|
|
29
|
-
requestHandler: config?.requestHandler ??
|
|
29
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
30
30
|
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
31
31
|
sha256: config?.sha256 ?? Sha256,
|
|
32
32
|
streamCollector: config?.streamCollector ?? streamCollector,
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -32,7 +32,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
32
32
|
eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider,
|
|
33
33
|
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
34
34
|
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
35
|
-
requestHandler: config?.requestHandler ??
|
|
35
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
36
36
|
retryMode: config?.retryMode ??
|
|
37
37
|
loadNodeConfig({
|
|
38
38
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
@@ -4,7 +4,7 @@ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver
|
|
|
4
4
|
import { EventStreamSerdeInputConfig, EventStreamSerdeResolvedConfig } from "@smithy/eventstream-serde-config-resolver";
|
|
5
5
|
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
|
|
6
6
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
7
|
-
import {
|
|
7
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
8
8
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
9
9
|
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
10
10
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
@@ -88,11 +88,11 @@ export type ServiceOutputTypes = AddLayerVersionPermissionCommandOutput | AddPer
|
|
|
88
88
|
/**
|
|
89
89
|
* @public
|
|
90
90
|
*/
|
|
91
|
-
export interface ClientDefaults extends Partial<
|
|
91
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
92
92
|
/**
|
|
93
|
-
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
93
|
+
* The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
|
|
94
94
|
*/
|
|
95
|
-
requestHandler?:
|
|
95
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
96
96
|
/**
|
|
97
97
|
* A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
|
|
98
98
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
@@ -72,7 +72,7 @@ declare const CreateFunctionCommand_base: {
|
|
|
72
72
|
* const client = new LambdaClient(config);
|
|
73
73
|
* const input = { // CreateFunctionRequest
|
|
74
74
|
* FunctionName: "STRING_VALUE", // required
|
|
75
|
-
* Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
75
|
+
* Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
76
76
|
* Role: "STRING_VALUE", // required
|
|
77
77
|
* Handler: "STRING_VALUE",
|
|
78
78
|
* Code: { // FunctionCode
|
|
@@ -151,7 +151,7 @@ declare const CreateFunctionCommand_base: {
|
|
|
151
151
|
* // { // FunctionConfiguration
|
|
152
152
|
* // FunctionName: "STRING_VALUE",
|
|
153
153
|
* // FunctionArn: "STRING_VALUE",
|
|
154
|
-
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
154
|
+
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
155
155
|
* // Role: "STRING_VALUE",
|
|
156
156
|
* // Handler: "STRING_VALUE",
|
|
157
157
|
* // CodeSize: Number("long"),
|
|
@@ -45,7 +45,7 @@ declare const GetFunctionCommand_base: {
|
|
|
45
45
|
* // Configuration: { // FunctionConfiguration
|
|
46
46
|
* // FunctionName: "STRING_VALUE",
|
|
47
47
|
* // FunctionArn: "STRING_VALUE",
|
|
48
|
-
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
48
|
+
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
49
49
|
* // Role: "STRING_VALUE",
|
|
50
50
|
* // Handler: "STRING_VALUE",
|
|
51
51
|
* // CodeSize: Number("long"),
|
|
@@ -44,7 +44,7 @@ declare const GetFunctionConfigurationCommand_base: {
|
|
|
44
44
|
* // { // FunctionConfiguration
|
|
45
45
|
* // FunctionName: "STRING_VALUE",
|
|
46
46
|
* // FunctionArn: "STRING_VALUE",
|
|
47
|
-
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
47
|
+
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
48
48
|
* // Role: "STRING_VALUE",
|
|
49
49
|
* // Handler: "STRING_VALUE",
|
|
50
50
|
* // CodeSize: Number("long"),
|
|
@@ -54,7 +54,7 @@ declare const GetLayerVersionByArnCommand_base: {
|
|
|
54
54
|
* // CreatedDate: "STRING_VALUE",
|
|
55
55
|
* // Version: Number("long"),
|
|
56
56
|
* // CompatibleRuntimes: [ // CompatibleRuntimes
|
|
57
|
-
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
57
|
+
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
58
58
|
* // ],
|
|
59
59
|
* // LicenseInfo: "STRING_VALUE",
|
|
60
60
|
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -55,7 +55,7 @@ declare const GetLayerVersionCommand_base: {
|
|
|
55
55
|
* // CreatedDate: "STRING_VALUE",
|
|
56
56
|
* // Version: Number("long"),
|
|
57
57
|
* // CompatibleRuntimes: [ // CompatibleRuntimes
|
|
58
|
-
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
58
|
+
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
59
59
|
* // ],
|
|
60
60
|
* // LicenseInfo: "STRING_VALUE",
|
|
61
61
|
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -55,7 +55,7 @@ declare const ListFunctionsCommand_base: {
|
|
|
55
55
|
* // { // FunctionConfiguration
|
|
56
56
|
* // FunctionName: "STRING_VALUE",
|
|
57
57
|
* // FunctionArn: "STRING_VALUE",
|
|
58
|
-
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
58
|
+
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
59
59
|
* // Role: "STRING_VALUE",
|
|
60
60
|
* // Handler: "STRING_VALUE",
|
|
61
61
|
* // CodeSize: Number("long"),
|
|
@@ -37,7 +37,7 @@ declare const ListLayerVersionsCommand_base: {
|
|
|
37
37
|
* // const { LambdaClient, ListLayerVersionsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
38
38
|
* const client = new LambdaClient(config);
|
|
39
39
|
* const input = { // ListLayerVersionsRequest
|
|
40
|
-
* CompatibleRuntime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
40
|
+
* CompatibleRuntime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
41
41
|
* LayerName: "STRING_VALUE", // required
|
|
42
42
|
* Marker: "STRING_VALUE",
|
|
43
43
|
* MaxItems: Number("int"),
|
|
@@ -54,7 +54,7 @@ declare const ListLayerVersionsCommand_base: {
|
|
|
54
54
|
* // Description: "STRING_VALUE",
|
|
55
55
|
* // CreatedDate: "STRING_VALUE",
|
|
56
56
|
* // CompatibleRuntimes: [ // CompatibleRuntimes
|
|
57
|
-
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
57
|
+
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
58
58
|
* // ],
|
|
59
59
|
* // LicenseInfo: "STRING_VALUE",
|
|
60
60
|
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -39,7 +39,7 @@ declare const ListLayersCommand_base: {
|
|
|
39
39
|
* // const { LambdaClient, ListLayersCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
40
40
|
* const client = new LambdaClient(config);
|
|
41
41
|
* const input = { // ListLayersRequest
|
|
42
|
-
* CompatibleRuntime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
42
|
+
* CompatibleRuntime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
43
43
|
* Marker: "STRING_VALUE",
|
|
44
44
|
* MaxItems: Number("int"),
|
|
45
45
|
* CompatibleArchitecture: "x86_64" || "arm64",
|
|
@@ -58,7 +58,7 @@ declare const ListLayersCommand_base: {
|
|
|
58
58
|
* // Description: "STRING_VALUE",
|
|
59
59
|
* // CreatedDate: "STRING_VALUE",
|
|
60
60
|
* // CompatibleRuntimes: [ // CompatibleRuntimes
|
|
61
|
-
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
61
|
+
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
62
62
|
* // ],
|
|
63
63
|
* // LicenseInfo: "STRING_VALUE",
|
|
64
64
|
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -47,7 +47,7 @@ declare const ListVersionsByFunctionCommand_base: {
|
|
|
47
47
|
* // { // FunctionConfiguration
|
|
48
48
|
* // FunctionName: "STRING_VALUE",
|
|
49
49
|
* // FunctionArn: "STRING_VALUE",
|
|
50
|
-
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
50
|
+
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
51
51
|
* // Role: "STRING_VALUE",
|
|
52
52
|
* // Handler: "STRING_VALUE",
|
|
53
53
|
* // CodeSize: Number("long"),
|
|
@@ -46,7 +46,7 @@ declare const PublishLayerVersionCommand_base: {
|
|
|
46
46
|
* ZipFile: "BLOB_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* CompatibleRuntimes: [ // CompatibleRuntimes
|
|
49
|
-
* "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
49
|
+
* "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
50
50
|
* ],
|
|
51
51
|
* LicenseInfo: "STRING_VALUE",
|
|
52
52
|
* CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -69,7 +69,7 @@ declare const PublishLayerVersionCommand_base: {
|
|
|
69
69
|
* // CreatedDate: "STRING_VALUE",
|
|
70
70
|
* // Version: Number("long"),
|
|
71
71
|
* // CompatibleRuntimes: [ // CompatibleRuntimes
|
|
72
|
-
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
72
|
+
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
73
73
|
* // ],
|
|
74
74
|
* // LicenseInfo: "STRING_VALUE",
|
|
75
75
|
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -50,7 +50,7 @@ declare const PublishVersionCommand_base: {
|
|
|
50
50
|
* // { // FunctionConfiguration
|
|
51
51
|
* // FunctionName: "STRING_VALUE",
|
|
52
52
|
* // FunctionArn: "STRING_VALUE",
|
|
53
|
-
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
53
|
+
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
54
54
|
* // Role: "STRING_VALUE",
|
|
55
55
|
* // Handler: "STRING_VALUE",
|
|
56
56
|
* // CodeSize: Number("long"),
|
|
@@ -67,7 +67,7 @@ declare const UpdateFunctionCodeCommand_base: {
|
|
|
67
67
|
* // { // FunctionConfiguration
|
|
68
68
|
* // FunctionName: "STRING_VALUE",
|
|
69
69
|
* // FunctionArn: "STRING_VALUE",
|
|
70
|
-
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
70
|
+
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
71
71
|
* // Role: "STRING_VALUE",
|
|
72
72
|
* // Handler: "STRING_VALUE",
|
|
73
73
|
* // CodeSize: Number("long"),
|
|
@@ -65,7 +65,7 @@ declare const UpdateFunctionConfigurationCommand_base: {
|
|
|
65
65
|
* "<keys>": "STRING_VALUE",
|
|
66
66
|
* },
|
|
67
67
|
* },
|
|
68
|
-
* Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
68
|
+
* Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
69
69
|
* DeadLetterConfig: { // DeadLetterConfig
|
|
70
70
|
* TargetArn: "STRING_VALUE",
|
|
71
71
|
* },
|
|
@@ -110,7 +110,7 @@ declare const UpdateFunctionConfigurationCommand_base: {
|
|
|
110
110
|
* // { // FunctionConfiguration
|
|
111
111
|
* // FunctionName: "STRING_VALUE",
|
|
112
112
|
* // FunctionArn: "STRING_VALUE",
|
|
113
|
-
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
113
|
+
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21",
|
|
114
114
|
* // Role: "STRING_VALUE",
|
|
115
115
|
* // Handler: "STRING_VALUE",
|
|
116
116
|
* // CodeSize: Number("long"),
|
|
@@ -611,7 +611,7 @@ export interface OnFailure {
|
|
|
611
611
|
* Amazon SQS queue as the destination.</p>
|
|
612
612
|
* <p>To retain records of failed invocations from <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-smaa-onfailure-destination">self-managed Kafka</a> or
|
|
613
613
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-onfailure-destination">Amazon MSK</a>,
|
|
614
|
-
* you can configure an Amazon SNS topic
|
|
614
|
+
* you can configure an Amazon SNS topic, Amazon SQS queue, or Amazon S3 bucket as the destination.</p>
|
|
615
615
|
*/
|
|
616
616
|
Destination?: string;
|
|
617
617
|
}
|
|
@@ -1156,7 +1156,7 @@ export interface EventSourceMappingConfiguration {
|
|
|
1156
1156
|
StateTransitionReason?: string;
|
|
1157
1157
|
/**
|
|
1158
1158
|
* @public
|
|
1159
|
-
* <p>(Kinesis
|
|
1159
|
+
* <p>(Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka event sources only) A configuration object that specifies the destination of an event after Lambda processes it.</p>
|
|
1160
1160
|
*/
|
|
1161
1161
|
DestinationConfig?: DestinationConfig;
|
|
1162
1162
|
/**
|
|
@@ -1460,6 +1460,7 @@ export type PackageType = (typeof PackageType)[keyof typeof PackageType];
|
|
|
1460
1460
|
*/
|
|
1461
1461
|
export declare const Runtime: {
|
|
1462
1462
|
readonly dotnet6: "dotnet6";
|
|
1463
|
+
readonly dotnet8: "dotnet8";
|
|
1463
1464
|
readonly dotnetcore10: "dotnetcore1.0";
|
|
1464
1465
|
readonly dotnetcore20: "dotnetcore2.0";
|
|
1465
1466
|
readonly dotnetcore21: "dotnetcore2.1";
|
|
@@ -12,10 +12,7 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
|
|
|
12
12
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
13
13
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
14
|
region: string | import("@smithy/types").Provider<any>;
|
|
15
|
-
requestHandler:
|
|
16
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
17
|
-
httpHandlerConfigs(): {};
|
|
18
|
-
}) | RequestHandler;
|
|
15
|
+
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
19
16
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
20
17
|
sha256: import("@smithy/types").HashConstructor;
|
|
21
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -12,10 +12,7 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
|
|
|
12
12
|
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
13
13
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
14
|
region: string | import("@smithy/types").Provider<string>;
|
|
15
|
-
requestHandler:
|
|
16
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
17
|
-
httpHandlerConfigs(): {};
|
|
18
|
-
}) | RequestHandler;
|
|
15
|
+
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
19
16
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
20
17
|
sha256: import("@smithy/types").HashConstructor;
|
|
21
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -5,10 +5,7 @@ import { LambdaClientConfig } from "./LambdaClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
-
requestHandler:
|
|
9
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
10
|
-
httpHandlerConfigs(): {};
|
|
11
|
-
}) | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
12
9
|
apiVersion: string;
|
|
13
10
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
RetryInputConfig,
|
|
23
23
|
RetryResolvedConfig,
|
|
24
24
|
} from "@smithy/middleware-retry";
|
|
25
|
-
import {
|
|
25
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
26
26
|
import {
|
|
27
27
|
Client as __Client,
|
|
28
28
|
DefaultsMode as __DefaultsMode,
|
|
@@ -456,8 +456,8 @@ export type ServiceOutputTypes =
|
|
|
456
456
|
| UpdateFunctionEventInvokeConfigCommandOutput
|
|
457
457
|
| UpdateFunctionUrlConfigCommandOutput;
|
|
458
458
|
export interface ClientDefaults
|
|
459
|
-
extends Partial<
|
|
460
|
-
requestHandler?:
|
|
459
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
460
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
461
461
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
462
462
|
urlParser?: __UrlParser;
|
|
463
463
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
@@ -382,6 +382,7 @@ export declare const PackageType: {
|
|
|
382
382
|
export type PackageType = (typeof PackageType)[keyof typeof PackageType];
|
|
383
383
|
export declare const Runtime: {
|
|
384
384
|
readonly dotnet6: "dotnet6";
|
|
385
|
+
readonly dotnet8: "dotnet8";
|
|
385
386
|
readonly dotnetcore10: "dotnetcore1.0";
|
|
386
387
|
readonly dotnetcore20: "dotnetcore2.0";
|
|
387
388
|
readonly dotnetcore21: "dotnetcore2.1";
|
|
@@ -16,19 +16,7 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
|
|
|
16
16
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
17
17
|
region: string | import("@smithy/types").Provider<any>;
|
|
18
18
|
requestHandler:
|
|
19
|
-
|
|
|
20
|
-
any,
|
|
21
|
-
any,
|
|
22
|
-
import("@smithy/types").HttpHandlerOptions
|
|
23
|
-
> &
|
|
24
|
-
import("@smithy/types").RequestHandler<
|
|
25
|
-
import("@smithy/protocol-http").HttpRequest,
|
|
26
|
-
import("@smithy/protocol-http").HttpResponse,
|
|
27
|
-
import("@smithy/types").HttpHandlerOptions
|
|
28
|
-
> & {
|
|
29
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
30
|
-
httpHandlerConfigs(): {};
|
|
31
|
-
})
|
|
19
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
32
20
|
| RequestHandler;
|
|
33
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
34
22
|
sha256: import("@smithy/types").HashConstructor;
|
|
@@ -20,20 +20,8 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
|
|
|
20
20
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
21
|
region: string | import("@smithy/types").Provider<string>;
|
|
22
22
|
requestHandler:
|
|
23
|
-
|
|
|
24
|
-
|
|
25
|
-
any,
|
|
26
|
-
import("@smithy/types").HttpHandlerOptions
|
|
27
|
-
> &
|
|
28
|
-
import("@smithy/types").RequestHandler<
|
|
29
|
-
import("@smithy/protocol-http").HttpRequest,
|
|
30
|
-
import("@smithy/protocol-http").HttpResponse,
|
|
31
|
-
import("@smithy/types").HttpHandlerOptions
|
|
32
|
-
> & {
|
|
33
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
34
|
-
httpHandlerConfigs(): {};
|
|
35
|
-
})
|
|
36
|
-
| RequestHandler;
|
|
23
|
+
| RequestHandler
|
|
24
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
37
25
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
26
|
sha256: import("@smithy/types").HashConstructor;
|
|
39
27
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -3,19 +3,10 @@ export declare const getRuntimeConfig: (config: LambdaClientConfig) => {
|
|
|
3
3
|
runtime: string;
|
|
4
4
|
sha256: import("@smithy/types").HashConstructor;
|
|
5
5
|
requestHandler:
|
|
6
|
-
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
> &
|
|
11
|
-
import("@smithy/types").RequestHandler<
|
|
12
|
-
import("@smithy/protocol-http").HttpRequest,
|
|
13
|
-
import("@smithy/protocol-http").HttpResponse,
|
|
14
|
-
import("@smithy/types").HttpHandlerOptions
|
|
15
|
-
> & {
|
|
16
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
17
|
-
httpHandlerConfigs(): {};
|
|
18
|
-
})
|
|
6
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
8
|
+
| Record<string, unknown>
|
|
9
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
19
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
20
11
|
apiVersion: string;
|
|
21
12
|
urlParser: import("@smithy/types").UrlParser;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lambda",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.521.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-lambda",
|
|
@@ -20,48 +20,48 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.1.
|
|
36
|
-
"@smithy/core": "^1.3.
|
|
37
|
-
"@smithy/eventstream-serde-browser": "^2.1.
|
|
38
|
-
"@smithy/eventstream-serde-config-resolver": "^2.1.
|
|
39
|
-
"@smithy/eventstream-serde-node": "^2.1.
|
|
40
|
-
"@smithy/fetch-http-handler": "^2.4.
|
|
41
|
-
"@smithy/hash-node": "^2.1.
|
|
42
|
-
"@smithy/invalid-dependency": "^2.1.
|
|
43
|
-
"@smithy/middleware-content-length": "^2.1.
|
|
44
|
-
"@smithy/middleware-endpoint": "^2.4.
|
|
45
|
-
"@smithy/middleware-retry": "^2.1.
|
|
46
|
-
"@smithy/middleware-serde": "^2.1.
|
|
47
|
-
"@smithy/middleware-stack": "^2.1.
|
|
48
|
-
"@smithy/node-config-provider": "^2.2.
|
|
49
|
-
"@smithy/node-http-handler": "^2.
|
|
50
|
-
"@smithy/protocol-http": "^3.
|
|
51
|
-
"@smithy/smithy-client": "^2.
|
|
52
|
-
"@smithy/types": "^2.
|
|
53
|
-
"@smithy/url-parser": "^2.1.
|
|
23
|
+
"@aws-sdk/client-sts": "3.521.0",
|
|
24
|
+
"@aws-sdk/core": "3.521.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.521.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.521.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.521.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.521.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.521.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.521.0",
|
|
31
|
+
"@aws-sdk/types": "3.521.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.521.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.521.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.521.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.1.2",
|
|
36
|
+
"@smithy/core": "^1.3.3",
|
|
37
|
+
"@smithy/eventstream-serde-browser": "^2.1.2",
|
|
38
|
+
"@smithy/eventstream-serde-config-resolver": "^2.1.2",
|
|
39
|
+
"@smithy/eventstream-serde-node": "^2.1.2",
|
|
40
|
+
"@smithy/fetch-http-handler": "^2.4.2",
|
|
41
|
+
"@smithy/hash-node": "^2.1.2",
|
|
42
|
+
"@smithy/invalid-dependency": "^2.1.2",
|
|
43
|
+
"@smithy/middleware-content-length": "^2.1.2",
|
|
44
|
+
"@smithy/middleware-endpoint": "^2.4.2",
|
|
45
|
+
"@smithy/middleware-retry": "^2.1.2",
|
|
46
|
+
"@smithy/middleware-serde": "^2.1.2",
|
|
47
|
+
"@smithy/middleware-stack": "^2.1.2",
|
|
48
|
+
"@smithy/node-config-provider": "^2.2.2",
|
|
49
|
+
"@smithy/node-http-handler": "^2.4.0",
|
|
50
|
+
"@smithy/protocol-http": "^3.2.0",
|
|
51
|
+
"@smithy/smithy-client": "^2.4.0",
|
|
52
|
+
"@smithy/types": "^2.10.0",
|
|
53
|
+
"@smithy/url-parser": "^2.1.2",
|
|
54
54
|
"@smithy/util-base64": "^2.1.1",
|
|
55
55
|
"@smithy/util-body-length-browser": "^2.1.1",
|
|
56
56
|
"@smithy/util-body-length-node": "^2.2.1",
|
|
57
|
-
"@smithy/util-defaults-mode-browser": "^2.1.
|
|
58
|
-
"@smithy/util-defaults-mode-node": "^2.2.
|
|
59
|
-
"@smithy/util-endpoints": "^1.1.
|
|
60
|
-
"@smithy/util-middleware": "^2.1.
|
|
61
|
-
"@smithy/util-retry": "^2.1.
|
|
62
|
-
"@smithy/util-stream": "^2.1.
|
|
57
|
+
"@smithy/util-defaults-mode-browser": "^2.1.2",
|
|
58
|
+
"@smithy/util-defaults-mode-node": "^2.2.1",
|
|
59
|
+
"@smithy/util-endpoints": "^1.1.2",
|
|
60
|
+
"@smithy/util-middleware": "^2.1.2",
|
|
61
|
+
"@smithy/util-retry": "^2.1.2",
|
|
62
|
+
"@smithy/util-stream": "^2.1.2",
|
|
63
63
|
"@smithy/util-utf8": "^2.1.1",
|
|
64
|
-
"@smithy/util-waiter": "^2.1.
|
|
64
|
+
"@smithy/util-waiter": "^2.1.2",
|
|
65
65
|
"tslib": "^2.5.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|