@aws-sdk/client-lambda 3.940.0 → 3.943.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/README.md +136 -0
- package/dist-cjs/index.js +1663 -100
- package/dist-es/Lambda.js +34 -0
- package/dist-es/commands/CheckpointDurableExecutionCommand.js +16 -0
- package/dist-es/commands/CreateCapacityProviderCommand.js +16 -0
- package/dist-es/commands/DeleteCapacityProviderCommand.js +16 -0
- package/dist-es/commands/GetCapacityProviderCommand.js +16 -0
- package/dist-es/commands/GetDurableExecutionCommand.js +16 -0
- package/dist-es/commands/GetDurableExecutionHistoryCommand.js +16 -0
- package/dist-es/commands/GetDurableExecutionStateCommand.js +16 -0
- package/dist-es/commands/GetFunctionScalingConfigCommand.js +16 -0
- package/dist-es/commands/ListCapacityProvidersCommand.js +16 -0
- package/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +16 -0
- package/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +16 -0
- package/dist-es/commands/PutFunctionScalingConfigCommand.js +16 -0
- package/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +16 -0
- package/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +16 -0
- package/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +16 -0
- package/dist-es/commands/StopDurableExecutionCommand.js +16 -0
- package/dist-es/commands/UpdateCapacityProviderCommand.js +16 -0
- package/dist-es/commands/index.js +17 -0
- package/dist-es/models/enums.js +109 -6
- package/dist-es/models/errors.js +76 -0
- package/dist-es/pagination/GetDurableExecutionHistoryPaginator.js +4 -0
- package/dist-es/pagination/GetDurableExecutionStatePaginator.js +4 -0
- package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
- package/dist-es/pagination/ListDurableExecutionsByFunctionPaginator.js +4 -0
- package/dist-es/pagination/ListFunctionVersionsByCapacityProviderPaginator.js +4 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/schemas/schemas_0.js +1216 -95
- package/dist-types/Lambda.d.ts +120 -0
- package/dist-types/LambdaClient.d.ts +19 -2
- package/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +190 -0
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +162 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +38 -3
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +126 -0
- package/dist-types/commands/DeleteFunctionCommand.d.ts +6 -4
- package/dist-types/commands/GetCapacityProviderCommand.d.ts +123 -0
- package/dist-types/commands/GetDurableExecutionCommand.d.ts +105 -0
- package/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +259 -0
- package/dist-types/commands/GetDurableExecutionStateCommand.d.ts +152 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +19 -3
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +19 -3
- package/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +95 -0
- package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
- package/dist-types/commands/InvokeCommand.d.ts +11 -1
- package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +4 -1
- package/dist-types/commands/ListCapacityProvidersCommand.d.ts +125 -0
- package/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +106 -0
- package/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +95 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +19 -3
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +23 -3
- package/dist-types/commands/PublishVersionCommand.d.ts +19 -3
- package/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +94 -0
- package/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +92 -0
- package/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +84 -0
- package/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +91 -0
- package/dist-types/commands/StopDurableExecutionCommand.d.ts +94 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +136 -0
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +16 -3
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +34 -3
- package/dist-types/commands/index.d.ts +17 -0
- package/dist-types/models/enums.d.ts +189 -14
- package/dist-types/models/errors.d.ts +89 -1
- package/dist-types/models/models_0.d.ts +3205 -1373
- package/dist-types/pagination/GetDurableExecutionHistoryPaginator.d.ts +7 -0
- package/dist-types/pagination/GetDurableExecutionStatePaginator.d.ts +7 -0
- package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/schemas/schemas_0.d.ts +134 -0
- package/dist-types/ts3.4/Lambda.d.ts +314 -0
- package/dist-types/ts3.4/LambdaClient.d.ts +102 -0
- package/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +8 -3
- package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +60 -0
- package/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +17 -0
- package/dist-types/ts3.4/models/enums.d.ts +126 -7
- package/dist-types/ts3.4/models/errors.d.ts +52 -0
- package/dist-types/ts3.4/models/models_0.d.ts +494 -42
- package/dist-types/ts3.4/pagination/GetDurableExecutionHistoryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetDurableExecutionStatePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDurableExecutionsByFunctionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFunctionVersionsByCapacityProviderPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
- package/package.json +5 -5
|
@@ -48,6 +48,66 @@ export declare const Architecture: {
|
|
|
48
48
|
readonly x86_64: "x86_64";
|
|
49
49
|
};
|
|
50
50
|
export type Architecture = (typeof Architecture)[keyof typeof Architecture];
|
|
51
|
+
export declare const CapacityProviderScalingMode: {
|
|
52
|
+
readonly Auto: "Auto";
|
|
53
|
+
readonly Manual: "Manual";
|
|
54
|
+
};
|
|
55
|
+
export type CapacityProviderScalingMode =
|
|
56
|
+
(typeof CapacityProviderScalingMode)[keyof typeof CapacityProviderScalingMode];
|
|
57
|
+
export declare const CapacityProviderPredefinedMetricType: {
|
|
58
|
+
readonly LambdaCapacityProviderAverageCPUUtilization: "LambdaCapacityProviderAverageCPUUtilization";
|
|
59
|
+
};
|
|
60
|
+
export type CapacityProviderPredefinedMetricType =
|
|
61
|
+
(typeof CapacityProviderPredefinedMetricType)[keyof typeof CapacityProviderPredefinedMetricType];
|
|
62
|
+
export declare const CapacityProviderState: {
|
|
63
|
+
readonly Active: "Active";
|
|
64
|
+
readonly Deleting: "Deleting";
|
|
65
|
+
readonly Failed: "Failed";
|
|
66
|
+
readonly Pending: "Pending";
|
|
67
|
+
};
|
|
68
|
+
export type CapacityProviderState =
|
|
69
|
+
(typeof CapacityProviderState)[keyof typeof CapacityProviderState];
|
|
70
|
+
export declare const State: {
|
|
71
|
+
readonly Active: "Active";
|
|
72
|
+
readonly ActiveNonInvocable: "ActiveNonInvocable";
|
|
73
|
+
readonly Deactivated: "Deactivated";
|
|
74
|
+
readonly Deactivating: "Deactivating";
|
|
75
|
+
readonly Deleting: "Deleting";
|
|
76
|
+
readonly Failed: "Failed";
|
|
77
|
+
readonly Inactive: "Inactive";
|
|
78
|
+
readonly Pending: "Pending";
|
|
79
|
+
};
|
|
80
|
+
export type State = (typeof State)[keyof typeof State];
|
|
81
|
+
export declare const OperationAction: {
|
|
82
|
+
readonly CANCEL: "CANCEL";
|
|
83
|
+
readonly FAIL: "FAIL";
|
|
84
|
+
readonly RETRY: "RETRY";
|
|
85
|
+
readonly START: "START";
|
|
86
|
+
readonly SUCCEED: "SUCCEED";
|
|
87
|
+
};
|
|
88
|
+
export type OperationAction =
|
|
89
|
+
(typeof OperationAction)[keyof typeof OperationAction];
|
|
90
|
+
export declare const OperationType: {
|
|
91
|
+
readonly CALLBACK: "CALLBACK";
|
|
92
|
+
readonly CHAINED_INVOKE: "CHAINED_INVOKE";
|
|
93
|
+
readonly CONTEXT: "CONTEXT";
|
|
94
|
+
readonly EXECUTION: "EXECUTION";
|
|
95
|
+
readonly STEP: "STEP";
|
|
96
|
+
readonly WAIT: "WAIT";
|
|
97
|
+
};
|
|
98
|
+
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
99
|
+
export declare const OperationStatus: {
|
|
100
|
+
readonly CANCELLED: "CANCELLED";
|
|
101
|
+
readonly FAILED: "FAILED";
|
|
102
|
+
readonly PENDING: "PENDING";
|
|
103
|
+
readonly READY: "READY";
|
|
104
|
+
readonly STARTED: "STARTED";
|
|
105
|
+
readonly STOPPED: "STOPPED";
|
|
106
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
107
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
108
|
+
};
|
|
109
|
+
export type OperationStatus =
|
|
110
|
+
(typeof OperationStatus)[keyof typeof OperationStatus];
|
|
51
111
|
export declare const CodeSigningPolicy: {
|
|
52
112
|
readonly Enforce: "Enforce";
|
|
53
113
|
readonly Warn: "Warn";
|
|
@@ -109,6 +169,11 @@ export declare const PackageType: {
|
|
|
109
169
|
readonly Zip: "Zip";
|
|
110
170
|
};
|
|
111
171
|
export type PackageType = (typeof PackageType)[keyof typeof PackageType];
|
|
172
|
+
export declare const FunctionVersionLatestPublished: {
|
|
173
|
+
readonly LATEST_PUBLISHED: "LATEST_PUBLISHED";
|
|
174
|
+
};
|
|
175
|
+
export type FunctionVersionLatestPublished =
|
|
176
|
+
(typeof FunctionVersionLatestPublished)[keyof typeof FunctionVersionLatestPublished];
|
|
112
177
|
export declare const Runtime: {
|
|
113
178
|
readonly dotnet6: "dotnet6";
|
|
114
179
|
readonly dotnet8: "dotnet8";
|
|
@@ -180,15 +245,26 @@ export declare const LastUpdateStatus: {
|
|
|
180
245
|
export type LastUpdateStatus =
|
|
181
246
|
(typeof LastUpdateStatus)[keyof typeof LastUpdateStatus];
|
|
182
247
|
export declare const LastUpdateStatusReasonCode: {
|
|
248
|
+
readonly CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded";
|
|
183
249
|
readonly DisabledKMSKey: "DisabledKMSKey";
|
|
250
|
+
readonly EC2RequestLimitExceeded: "EC2RequestLimitExceeded";
|
|
184
251
|
readonly EFSIOError: "EFSIOError";
|
|
185
252
|
readonly EFSMountConnectivityError: "EFSMountConnectivityError";
|
|
186
253
|
readonly EFSMountFailure: "EFSMountFailure";
|
|
187
254
|
readonly EFSMountTimeout: "EFSMountTimeout";
|
|
188
255
|
readonly EniLimitExceeded: "EniLimitExceeded";
|
|
189
256
|
readonly FunctionError: "FunctionError";
|
|
257
|
+
readonly FunctionErrorExtensionInitError: "FunctionError.ExtensionInitError";
|
|
258
|
+
readonly FunctionErrorInitResourceExhausted: "FunctionError.InitResourceExhausted";
|
|
259
|
+
readonly FunctionErrorInitTimeout: "FunctionError.InitTimeout";
|
|
260
|
+
readonly FunctionErrorInvalidEntryPoint: "FunctionError.InvalidEntryPoint";
|
|
261
|
+
readonly FunctionErrorInvalidWorkingDirectory: "FunctionError.InvalidWorkingDirectory";
|
|
262
|
+
readonly FunctionErrorPermissionDenied: "FunctionError.PermissionDenied";
|
|
263
|
+
readonly FunctionErrorRuntimeInitError: "FunctionError.RuntimeInitError";
|
|
264
|
+
readonly FunctionErrorTooManyExtensions: "FunctionError.TooManyExtensions";
|
|
190
265
|
readonly ImageAccessDenied: "ImageAccessDenied";
|
|
191
266
|
readonly ImageDeleted: "ImageDeleted";
|
|
267
|
+
readonly InsufficientCapacity: "InsufficientCapacity";
|
|
192
268
|
readonly InsufficientRolePermissions: "InsufficientRolePermissions";
|
|
193
269
|
readonly InternalError: "InternalError";
|
|
194
270
|
readonly InvalidConfiguration: "InvalidConfiguration";
|
|
@@ -201,6 +277,7 @@ export declare const LastUpdateStatusReasonCode: {
|
|
|
201
277
|
readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
|
|
202
278
|
readonly KMSKeyNotFound: "KMSKeyNotFound";
|
|
203
279
|
readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
|
|
280
|
+
readonly VcpuLimitExceeded: "VcpuLimitExceeded";
|
|
204
281
|
};
|
|
205
282
|
export type LastUpdateStatusReasonCode =
|
|
206
283
|
(typeof LastUpdateStatusReasonCode)[keyof typeof LastUpdateStatusReasonCode];
|
|
@@ -210,25 +287,30 @@ export declare const SnapStartOptimizationStatus: {
|
|
|
210
287
|
};
|
|
211
288
|
export type SnapStartOptimizationStatus =
|
|
212
289
|
(typeof SnapStartOptimizationStatus)[keyof typeof SnapStartOptimizationStatus];
|
|
213
|
-
export declare const State: {
|
|
214
|
-
readonly Active: "Active";
|
|
215
|
-
readonly Failed: "Failed";
|
|
216
|
-
readonly Inactive: "Inactive";
|
|
217
|
-
readonly Pending: "Pending";
|
|
218
|
-
};
|
|
219
|
-
export type State = (typeof State)[keyof typeof State];
|
|
220
290
|
export declare const StateReasonCode: {
|
|
291
|
+
readonly CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded";
|
|
221
292
|
readonly Creating: "Creating";
|
|
222
293
|
readonly DisabledKMSKey: "DisabledKMSKey";
|
|
294
|
+
readonly DrainingDurableExecutions: "DrainingDurableExecutions";
|
|
295
|
+
readonly EC2RequestLimitExceeded: "EC2RequestLimitExceeded";
|
|
223
296
|
readonly EFSIOError: "EFSIOError";
|
|
224
297
|
readonly EFSMountConnectivityError: "EFSMountConnectivityError";
|
|
225
298
|
readonly EFSMountFailure: "EFSMountFailure";
|
|
226
299
|
readonly EFSMountTimeout: "EFSMountTimeout";
|
|
227
300
|
readonly EniLimitExceeded: "EniLimitExceeded";
|
|
228
301
|
readonly FunctionError: "FunctionError";
|
|
302
|
+
readonly FunctionErrorExtensionInitError: "FunctionError.ExtensionInitError";
|
|
303
|
+
readonly FunctionErrorInitResourceExhausted: "FunctionError.InitResourceExhausted";
|
|
304
|
+
readonly FunctionErrorInitTimeout: "FunctionError.InitTimeout";
|
|
305
|
+
readonly FunctionErrorInvalidEntryPoint: "FunctionError.InvalidEntryPoint";
|
|
306
|
+
readonly FunctionErrorInvalidWorkingDirectory: "FunctionError.InvalidWorkingDirectory";
|
|
307
|
+
readonly FunctionErrorPermissionDenied: "FunctionError.PermissionDenied";
|
|
308
|
+
readonly FunctionErrorRuntimeInitError: "FunctionError.RuntimeInitError";
|
|
309
|
+
readonly FunctionErrorTooManyExtensions: "FunctionError.TooManyExtensions";
|
|
229
310
|
readonly Idle: "Idle";
|
|
230
311
|
readonly ImageAccessDenied: "ImageAccessDenied";
|
|
231
312
|
readonly ImageDeleted: "ImageDeleted";
|
|
313
|
+
readonly InsufficientCapacity: "InsufficientCapacity";
|
|
232
314
|
readonly InsufficientRolePermissions: "InsufficientRolePermissions";
|
|
233
315
|
readonly InternalError: "InternalError";
|
|
234
316
|
readonly InvalidConfiguration: "InvalidConfiguration";
|
|
@@ -242,6 +324,7 @@ export declare const StateReasonCode: {
|
|
|
242
324
|
readonly KMSKeyNotFound: "KMSKeyNotFound";
|
|
243
325
|
readonly Restoring: "Restoring";
|
|
244
326
|
readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
|
|
327
|
+
readonly VcpuLimitExceeded: "VcpuLimitExceeded";
|
|
245
328
|
};
|
|
246
329
|
export type StateReasonCode =
|
|
247
330
|
(typeof StateReasonCode)[keyof typeof StateReasonCode];
|
|
@@ -292,3 +375,39 @@ export declare const ProvisionedConcurrencyStatusEnum: {
|
|
|
292
375
|
};
|
|
293
376
|
export type ProvisionedConcurrencyStatusEnum =
|
|
294
377
|
(typeof ProvisionedConcurrencyStatusEnum)[keyof typeof ProvisionedConcurrencyStatusEnum];
|
|
378
|
+
export declare const ExecutionStatus: {
|
|
379
|
+
readonly FAILED: "FAILED";
|
|
380
|
+
readonly RUNNING: "RUNNING";
|
|
381
|
+
readonly STOPPED: "STOPPED";
|
|
382
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
383
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
384
|
+
};
|
|
385
|
+
export type ExecutionStatus =
|
|
386
|
+
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
387
|
+
export declare const EventType: {
|
|
388
|
+
readonly CallbackFailed: "CallbackFailed";
|
|
389
|
+
readonly CallbackStarted: "CallbackStarted";
|
|
390
|
+
readonly CallbackSucceeded: "CallbackSucceeded";
|
|
391
|
+
readonly CallbackTimedOut: "CallbackTimedOut";
|
|
392
|
+
readonly ChainedInvokeFailed: "ChainedInvokeFailed";
|
|
393
|
+
readonly ChainedInvokeStarted: "ChainedInvokeStarted";
|
|
394
|
+
readonly ChainedInvokeStopped: "ChainedInvokeStopped";
|
|
395
|
+
readonly ChainedInvokeSucceeded: "ChainedInvokeSucceeded";
|
|
396
|
+
readonly ChainedInvokeTimedOut: "ChainedInvokeTimedOut";
|
|
397
|
+
readonly ContextFailed: "ContextFailed";
|
|
398
|
+
readonly ContextStarted: "ContextStarted";
|
|
399
|
+
readonly ContextSucceeded: "ContextSucceeded";
|
|
400
|
+
readonly ExecutionFailed: "ExecutionFailed";
|
|
401
|
+
readonly ExecutionStarted: "ExecutionStarted";
|
|
402
|
+
readonly ExecutionStopped: "ExecutionStopped";
|
|
403
|
+
readonly ExecutionSucceeded: "ExecutionSucceeded";
|
|
404
|
+
readonly ExecutionTimedOut: "ExecutionTimedOut";
|
|
405
|
+
readonly InvocationCompleted: "InvocationCompleted";
|
|
406
|
+
readonly StepFailed: "StepFailed";
|
|
407
|
+
readonly StepStarted: "StepStarted";
|
|
408
|
+
readonly StepSucceeded: "StepSucceeded";
|
|
409
|
+
readonly WaitCancelled: "WaitCancelled";
|
|
410
|
+
readonly WaitStarted: "WaitStarted";
|
|
411
|
+
readonly WaitSucceeded: "WaitSucceeded";
|
|
412
|
+
};
|
|
413
|
+
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
@@ -59,6 +59,17 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
59
59
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
60
60
|
);
|
|
61
61
|
}
|
|
62
|
+
export declare class CapacityProviderLimitExceededException extends __BaseException {
|
|
63
|
+
readonly name: "CapacityProviderLimitExceededException";
|
|
64
|
+
readonly $fault: "client";
|
|
65
|
+
Type?: string | undefined;
|
|
66
|
+
constructor(
|
|
67
|
+
opts: __ExceptionOptionType<
|
|
68
|
+
CapacityProviderLimitExceededException,
|
|
69
|
+
__BaseException
|
|
70
|
+
>
|
|
71
|
+
);
|
|
72
|
+
}
|
|
62
73
|
export declare class ResourceInUseException extends __BaseException {
|
|
63
74
|
readonly name: "ResourceInUseException";
|
|
64
75
|
readonly $fault: "client";
|
|
@@ -100,6 +111,17 @@ export declare class CodeVerificationFailedException extends __BaseException {
|
|
|
100
111
|
>
|
|
101
112
|
);
|
|
102
113
|
}
|
|
114
|
+
export declare class FunctionVersionsPerCapacityProviderLimitExceededException extends __BaseException {
|
|
115
|
+
readonly name: "FunctionVersionsPerCapacityProviderLimitExceededException";
|
|
116
|
+
readonly $fault: "client";
|
|
117
|
+
Type?: string | undefined;
|
|
118
|
+
constructor(
|
|
119
|
+
opts: __ExceptionOptionType<
|
|
120
|
+
FunctionVersionsPerCapacityProviderLimitExceededException,
|
|
121
|
+
__BaseException
|
|
122
|
+
>
|
|
123
|
+
);
|
|
124
|
+
}
|
|
103
125
|
export declare class InvalidCodeSignatureException extends __BaseException {
|
|
104
126
|
readonly name: "InvalidCodeSignatureException";
|
|
105
127
|
readonly $fault: "client";
|
|
@@ -109,6 +131,18 @@ export declare class InvalidCodeSignatureException extends __BaseException {
|
|
|
109
131
|
opts: __ExceptionOptionType<InvalidCodeSignatureException, __BaseException>
|
|
110
132
|
);
|
|
111
133
|
}
|
|
134
|
+
export declare class DurableExecutionAlreadyStartedException extends __BaseException {
|
|
135
|
+
readonly name: "DurableExecutionAlreadyStartedException";
|
|
136
|
+
readonly $fault: "client";
|
|
137
|
+
Type?: string | undefined;
|
|
138
|
+
Message?: string | undefined;
|
|
139
|
+
constructor(
|
|
140
|
+
opts: __ExceptionOptionType<
|
|
141
|
+
DurableExecutionAlreadyStartedException,
|
|
142
|
+
__BaseException
|
|
143
|
+
>
|
|
144
|
+
);
|
|
145
|
+
}
|
|
112
146
|
export declare class EC2AccessDeniedException extends __BaseException {
|
|
113
147
|
readonly name: "EC2AccessDeniedException";
|
|
114
148
|
readonly $fault: "server";
|
|
@@ -263,6 +297,15 @@ export declare class KMSNotFoundException extends __BaseException {
|
|
|
263
297
|
opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>
|
|
264
298
|
);
|
|
265
299
|
}
|
|
300
|
+
export declare class NoPublishedVersionException extends __BaseException {
|
|
301
|
+
readonly name: "NoPublishedVersionException";
|
|
302
|
+
readonly $fault: "client";
|
|
303
|
+
Type?: string | undefined;
|
|
304
|
+
Message?: string | undefined;
|
|
305
|
+
constructor(
|
|
306
|
+
opts: __ExceptionOptionType<NoPublishedVersionException, __BaseException>
|
|
307
|
+
);
|
|
308
|
+
}
|
|
266
309
|
export declare class RecursiveInvocationException extends __BaseException {
|
|
267
310
|
readonly name: "RecursiveInvocationException";
|
|
268
311
|
readonly $fault: "client";
|
|
@@ -355,3 +398,12 @@ export declare class ProvisionedConcurrencyConfigNotFoundException extends __Bas
|
|
|
355
398
|
>
|
|
356
399
|
);
|
|
357
400
|
}
|
|
401
|
+
export declare class CallbackTimeoutException extends __BaseException {
|
|
402
|
+
readonly name: "CallbackTimeoutException";
|
|
403
|
+
readonly $fault: "client";
|
|
404
|
+
Type?: string | undefined;
|
|
405
|
+
Message?: string | undefined;
|
|
406
|
+
constructor(
|
|
407
|
+
opts: __ExceptionOptionType<CallbackTimeoutException, __BaseException>
|
|
408
|
+
);
|
|
409
|
+
}
|