@aws-sdk/client-lambda 3.750.0 → 3.771.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 +97 -100
- package/dist-es/models/models_0.js +1 -0
- 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/InvokeAsyncCommand.d.ts +2 -1
- package/dist-types/commands/InvokeCommand.d.ts +2 -1
- package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +2 -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 +10 -8
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -19,8 +19,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// src/index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
AddLayerVersionPermissionCommand: () => AddLayerVersionPermissionCommand,
|
|
25
25
|
AddPermissionCommand: () => AddPermissionCommand,
|
|
26
26
|
ApplicationLogLevel: () => ApplicationLogLevel,
|
|
@@ -210,7 +210,7 @@ __export(src_exports, {
|
|
|
210
210
|
waitUntilFunctionUpdatedV2: () => waitUntilFunctionUpdatedV2,
|
|
211
211
|
waitUntilPublishedVersionActive: () => waitUntilPublishedVersionActive
|
|
212
212
|
});
|
|
213
|
-
module.exports = __toCommonJS(
|
|
213
|
+
module.exports = __toCommonJS(index_exports);
|
|
214
214
|
|
|
215
215
|
// src/LambdaClient.ts
|
|
216
216
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
@@ -339,9 +339,9 @@ var LambdaClient = class extends import_smithy_client.Client {
|
|
|
339
339
|
this.middlewareStack.use(
|
|
340
340
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
341
341
|
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultLambdaHttpAuthSchemeParametersProvider,
|
|
342
|
-
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
342
|
+
identityProviderConfigProvider: /* @__PURE__ */ __name(async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
343
343
|
"aws.auth#sigv4": config.credentials
|
|
344
|
-
})
|
|
344
|
+
}), "identityProviderConfigProvider")
|
|
345
345
|
})
|
|
346
346
|
);
|
|
347
347
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -727,7 +727,8 @@ var Runtime = {
|
|
|
727
727
|
ruby25: "ruby2.5",
|
|
728
728
|
ruby27: "ruby2.7",
|
|
729
729
|
ruby32: "ruby3.2",
|
|
730
|
-
ruby33: "ruby3.3"
|
|
730
|
+
ruby33: "ruby3.3",
|
|
731
|
+
ruby34: "ruby3.4"
|
|
731
732
|
};
|
|
732
733
|
var SnapStartApplyOn = {
|
|
733
734
|
None: "None",
|
|
@@ -1459,10 +1460,8 @@ var ResponseStreamingInvocationType = {
|
|
|
1459
1460
|
var InvokeWithResponseStreamResponseEvent;
|
|
1460
1461
|
((InvokeWithResponseStreamResponseEvent3) => {
|
|
1461
1462
|
InvokeWithResponseStreamResponseEvent3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
1462
|
-
if (value.PayloadChunk !== void 0)
|
|
1463
|
-
|
|
1464
|
-
if (value.InvokeComplete !== void 0)
|
|
1465
|
-
return visitor.InvokeComplete(value.InvokeComplete);
|
|
1463
|
+
if (value.PayloadChunk !== void 0) return visitor.PayloadChunk(value.PayloadChunk);
|
|
1464
|
+
if (value.InvokeComplete !== void 0) return visitor.InvokeComplete(value.InvokeComplete);
|
|
1466
1465
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1467
1466
|
}, "visit");
|
|
1468
1467
|
})(InvokeWithResponseStreamResponseEvent || (InvokeWithResponseStreamResponseEvent = {}));
|
|
@@ -1543,10 +1542,8 @@ var InvokeResponseStreamUpdateFilterSensitiveLog = /* @__PURE__ */ __name((obj)
|
|
|
1543
1542
|
var InvokeWithResponseStreamResponseEventFilterSensitiveLog = /* @__PURE__ */ __name((obj) => {
|
|
1544
1543
|
if (obj.PayloadChunk !== void 0)
|
|
1545
1544
|
return { PayloadChunk: InvokeResponseStreamUpdateFilterSensitiveLog(obj.PayloadChunk) };
|
|
1546
|
-
if (obj.InvokeComplete !== void 0)
|
|
1547
|
-
|
|
1548
|
-
if (obj.$unknown !== void 0)
|
|
1549
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1545
|
+
if (obj.InvokeComplete !== void 0) return { InvokeComplete: obj.InvokeComplete };
|
|
1546
|
+
if (obj.$unknown !== void 0) return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1550
1547
|
}, "InvokeWithResponseStreamResponseEventFilterSensitiveLog");
|
|
1551
1548
|
var InvokeWithResponseStreamResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1552
1549
|
...obj,
|
|
@@ -1641,7 +1638,7 @@ var se_CreateAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1641
1638
|
Description: [],
|
|
1642
1639
|
FunctionVersion: [],
|
|
1643
1640
|
Name: [],
|
|
1644
|
-
RoutingConfig: (_) => se_AliasRoutingConfiguration(_, context)
|
|
1641
|
+
RoutingConfig: /* @__PURE__ */ __name((_) => se_AliasRoutingConfiguration(_, context), "RoutingConfig")
|
|
1645
1642
|
})
|
|
1646
1643
|
);
|
|
1647
1644
|
b.m("POST").h(headers).b(body);
|
|
@@ -1656,10 +1653,10 @@ var se_CreateCodeSigningConfigCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1656
1653
|
let body;
|
|
1657
1654
|
body = JSON.stringify(
|
|
1658
1655
|
(0, import_smithy_client.take)(input, {
|
|
1659
|
-
AllowedPublishers: (_) => (0, import_smithy_client._json)(_),
|
|
1660
|
-
CodeSigningPolicies: (_) => (0, import_smithy_client._json)(_),
|
|
1656
|
+
AllowedPublishers: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "AllowedPublishers"),
|
|
1657
|
+
CodeSigningPolicies: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "CodeSigningPolicies"),
|
|
1661
1658
|
Description: [],
|
|
1662
|
-
Tags: (_) => (0, import_smithy_client._json)(_)
|
|
1659
|
+
Tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Tags")
|
|
1663
1660
|
})
|
|
1664
1661
|
);
|
|
1665
1662
|
b.m("POST").h(headers).b(body);
|
|
@@ -1674,32 +1671,32 @@ var se_CreateEventSourceMappingCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
1674
1671
|
let body;
|
|
1675
1672
|
body = JSON.stringify(
|
|
1676
1673
|
(0, import_smithy_client.take)(input, {
|
|
1677
|
-
AmazonManagedKafkaEventSourceConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1674
|
+
AmazonManagedKafkaEventSourceConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "AmazonManagedKafkaEventSourceConfig"),
|
|
1678
1675
|
BatchSize: [],
|
|
1679
1676
|
BisectBatchOnFunctionError: [],
|
|
1680
|
-
DestinationConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1681
|
-
DocumentDBEventSourceConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1677
|
+
DestinationConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "DestinationConfig"),
|
|
1678
|
+
DocumentDBEventSourceConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "DocumentDBEventSourceConfig"),
|
|
1682
1679
|
Enabled: [],
|
|
1683
1680
|
EventSourceArn: [],
|
|
1684
|
-
FilterCriteria: (_) => (0, import_smithy_client._json)(_),
|
|
1681
|
+
FilterCriteria: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "FilterCriteria"),
|
|
1685
1682
|
FunctionName: [],
|
|
1686
|
-
FunctionResponseTypes: (_) => (0, import_smithy_client._json)(_),
|
|
1683
|
+
FunctionResponseTypes: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "FunctionResponseTypes"),
|
|
1687
1684
|
KMSKeyArn: [],
|
|
1688
1685
|
MaximumBatchingWindowInSeconds: [],
|
|
1689
1686
|
MaximumRecordAgeInSeconds: [],
|
|
1690
1687
|
MaximumRetryAttempts: [],
|
|
1691
|
-
MetricsConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1688
|
+
MetricsConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "MetricsConfig"),
|
|
1692
1689
|
ParallelizationFactor: [],
|
|
1693
|
-
ProvisionedPollerConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1694
|
-
Queues: (_) => (0, import_smithy_client._json)(_),
|
|
1695
|
-
ScalingConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1696
|
-
SelfManagedEventSource: (_) => (0, import_smithy_client._json)(_),
|
|
1697
|
-
SelfManagedKafkaEventSourceConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1698
|
-
SourceAccessConfigurations: (_) => (0, import_smithy_client._json)(_),
|
|
1690
|
+
ProvisionedPollerConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "ProvisionedPollerConfig"),
|
|
1691
|
+
Queues: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Queues"),
|
|
1692
|
+
ScalingConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "ScalingConfig"),
|
|
1693
|
+
SelfManagedEventSource: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "SelfManagedEventSource"),
|
|
1694
|
+
SelfManagedKafkaEventSourceConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "SelfManagedKafkaEventSourceConfig"),
|
|
1695
|
+
SourceAccessConfigurations: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "SourceAccessConfigurations"),
|
|
1699
1696
|
StartingPosition: [],
|
|
1700
|
-
StartingPositionTimestamp: (_) => _.getTime() / 1e3,
|
|
1701
|
-
Tags: (_) => (0, import_smithy_client._json)(_),
|
|
1702
|
-
Topics: (_) => (0, import_smithy_client._json)(_),
|
|
1697
|
+
StartingPositionTimestamp: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "StartingPositionTimestamp"),
|
|
1698
|
+
Tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Tags"),
|
|
1699
|
+
Topics: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Topics"),
|
|
1703
1700
|
TumblingWindowInSeconds: []
|
|
1704
1701
|
})
|
|
1705
1702
|
);
|
|
@@ -1715,30 +1712,30 @@ var se_CreateFunctionCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1715
1712
|
let body;
|
|
1716
1713
|
body = JSON.stringify(
|
|
1717
1714
|
(0, import_smithy_client.take)(input, {
|
|
1718
|
-
Architectures: (_) => (0, import_smithy_client._json)(_),
|
|
1719
|
-
Code: (_) => se_FunctionCode(_, context),
|
|
1715
|
+
Architectures: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Architectures"),
|
|
1716
|
+
Code: /* @__PURE__ */ __name((_) => se_FunctionCode(_, context), "Code"),
|
|
1720
1717
|
CodeSigningConfigArn: [],
|
|
1721
|
-
DeadLetterConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1718
|
+
DeadLetterConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "DeadLetterConfig"),
|
|
1722
1719
|
Description: [],
|
|
1723
|
-
Environment: (_) => (0, import_smithy_client._json)(_),
|
|
1724
|
-
EphemeralStorage: (_) => (0, import_smithy_client._json)(_),
|
|
1725
|
-
FileSystemConfigs: (_) => (0, import_smithy_client._json)(_),
|
|
1720
|
+
Environment: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Environment"),
|
|
1721
|
+
EphemeralStorage: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "EphemeralStorage"),
|
|
1722
|
+
FileSystemConfigs: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "FileSystemConfigs"),
|
|
1726
1723
|
FunctionName: [],
|
|
1727
1724
|
Handler: [],
|
|
1728
|
-
ImageConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1725
|
+
ImageConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "ImageConfig"),
|
|
1729
1726
|
KMSKeyArn: [],
|
|
1730
|
-
Layers: (_) => (0, import_smithy_client._json)(_),
|
|
1731
|
-
LoggingConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1727
|
+
Layers: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Layers"),
|
|
1728
|
+
LoggingConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "LoggingConfig"),
|
|
1732
1729
|
MemorySize: [],
|
|
1733
1730
|
PackageType: [],
|
|
1734
1731
|
Publish: [],
|
|
1735
1732
|
Role: [],
|
|
1736
1733
|
Runtime: [],
|
|
1737
|
-
SnapStart: (_) => (0, import_smithy_client._json)(_),
|
|
1738
|
-
Tags: (_) => (0, import_smithy_client._json)(_),
|
|
1734
|
+
SnapStart: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "SnapStart"),
|
|
1735
|
+
Tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Tags"),
|
|
1739
1736
|
Timeout: [],
|
|
1740
|
-
TracingConfig: (_) => (0, import_smithy_client._json)(_),
|
|
1741
|
-
VpcConfig: (_) => (0, import_smithy_client._json)(_)
|
|
1737
|
+
TracingConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "TracingConfig"),
|
|
1738
|
+
VpcConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "VpcConfig")
|
|
1742
1739
|
})
|
|
1743
1740
|
);
|
|
1744
1741
|
b.m("POST").h(headers).b(body);
|
|
@@ -1758,7 +1755,7 @@ var se_CreateFunctionUrlConfigCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1758
1755
|
body = JSON.stringify(
|
|
1759
1756
|
(0, import_smithy_client.take)(input, {
|
|
1760
1757
|
AuthType: [],
|
|
1761
|
-
Cors: (_) => (0, import_smithy_client._json)(_),
|
|
1758
|
+
Cors: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Cors"),
|
|
1762
1759
|
InvokeMode: []
|
|
1763
1760
|
})
|
|
1764
1761
|
);
|
|
@@ -2270,9 +2267,9 @@ var se_PublishLayerVersionCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
2270
2267
|
let body;
|
|
2271
2268
|
body = JSON.stringify(
|
|
2272
2269
|
(0, import_smithy_client.take)(input, {
|
|
2273
|
-
CompatibleArchitectures: (_) => (0, import_smithy_client._json)(_),
|
|
2274
|
-
CompatibleRuntimes: (_) => (0, import_smithy_client._json)(_),
|
|
2275
|
-
Content: (_) => se_LayerVersionContentInput(_, context),
|
|
2270
|
+
CompatibleArchitectures: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "CompatibleArchitectures"),
|
|
2271
|
+
CompatibleRuntimes: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "CompatibleRuntimes"),
|
|
2272
|
+
Content: /* @__PURE__ */ __name((_) => se_LayerVersionContentInput(_, context), "Content"),
|
|
2276
2273
|
Description: [],
|
|
2277
2274
|
LicenseInfo: []
|
|
2278
2275
|
})
|
|
@@ -2343,7 +2340,7 @@ var se_PutFunctionEventInvokeConfigCommand = /* @__PURE__ */ __name(async (input
|
|
|
2343
2340
|
let body;
|
|
2344
2341
|
body = JSON.stringify(
|
|
2345
2342
|
(0, import_smithy_client.take)(input, {
|
|
2346
|
-
DestinationConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2343
|
+
DestinationConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "DestinationConfig"),
|
|
2347
2344
|
MaximumEventAgeInSeconds: [],
|
|
2348
2345
|
MaximumRetryAttempts: []
|
|
2349
2346
|
})
|
|
@@ -2444,7 +2441,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2444
2441
|
let body;
|
|
2445
2442
|
body = JSON.stringify(
|
|
2446
2443
|
(0, import_smithy_client.take)(input, {
|
|
2447
|
-
Tags: (_) => (0, import_smithy_client._json)(_)
|
|
2444
|
+
Tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Tags")
|
|
2448
2445
|
})
|
|
2449
2446
|
);
|
|
2450
2447
|
b.m("POST").h(headers).b(body);
|
|
@@ -2476,7 +2473,7 @@ var se_UpdateAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2476
2473
|
Description: [],
|
|
2477
2474
|
FunctionVersion: [],
|
|
2478
2475
|
RevisionId: [],
|
|
2479
|
-
RoutingConfig: (_) => se_AliasRoutingConfiguration(_, context)
|
|
2476
|
+
RoutingConfig: /* @__PURE__ */ __name((_) => se_AliasRoutingConfiguration(_, context), "RoutingConfig")
|
|
2480
2477
|
})
|
|
2481
2478
|
);
|
|
2482
2479
|
b.m("PUT").h(headers).b(body);
|
|
@@ -2492,8 +2489,8 @@ var se_UpdateCodeSigningConfigCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2492
2489
|
let body;
|
|
2493
2490
|
body = JSON.stringify(
|
|
2494
2491
|
(0, import_smithy_client.take)(input, {
|
|
2495
|
-
AllowedPublishers: (_) => (0, import_smithy_client._json)(_),
|
|
2496
|
-
CodeSigningPolicies: (_) => (0, import_smithy_client._json)(_),
|
|
2492
|
+
AllowedPublishers: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "AllowedPublishers"),
|
|
2493
|
+
CodeSigningPolicies: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "CodeSigningPolicies"),
|
|
2497
2494
|
Description: []
|
|
2498
2495
|
})
|
|
2499
2496
|
);
|
|
@@ -2512,21 +2509,21 @@ var se_UpdateEventSourceMappingCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2512
2509
|
(0, import_smithy_client.take)(input, {
|
|
2513
2510
|
BatchSize: [],
|
|
2514
2511
|
BisectBatchOnFunctionError: [],
|
|
2515
|
-
DestinationConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2516
|
-
DocumentDBEventSourceConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2512
|
+
DestinationConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "DestinationConfig"),
|
|
2513
|
+
DocumentDBEventSourceConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "DocumentDBEventSourceConfig"),
|
|
2517
2514
|
Enabled: [],
|
|
2518
|
-
FilterCriteria: (_) => (0, import_smithy_client._json)(_),
|
|
2515
|
+
FilterCriteria: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "FilterCriteria"),
|
|
2519
2516
|
FunctionName: [],
|
|
2520
|
-
FunctionResponseTypes: (_) => (0, import_smithy_client._json)(_),
|
|
2517
|
+
FunctionResponseTypes: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "FunctionResponseTypes"),
|
|
2521
2518
|
KMSKeyArn: [],
|
|
2522
2519
|
MaximumBatchingWindowInSeconds: [],
|
|
2523
2520
|
MaximumRecordAgeInSeconds: [],
|
|
2524
2521
|
MaximumRetryAttempts: [],
|
|
2525
|
-
MetricsConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2522
|
+
MetricsConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "MetricsConfig"),
|
|
2526
2523
|
ParallelizationFactor: [],
|
|
2527
|
-
ProvisionedPollerConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2528
|
-
ScalingConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2529
|
-
SourceAccessConfigurations: (_) => (0, import_smithy_client._json)(_),
|
|
2524
|
+
ProvisionedPollerConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "ProvisionedPollerConfig"),
|
|
2525
|
+
ScalingConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "ScalingConfig"),
|
|
2526
|
+
SourceAccessConfigurations: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "SourceAccessConfigurations"),
|
|
2530
2527
|
TumblingWindowInSeconds: []
|
|
2531
2528
|
})
|
|
2532
2529
|
);
|
|
@@ -2543,7 +2540,7 @@ var se_UpdateFunctionCodeCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2543
2540
|
let body;
|
|
2544
2541
|
body = JSON.stringify(
|
|
2545
2542
|
(0, import_smithy_client.take)(input, {
|
|
2546
|
-
Architectures: (_) => (0, import_smithy_client._json)(_),
|
|
2543
|
+
Architectures: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Architectures"),
|
|
2547
2544
|
DryRun: [],
|
|
2548
2545
|
ImageUri: [],
|
|
2549
2546
|
Publish: [],
|
|
@@ -2552,7 +2549,7 @@ var se_UpdateFunctionCodeCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2552
2549
|
S3Key: [],
|
|
2553
2550
|
S3ObjectVersion: [],
|
|
2554
2551
|
SourceKMSKeyArn: [],
|
|
2555
|
-
ZipFile: (_) => context.base64Encoder(_)
|
|
2552
|
+
ZipFile: /* @__PURE__ */ __name((_) => context.base64Encoder(_), "ZipFile")
|
|
2556
2553
|
})
|
|
2557
2554
|
);
|
|
2558
2555
|
b.m("PUT").h(headers).b(body);
|
|
@@ -2568,24 +2565,24 @@ var se_UpdateFunctionConfigurationCommand = /* @__PURE__ */ __name(async (input,
|
|
|
2568
2565
|
let body;
|
|
2569
2566
|
body = JSON.stringify(
|
|
2570
2567
|
(0, import_smithy_client.take)(input, {
|
|
2571
|
-
DeadLetterConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2568
|
+
DeadLetterConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "DeadLetterConfig"),
|
|
2572
2569
|
Description: [],
|
|
2573
|
-
Environment: (_) => (0, import_smithy_client._json)(_),
|
|
2574
|
-
EphemeralStorage: (_) => (0, import_smithy_client._json)(_),
|
|
2575
|
-
FileSystemConfigs: (_) => (0, import_smithy_client._json)(_),
|
|
2570
|
+
Environment: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Environment"),
|
|
2571
|
+
EphemeralStorage: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "EphemeralStorage"),
|
|
2572
|
+
FileSystemConfigs: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "FileSystemConfigs"),
|
|
2576
2573
|
Handler: [],
|
|
2577
|
-
ImageConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2574
|
+
ImageConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "ImageConfig"),
|
|
2578
2575
|
KMSKeyArn: [],
|
|
2579
|
-
Layers: (_) => (0, import_smithy_client._json)(_),
|
|
2580
|
-
LoggingConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2576
|
+
Layers: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Layers"),
|
|
2577
|
+
LoggingConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "LoggingConfig"),
|
|
2581
2578
|
MemorySize: [],
|
|
2582
2579
|
RevisionId: [],
|
|
2583
2580
|
Role: [],
|
|
2584
2581
|
Runtime: [],
|
|
2585
|
-
SnapStart: (_) => (0, import_smithy_client._json)(_),
|
|
2582
|
+
SnapStart: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "SnapStart"),
|
|
2586
2583
|
Timeout: [],
|
|
2587
|
-
TracingConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2588
|
-
VpcConfig: (_) => (0, import_smithy_client._json)(_)
|
|
2584
|
+
TracingConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "TracingConfig"),
|
|
2585
|
+
VpcConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "VpcConfig")
|
|
2589
2586
|
})
|
|
2590
2587
|
);
|
|
2591
2588
|
b.m("PUT").h(headers).b(body);
|
|
@@ -2604,7 +2601,7 @@ var se_UpdateFunctionEventInvokeConfigCommand = /* @__PURE__ */ __name(async (in
|
|
|
2604
2601
|
let body;
|
|
2605
2602
|
body = JSON.stringify(
|
|
2606
2603
|
(0, import_smithy_client.take)(input, {
|
|
2607
|
-
DestinationConfig: (_) => (0, import_smithy_client._json)(_),
|
|
2604
|
+
DestinationConfig: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "DestinationConfig"),
|
|
2608
2605
|
MaximumEventAgeInSeconds: [],
|
|
2609
2606
|
MaximumRetryAttempts: []
|
|
2610
2607
|
})
|
|
@@ -2626,7 +2623,7 @@ var se_UpdateFunctionUrlConfigCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2626
2623
|
body = JSON.stringify(
|
|
2627
2624
|
(0, import_smithy_client.take)(input, {
|
|
2628
2625
|
AuthType: [],
|
|
2629
|
-
Cors: (_) => (0, import_smithy_client._json)(_),
|
|
2626
|
+
Cors: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Cors"),
|
|
2630
2627
|
InvokeMode: []
|
|
2631
2628
|
})
|
|
2632
2629
|
);
|
|
@@ -2676,7 +2673,7 @@ var de_CreateAliasCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
2676
2673
|
FunctionVersion: import_smithy_client.expectString,
|
|
2677
2674
|
Name: import_smithy_client.expectString,
|
|
2678
2675
|
RevisionId: import_smithy_client.expectString,
|
|
2679
|
-
RoutingConfig: (_) => de_AliasRoutingConfiguration(_, context)
|
|
2676
|
+
RoutingConfig: /* @__PURE__ */ __name((_) => de_AliasRoutingConfiguration(_, context), "RoutingConfig")
|
|
2680
2677
|
});
|
|
2681
2678
|
Object.assign(contents, doc);
|
|
2682
2679
|
return contents;
|
|
@@ -2716,7 +2713,7 @@ var de_CreateEventSourceMappingCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
2716
2713
|
FunctionArn: import_smithy_client.expectString,
|
|
2717
2714
|
FunctionResponseTypes: import_smithy_client._json,
|
|
2718
2715
|
KMSKeyArn: import_smithy_client.expectString,
|
|
2719
|
-
LastModified: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2716
|
+
LastModified: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModified"),
|
|
2720
2717
|
LastProcessingResult: import_smithy_client.expectString,
|
|
2721
2718
|
MaximumBatchingWindowInSeconds: import_smithy_client.expectInt32,
|
|
2722
2719
|
MaximumRecordAgeInSeconds: import_smithy_client.expectInt32,
|
|
@@ -2730,7 +2727,7 @@ var de_CreateEventSourceMappingCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
2730
2727
|
SelfManagedKafkaEventSourceConfig: import_smithy_client._json,
|
|
2731
2728
|
SourceAccessConfigurations: import_smithy_client._json,
|
|
2732
2729
|
StartingPosition: import_smithy_client.expectString,
|
|
2733
|
-
StartingPositionTimestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2730
|
+
StartingPositionTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartingPositionTimestamp"),
|
|
2734
2731
|
State: import_smithy_client.expectString,
|
|
2735
2732
|
StateTransitionReason: import_smithy_client.expectString,
|
|
2736
2733
|
Topics: import_smithy_client._json,
|
|
@@ -2849,7 +2846,7 @@ var de_DeleteEventSourceMappingCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
2849
2846
|
FunctionArn: import_smithy_client.expectString,
|
|
2850
2847
|
FunctionResponseTypes: import_smithy_client._json,
|
|
2851
2848
|
KMSKeyArn: import_smithy_client.expectString,
|
|
2852
|
-
LastModified: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2849
|
+
LastModified: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModified"),
|
|
2853
2850
|
LastProcessingResult: import_smithy_client.expectString,
|
|
2854
2851
|
MaximumBatchingWindowInSeconds: import_smithy_client.expectInt32,
|
|
2855
2852
|
MaximumRecordAgeInSeconds: import_smithy_client.expectInt32,
|
|
@@ -2863,7 +2860,7 @@ var de_DeleteEventSourceMappingCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
2863
2860
|
SelfManagedKafkaEventSourceConfig: import_smithy_client._json,
|
|
2864
2861
|
SourceAccessConfigurations: import_smithy_client._json,
|
|
2865
2862
|
StartingPosition: import_smithy_client.expectString,
|
|
2866
|
-
StartingPositionTimestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2863
|
+
StartingPositionTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartingPositionTimestamp"),
|
|
2867
2864
|
State: import_smithy_client.expectString,
|
|
2868
2865
|
StateTransitionReason: import_smithy_client.expectString,
|
|
2869
2866
|
Topics: import_smithy_client._json,
|
|
@@ -2972,7 +2969,7 @@ var de_GetAliasCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
2972
2969
|
FunctionVersion: import_smithy_client.expectString,
|
|
2973
2970
|
Name: import_smithy_client.expectString,
|
|
2974
2971
|
RevisionId: import_smithy_client.expectString,
|
|
2975
|
-
RoutingConfig: (_) => de_AliasRoutingConfiguration(_, context)
|
|
2972
|
+
RoutingConfig: /* @__PURE__ */ __name((_) => de_AliasRoutingConfiguration(_, context), "RoutingConfig")
|
|
2976
2973
|
});
|
|
2977
2974
|
Object.assign(contents, doc);
|
|
2978
2975
|
return contents;
|
|
@@ -3012,7 +3009,7 @@ var de_GetEventSourceMappingCommand = /* @__PURE__ */ __name(async (output, cont
|
|
|
3012
3009
|
FunctionArn: import_smithy_client.expectString,
|
|
3013
3010
|
FunctionResponseTypes: import_smithy_client._json,
|
|
3014
3011
|
KMSKeyArn: import_smithy_client.expectString,
|
|
3015
|
-
LastModified: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
3012
|
+
LastModified: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModified"),
|
|
3016
3013
|
LastProcessingResult: import_smithy_client.expectString,
|
|
3017
3014
|
MaximumBatchingWindowInSeconds: import_smithy_client.expectInt32,
|
|
3018
3015
|
MaximumRecordAgeInSeconds: import_smithy_client.expectInt32,
|
|
@@ -3026,7 +3023,7 @@ var de_GetEventSourceMappingCommand = /* @__PURE__ */ __name(async (output, cont
|
|
|
3026
3023
|
SelfManagedKafkaEventSourceConfig: import_smithy_client._json,
|
|
3027
3024
|
SourceAccessConfigurations: import_smithy_client._json,
|
|
3028
3025
|
StartingPosition: import_smithy_client.expectString,
|
|
3029
|
-
StartingPositionTimestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
3026
|
+
StartingPositionTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartingPositionTimestamp"),
|
|
3030
3027
|
State: import_smithy_client.expectString,
|
|
3031
3028
|
StateTransitionReason: import_smithy_client.expectString,
|
|
3032
3029
|
Topics: import_smithy_client._json,
|
|
@@ -3143,7 +3140,7 @@ var de_GetFunctionEventInvokeConfigCommand = /* @__PURE__ */ __name(async (outpu
|
|
|
3143
3140
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3144
3141
|
DestinationConfig: import_smithy_client._json,
|
|
3145
3142
|
FunctionArn: import_smithy_client.expectString,
|
|
3146
|
-
LastModified: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
3143
|
+
LastModified: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModified"),
|
|
3147
3144
|
MaximumEventAgeInSeconds: import_smithy_client.expectInt32,
|
|
3148
3145
|
MaximumRetryAttempts: import_smithy_client.expectInt32
|
|
3149
3146
|
});
|
|
@@ -3348,7 +3345,7 @@ var de_ListAliasesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
3348
3345
|
});
|
|
3349
3346
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3350
3347
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3351
|
-
Aliases: (_) => de_AliasList(_, context),
|
|
3348
|
+
Aliases: /* @__PURE__ */ __name((_) => de_AliasList(_, context), "Aliases"),
|
|
3352
3349
|
NextMarker: import_smithy_client.expectString
|
|
3353
3350
|
});
|
|
3354
3351
|
Object.assign(contents, doc);
|
|
@@ -3378,7 +3375,7 @@ var de_ListEventSourceMappingsCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
3378
3375
|
});
|
|
3379
3376
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3380
3377
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3381
|
-
EventSourceMappings: (_) => de_EventSourceMappingsList(_, context),
|
|
3378
|
+
EventSourceMappings: /* @__PURE__ */ __name((_) => de_EventSourceMappingsList(_, context), "EventSourceMappings"),
|
|
3382
3379
|
NextMarker: import_smithy_client.expectString
|
|
3383
3380
|
});
|
|
3384
3381
|
Object.assign(contents, doc);
|
|
@@ -3393,7 +3390,7 @@ var de_ListFunctionEventInvokeConfigsCommand = /* @__PURE__ */ __name(async (out
|
|
|
3393
3390
|
});
|
|
3394
3391
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3395
3392
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3396
|
-
FunctionEventInvokeConfigs: (_) => de_FunctionEventInvokeConfigList(_, context),
|
|
3393
|
+
FunctionEventInvokeConfigs: /* @__PURE__ */ __name((_) => de_FunctionEventInvokeConfigList(_, context), "FunctionEventInvokeConfigs"),
|
|
3397
3394
|
NextMarker: import_smithy_client.expectString
|
|
3398
3395
|
});
|
|
3399
3396
|
Object.assign(contents, doc);
|
|
@@ -3629,7 +3626,7 @@ var de_PutFunctionEventInvokeConfigCommand = /* @__PURE__ */ __name(async (outpu
|
|
|
3629
3626
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3630
3627
|
DestinationConfig: import_smithy_client._json,
|
|
3631
3628
|
FunctionArn: import_smithy_client.expectString,
|
|
3632
|
-
LastModified: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
3629
|
+
LastModified: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModified"),
|
|
3633
3630
|
MaximumEventAgeInSeconds: import_smithy_client.expectInt32,
|
|
3634
3631
|
MaximumRetryAttempts: import_smithy_client.expectInt32
|
|
3635
3632
|
});
|
|
@@ -3739,7 +3736,7 @@ var de_UpdateAliasCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
3739
3736
|
FunctionVersion: import_smithy_client.expectString,
|
|
3740
3737
|
Name: import_smithy_client.expectString,
|
|
3741
3738
|
RevisionId: import_smithy_client.expectString,
|
|
3742
|
-
RoutingConfig: (_) => de_AliasRoutingConfiguration(_, context)
|
|
3739
|
+
RoutingConfig: /* @__PURE__ */ __name((_) => de_AliasRoutingConfiguration(_, context), "RoutingConfig")
|
|
3743
3740
|
});
|
|
3744
3741
|
Object.assign(contents, doc);
|
|
3745
3742
|
return contents;
|
|
@@ -3779,7 +3776,7 @@ var de_UpdateEventSourceMappingCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
3779
3776
|
FunctionArn: import_smithy_client.expectString,
|
|
3780
3777
|
FunctionResponseTypes: import_smithy_client._json,
|
|
3781
3778
|
KMSKeyArn: import_smithy_client.expectString,
|
|
3782
|
-
LastModified: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
3779
|
+
LastModified: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModified"),
|
|
3783
3780
|
LastProcessingResult: import_smithy_client.expectString,
|
|
3784
3781
|
MaximumBatchingWindowInSeconds: import_smithy_client.expectInt32,
|
|
3785
3782
|
MaximumRecordAgeInSeconds: import_smithy_client.expectInt32,
|
|
@@ -3793,7 +3790,7 @@ var de_UpdateEventSourceMappingCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
3793
3790
|
SelfManagedKafkaEventSourceConfig: import_smithy_client._json,
|
|
3794
3791
|
SourceAccessConfigurations: import_smithy_client._json,
|
|
3795
3792
|
StartingPosition: import_smithy_client.expectString,
|
|
3796
|
-
StartingPositionTimestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
3793
|
+
StartingPositionTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartingPositionTimestamp"),
|
|
3797
3794
|
State: import_smithy_client.expectString,
|
|
3798
3795
|
StateTransitionReason: import_smithy_client.expectString,
|
|
3799
3796
|
Topics: import_smithy_client._json,
|
|
@@ -3912,7 +3909,7 @@ var de_UpdateFunctionEventInvokeConfigCommand = /* @__PURE__ */ __name(async (ou
|
|
|
3912
3909
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3913
3910
|
DestinationConfig: import_smithy_client._json,
|
|
3914
3911
|
FunctionArn: import_smithy_client.expectString,
|
|
3915
|
-
LastModified: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
3912
|
+
LastModified: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModified"),
|
|
3916
3913
|
MaximumEventAgeInSeconds: import_smithy_client.expectInt32,
|
|
3917
3914
|
MaximumRetryAttempts: import_smithy_client.expectInt32
|
|
3918
3915
|
});
|
|
@@ -4643,7 +4640,7 @@ var se_AdditionalVersionWeights = /* @__PURE__ */ __name((input, context) => {
|
|
|
4643
4640
|
}, "se_AdditionalVersionWeights");
|
|
4644
4641
|
var se_AliasRoutingConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
4645
4642
|
return (0, import_smithy_client.take)(input, {
|
|
4646
|
-
AdditionalVersionWeights: (_) => se_AdditionalVersionWeights(_, context)
|
|
4643
|
+
AdditionalVersionWeights: /* @__PURE__ */ __name((_) => se_AdditionalVersionWeights(_, context), "AdditionalVersionWeights")
|
|
4647
4644
|
});
|
|
4648
4645
|
}, "se_AliasRoutingConfiguration");
|
|
4649
4646
|
var se_FunctionCode = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -4680,7 +4677,7 @@ var de_AliasConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
|
4680
4677
|
FunctionVersion: import_smithy_client.expectString,
|
|
4681
4678
|
Name: import_smithy_client.expectString,
|
|
4682
4679
|
RevisionId: import_smithy_client.expectString,
|
|
4683
|
-
RoutingConfig: (_) => de_AliasRoutingConfiguration(_, context)
|
|
4680
|
+
RoutingConfig: /* @__PURE__ */ __name((_) => de_AliasRoutingConfiguration(_, context), "RoutingConfig")
|
|
4684
4681
|
});
|
|
4685
4682
|
}, "de_AliasConfiguration");
|
|
4686
4683
|
var de_AliasList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -4691,7 +4688,7 @@ var de_AliasList = /* @__PURE__ */ __name((output, context) => {
|
|
|
4691
4688
|
}, "de_AliasList");
|
|
4692
4689
|
var de_AliasRoutingConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
4693
4690
|
return (0, import_smithy_client.take)(output, {
|
|
4694
|
-
AdditionalVersionWeights: (_) => de_AdditionalVersionWeights(_, context)
|
|
4691
|
+
AdditionalVersionWeights: /* @__PURE__ */ __name((_) => de_AdditionalVersionWeights(_, context), "AdditionalVersionWeights")
|
|
4695
4692
|
});
|
|
4696
4693
|
}, "de_AliasRoutingConfiguration");
|
|
4697
4694
|
var de_EventSourceMappingConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -4708,7 +4705,7 @@ var de_EventSourceMappingConfiguration = /* @__PURE__ */ __name((output, context
|
|
|
4708
4705
|
FunctionArn: import_smithy_client.expectString,
|
|
4709
4706
|
FunctionResponseTypes: import_smithy_client._json,
|
|
4710
4707
|
KMSKeyArn: import_smithy_client.expectString,
|
|
4711
|
-
LastModified: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
4708
|
+
LastModified: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModified"),
|
|
4712
4709
|
LastProcessingResult: import_smithy_client.expectString,
|
|
4713
4710
|
MaximumBatchingWindowInSeconds: import_smithy_client.expectInt32,
|
|
4714
4711
|
MaximumRecordAgeInSeconds: import_smithy_client.expectInt32,
|
|
@@ -4722,7 +4719,7 @@ var de_EventSourceMappingConfiguration = /* @__PURE__ */ __name((output, context
|
|
|
4722
4719
|
SelfManagedKafkaEventSourceConfig: import_smithy_client._json,
|
|
4723
4720
|
SourceAccessConfigurations: import_smithy_client._json,
|
|
4724
4721
|
StartingPosition: import_smithy_client.expectString,
|
|
4725
|
-
StartingPositionTimestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
4722
|
+
StartingPositionTimestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartingPositionTimestamp"),
|
|
4726
4723
|
State: import_smithy_client.expectString,
|
|
4727
4724
|
StateTransitionReason: import_smithy_client.expectString,
|
|
4728
4725
|
Topics: import_smithy_client._json,
|
|
@@ -4740,7 +4737,7 @@ var de_FunctionEventInvokeConfig = /* @__PURE__ */ __name((output, context) => {
|
|
|
4740
4737
|
return (0, import_smithy_client.take)(output, {
|
|
4741
4738
|
DestinationConfig: import_smithy_client._json,
|
|
4742
4739
|
FunctionArn: import_smithy_client.expectString,
|
|
4743
|
-
LastModified: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
4740
|
+
LastModified: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModified"),
|
|
4744
4741
|
MaximumEventAgeInSeconds: import_smithy_client.expectInt32,
|
|
4745
4742
|
MaximumRetryAttempts: import_smithy_client.expectInt32
|
|
4746
4743
|
});
|
|
@@ -73,7 +73,7 @@ declare const CreateFunctionCommand_base: {
|
|
|
73
73
|
* const client = new LambdaClient(config);
|
|
74
74
|
* const input = { // CreateFunctionRequest
|
|
75
75
|
* FunctionName: "STRING_VALUE", // required
|
|
76
|
-
* 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
76
|
+
* 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
77
77
|
* Role: "STRING_VALUE", // required
|
|
78
78
|
* Handler: "STRING_VALUE",
|
|
79
79
|
* Code: { // FunctionCode
|
|
@@ -153,7 +153,7 @@ declare const CreateFunctionCommand_base: {
|
|
|
153
153
|
* // { // FunctionConfiguration
|
|
154
154
|
* // FunctionName: "STRING_VALUE",
|
|
155
155
|
* // FunctionArn: "STRING_VALUE",
|
|
156
|
-
* // 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
156
|
+
* // 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
157
157
|
* // Role: "STRING_VALUE",
|
|
158
158
|
* // Handler: "STRING_VALUE",
|
|
159
159
|
* // CodeSize: Number("long"),
|
|
@@ -46,7 +46,7 @@ declare const GetFunctionCommand_base: {
|
|
|
46
46
|
* // Configuration: { // FunctionConfiguration
|
|
47
47
|
* // FunctionName: "STRING_VALUE",
|
|
48
48
|
* // FunctionArn: "STRING_VALUE",
|
|
49
|
-
* // 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
49
|
+
* // 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
50
50
|
* // Role: "STRING_VALUE",
|
|
51
51
|
* // Handler: "STRING_VALUE",
|
|
52
52
|
* // CodeSize: Number("long"),
|
|
@@ -45,7 +45,7 @@ declare const GetFunctionConfigurationCommand_base: {
|
|
|
45
45
|
* // { // 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" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
49
49
|
* // Role: "STRING_VALUE",
|
|
50
50
|
* // Handler: "STRING_VALUE",
|
|
51
51
|
* // CodeSize: Number("long"),
|
|
@@ -55,7 +55,7 @@ declare const GetLayerVersionByArnCommand_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" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
59
59
|
* // ],
|
|
60
60
|
* // LicenseInfo: "STRING_VALUE",
|
|
61
61
|
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -56,7 +56,7 @@ declare const GetLayerVersionCommand_base: {
|
|
|
56
56
|
* // CreatedDate: "STRING_VALUE",
|
|
57
57
|
* // Version: Number("long"),
|
|
58
58
|
* // CompatibleRuntimes: [ // CompatibleRuntimes
|
|
59
|
-
* // "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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
59
|
+
* // "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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
60
60
|
* // ],
|
|
61
61
|
* // LicenseInfo: "STRING_VALUE",
|
|
62
62
|
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -63,7 +63,8 @@ declare const InvokeAsyncCommand_base: {
|
|
|
63
63
|
* @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link InvalidRequestContentException} (client fault)
|
|
66
|
-
* <p>The request body could not be parsed as JSON
|
|
66
|
+
* <p>The request body could not be parsed as JSON, or a request header is invalid. For example, the 'x-amzn-RequestId'
|
|
67
|
+
* header is not a valid UUID string.</p>
|
|
67
68
|
*
|
|
68
69
|
* @throws {@link InvalidRuntimeException} (server fault)
|
|
69
70
|
* <p>The runtime or runtime version specified is not supported.</p>
|
|
@@ -134,7 +134,8 @@ declare const InvokeCommand_base: {
|
|
|
134
134
|
* <p>One of the parameters in the request is not valid.</p>
|
|
135
135
|
*
|
|
136
136
|
* @throws {@link InvalidRequestContentException} (client fault)
|
|
137
|
-
* <p>The request body could not be parsed as JSON
|
|
137
|
+
* <p>The request body could not be parsed as JSON, or a request header is invalid. For example, the 'x-amzn-RequestId'
|
|
138
|
+
* header is not a valid UUID string.</p>
|
|
138
139
|
*
|
|
139
140
|
* @throws {@link InvalidRuntimeException} (server fault)
|
|
140
141
|
* <p>The runtime or runtime version specified is not supported.</p>
|
|
@@ -111,7 +111,8 @@ declare const InvokeWithResponseStreamCommand_base: {
|
|
|
111
111
|
* <p>One of the parameters in the request is not valid.</p>
|
|
112
112
|
*
|
|
113
113
|
* @throws {@link InvalidRequestContentException} (client fault)
|
|
114
|
-
* <p>The request body could not be parsed as JSON
|
|
114
|
+
* <p>The request body could not be parsed as JSON, or a request header is invalid. For example, the 'x-amzn-RequestId'
|
|
115
|
+
* header is not a valid UUID string.</p>
|
|
115
116
|
*
|
|
116
117
|
* @throws {@link InvalidRuntimeException} (server fault)
|
|
117
118
|
* <p>The runtime or runtime version specified is not supported.</p>
|
|
@@ -56,7 +56,7 @@ declare const ListFunctionsCommand_base: {
|
|
|
56
56
|
* // { // FunctionConfiguration
|
|
57
57
|
* // FunctionName: "STRING_VALUE",
|
|
58
58
|
* // FunctionArn: "STRING_VALUE",
|
|
59
|
-
* // 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
59
|
+
* // 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
60
60
|
* // Role: "STRING_VALUE",
|
|
61
61
|
* // Handler: "STRING_VALUE",
|
|
62
62
|
* // CodeSize: Number("long"),
|
|
@@ -38,7 +38,7 @@ declare const ListLayerVersionsCommand_base: {
|
|
|
38
38
|
* // const { LambdaClient, ListLayerVersionsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
39
39
|
* const client = new LambdaClient(config);
|
|
40
40
|
* const input = { // ListLayerVersionsRequest
|
|
41
|
-
* 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
41
|
+
* 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
42
42
|
* LayerName: "STRING_VALUE", // required
|
|
43
43
|
* Marker: "STRING_VALUE",
|
|
44
44
|
* MaxItems: Number("int"),
|
|
@@ -55,7 +55,7 @@ declare const ListLayerVersionsCommand_base: {
|
|
|
55
55
|
* // Description: "STRING_VALUE",
|
|
56
56
|
* // CreatedDate: "STRING_VALUE",
|
|
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" || "dotnet8" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17" || "ruby3.2" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
59
59
|
* // ],
|
|
60
60
|
* // LicenseInfo: "STRING_VALUE",
|
|
61
61
|
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -40,7 +40,7 @@ declare const ListLayersCommand_base: {
|
|
|
40
40
|
* // const { LambdaClient, ListLayersCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
41
41
|
* const client = new LambdaClient(config);
|
|
42
42
|
* const input = { // ListLayersRequest
|
|
43
|
-
* 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
43
|
+
* 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
44
44
|
* Marker: "STRING_VALUE",
|
|
45
45
|
* MaxItems: Number("int"),
|
|
46
46
|
* CompatibleArchitecture: "x86_64" || "arm64",
|
|
@@ -59,7 +59,7 @@ declare const ListLayersCommand_base: {
|
|
|
59
59
|
* // Description: "STRING_VALUE",
|
|
60
60
|
* // CreatedDate: "STRING_VALUE",
|
|
61
61
|
* // CompatibleRuntimes: [ // CompatibleRuntimes
|
|
62
|
-
* // "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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
62
|
+
* // "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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
63
63
|
* // ],
|
|
64
64
|
* // LicenseInfo: "STRING_VALUE",
|
|
65
65
|
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -48,7 +48,7 @@ declare const ListVersionsByFunctionCommand_base: {
|
|
|
48
48
|
* // { // FunctionConfiguration
|
|
49
49
|
* // FunctionName: "STRING_VALUE",
|
|
50
50
|
* // FunctionArn: "STRING_VALUE",
|
|
51
|
-
* // 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
51
|
+
* // 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
52
52
|
* // Role: "STRING_VALUE",
|
|
53
53
|
* // Handler: "STRING_VALUE",
|
|
54
54
|
* // CodeSize: Number("long"),
|
|
@@ -47,7 +47,7 @@ declare const PublishLayerVersionCommand_base: {
|
|
|
47
47
|
* ZipFile: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
48
48
|
* },
|
|
49
49
|
* CompatibleRuntimes: [ // CompatibleRuntimes
|
|
50
|
-
* "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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
50
|
+
* "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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
51
51
|
* ],
|
|
52
52
|
* LicenseInfo: "STRING_VALUE",
|
|
53
53
|
* CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -70,7 +70,7 @@ declare const PublishLayerVersionCommand_base: {
|
|
|
70
70
|
* // CreatedDate: "STRING_VALUE",
|
|
71
71
|
* // Version: Number("long"),
|
|
72
72
|
* // CompatibleRuntimes: [ // CompatibleRuntimes
|
|
73
|
-
* // "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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
73
|
+
* // "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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
74
74
|
* // ],
|
|
75
75
|
* // LicenseInfo: "STRING_VALUE",
|
|
76
76
|
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
@@ -51,7 +51,7 @@ declare const PublishVersionCommand_base: {
|
|
|
51
51
|
* // { // FunctionConfiguration
|
|
52
52
|
* // FunctionName: "STRING_VALUE",
|
|
53
53
|
* // FunctionArn: "STRING_VALUE",
|
|
54
|
-
* // 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
54
|
+
* // 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
55
55
|
* // Role: "STRING_VALUE",
|
|
56
56
|
* // Handler: "STRING_VALUE",
|
|
57
57
|
* // CodeSize: Number("long"),
|
|
@@ -69,7 +69,7 @@ declare const UpdateFunctionCodeCommand_base: {
|
|
|
69
69
|
* // { // FunctionConfiguration
|
|
70
70
|
* // FunctionName: "STRING_VALUE",
|
|
71
71
|
* // FunctionArn: "STRING_VALUE",
|
|
72
|
-
* // 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
72
|
+
* // 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
73
73
|
* // Role: "STRING_VALUE",
|
|
74
74
|
* // Handler: "STRING_VALUE",
|
|
75
75
|
* // CodeSize: Number("long"),
|
|
@@ -66,7 +66,7 @@ declare const UpdateFunctionConfigurationCommand_base: {
|
|
|
66
66
|
* "<keys>": "STRING_VALUE",
|
|
67
67
|
* },
|
|
68
68
|
* },
|
|
69
|
-
* 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
69
|
+
* 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
70
70
|
* DeadLetterConfig: { // DeadLetterConfig
|
|
71
71
|
* TargetArn: "STRING_VALUE",
|
|
72
72
|
* },
|
|
@@ -111,7 +111,7 @@ declare const UpdateFunctionConfigurationCommand_base: {
|
|
|
111
111
|
* // { // FunctionConfiguration
|
|
112
112
|
* // FunctionName: "STRING_VALUE",
|
|
113
113
|
* // FunctionArn: "STRING_VALUE",
|
|
114
|
-
* // 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" || "ruby3.3" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
114
|
+
* // 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" || "ruby3.3" || "ruby3.4" || "python3.11" || "nodejs20.x" || "provided.al2023" || "python3.12" || "java21" || "python3.13" || "nodejs22.x",
|
|
115
115
|
* // Role: "STRING_VALUE",
|
|
116
116
|
* // Handler: "STRING_VALUE",
|
|
117
117
|
* // CodeSize: Number("long"),
|
|
@@ -771,7 +771,7 @@ export interface EventSourceMappingMetricsConfig {
|
|
|
771
771
|
}
|
|
772
772
|
/**
|
|
773
773
|
* <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">
|
|
774
|
-
*
|
|
774
|
+
* provisioned mode</a> configuration for the event source. Use Provisioned Mode to customize the minimum and maximum number of event pollers
|
|
775
775
|
* for your event source. An event poller is a compute unit that provides approximately 5 MBps of throughput.</p>
|
|
776
776
|
* @public
|
|
777
777
|
*/
|
|
@@ -1152,8 +1152,8 @@ export interface CreateEventSourceMappingRequest {
|
|
|
1152
1152
|
*/
|
|
1153
1153
|
MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
|
|
1154
1154
|
/**
|
|
1155
|
-
* <p>(Amazon MSK and self-managed Apache Kafka only) The
|
|
1156
|
-
* For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">
|
|
1155
|
+
* <p>(Amazon MSK and self-managed Apache Kafka only) The provisioned mode configuration for the event source.
|
|
1156
|
+
* For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">provisioned mode</a>.</p>
|
|
1157
1157
|
* @public
|
|
1158
1158
|
*/
|
|
1159
1159
|
ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
|
|
@@ -1359,8 +1359,8 @@ export interface EventSourceMappingConfiguration {
|
|
|
1359
1359
|
*/
|
|
1360
1360
|
MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
|
|
1361
1361
|
/**
|
|
1362
|
-
* <p>(Amazon MSK and self-managed Apache Kafka only) The
|
|
1363
|
-
* For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">
|
|
1362
|
+
* <p>(Amazon MSK and self-managed Apache Kafka only) The provisioned mode configuration for the event source.
|
|
1363
|
+
* For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">provisioned mode</a>.</p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
1366
|
ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
|
|
@@ -1640,6 +1640,7 @@ export declare const Runtime: {
|
|
|
1640
1640
|
readonly ruby27: "ruby2.7";
|
|
1641
1641
|
readonly ruby32: "ruby3.2";
|
|
1642
1642
|
readonly ruby33: "ruby3.3";
|
|
1643
|
+
readonly ruby34: "ruby3.4";
|
|
1643
1644
|
};
|
|
1644
1645
|
/**
|
|
1645
1646
|
* @public
|
|
@@ -3902,7 +3903,8 @@ export declare class ENILimitReachedException extends __BaseException {
|
|
|
3902
3903
|
constructor(opts: __ExceptionOptionType<ENILimitReachedException, __BaseException>);
|
|
3903
3904
|
}
|
|
3904
3905
|
/**
|
|
3905
|
-
* <p>The request body could not be parsed as JSON
|
|
3906
|
+
* <p>The request body could not be parsed as JSON, or a request header is invalid. For example, the 'x-amzn-RequestId'
|
|
3907
|
+
* header is not a valid UUID string.</p>
|
|
3906
3908
|
* @public
|
|
3907
3909
|
*/
|
|
3908
3910
|
export declare class InvalidRequestContentException extends __BaseException {
|
|
@@ -6233,8 +6235,8 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
6233
6235
|
*/
|
|
6234
6236
|
MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
|
|
6235
6237
|
/**
|
|
6236
|
-
* <p>(Amazon MSK and self-managed Apache Kafka only) The
|
|
6237
|
-
* For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">
|
|
6238
|
+
* <p>(Amazon MSK and self-managed Apache Kafka only) The provisioned mode configuration for the event source.
|
|
6239
|
+
* For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">provisioned mode</a>.</p>
|
|
6238
6240
|
* @public
|
|
6239
6241
|
*/
|
|
6240
6242
|
ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
|
|
@@ -456,6 +456,7 @@ export declare const Runtime: {
|
|
|
456
456
|
readonly ruby27: "ruby2.7";
|
|
457
457
|
readonly ruby32: "ruby3.2";
|
|
458
458
|
readonly ruby33: "ruby3.3";
|
|
459
|
+
readonly ruby34: "ruby3.4";
|
|
459
460
|
};
|
|
460
461
|
export type Runtime = (typeof Runtime)[keyof typeof Runtime];
|
|
461
462
|
export declare const SnapStartApplyOn: {
|
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.771.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,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.758.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.758.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.743.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.758.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.0.1",
|
|
35
|
-
"@smithy/core": "^3.1.
|
|
35
|
+
"@smithy/core": "^3.1.5",
|
|
36
36
|
"@smithy/eventstream-serde-browser": "^4.0.1",
|
|
37
37
|
"@smithy/eventstream-serde-config-resolver": "^4.0.1",
|
|
38
38
|
"@smithy/eventstream-serde-node": "^4.0.1",
|
|
@@ -40,25 +40,25 @@
|
|
|
40
40
|
"@smithy/hash-node": "^4.0.1",
|
|
41
41
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
44
|
-
"@smithy/middleware-retry": "^4.0.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.0.6",
|
|
44
|
+
"@smithy/middleware-retry": "^4.0.7",
|
|
45
45
|
"@smithy/middleware-serde": "^4.0.2",
|
|
46
46
|
"@smithy/middleware-stack": "^4.0.1",
|
|
47
47
|
"@smithy/node-config-provider": "^4.0.1",
|
|
48
|
-
"@smithy/node-http-handler": "^4.0.
|
|
48
|
+
"@smithy/node-http-handler": "^4.0.3",
|
|
49
49
|
"@smithy/protocol-http": "^5.0.1",
|
|
50
|
-
"@smithy/smithy-client": "^4.1.
|
|
50
|
+
"@smithy/smithy-client": "^4.1.6",
|
|
51
51
|
"@smithy/types": "^4.1.0",
|
|
52
52
|
"@smithy/url-parser": "^4.0.1",
|
|
53
53
|
"@smithy/util-base64": "^4.0.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.0.7",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.0.7",
|
|
58
58
|
"@smithy/util-endpoints": "^3.0.1",
|
|
59
59
|
"@smithy/util-middleware": "^4.0.1",
|
|
60
60
|
"@smithy/util-retry": "^4.0.1",
|
|
61
|
-
"@smithy/util-stream": "^4.1.
|
|
61
|
+
"@smithy/util-stream": "^4.1.2",
|
|
62
62
|
"@smithy/util-utf8": "^4.0.0",
|
|
63
63
|
"@smithy/util-waiter": "^4.0.2",
|
|
64
64
|
"tslib": "^2.6.2"
|