@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
package/dist-es/models/enums.js
CHANGED
|
@@ -35,6 +35,54 @@ export const Architecture = {
|
|
|
35
35
|
arm64: "arm64",
|
|
36
36
|
x86_64: "x86_64",
|
|
37
37
|
};
|
|
38
|
+
export const CapacityProviderScalingMode = {
|
|
39
|
+
Auto: "Auto",
|
|
40
|
+
Manual: "Manual",
|
|
41
|
+
};
|
|
42
|
+
export const CapacityProviderPredefinedMetricType = {
|
|
43
|
+
LambdaCapacityProviderAverageCPUUtilization: "LambdaCapacityProviderAverageCPUUtilization",
|
|
44
|
+
};
|
|
45
|
+
export const CapacityProviderState = {
|
|
46
|
+
Active: "Active",
|
|
47
|
+
Deleting: "Deleting",
|
|
48
|
+
Failed: "Failed",
|
|
49
|
+
Pending: "Pending",
|
|
50
|
+
};
|
|
51
|
+
export const State = {
|
|
52
|
+
Active: "Active",
|
|
53
|
+
ActiveNonInvocable: "ActiveNonInvocable",
|
|
54
|
+
Deactivated: "Deactivated",
|
|
55
|
+
Deactivating: "Deactivating",
|
|
56
|
+
Deleting: "Deleting",
|
|
57
|
+
Failed: "Failed",
|
|
58
|
+
Inactive: "Inactive",
|
|
59
|
+
Pending: "Pending",
|
|
60
|
+
};
|
|
61
|
+
export const OperationAction = {
|
|
62
|
+
CANCEL: "CANCEL",
|
|
63
|
+
FAIL: "FAIL",
|
|
64
|
+
RETRY: "RETRY",
|
|
65
|
+
START: "START",
|
|
66
|
+
SUCCEED: "SUCCEED",
|
|
67
|
+
};
|
|
68
|
+
export const OperationType = {
|
|
69
|
+
CALLBACK: "CALLBACK",
|
|
70
|
+
CHAINED_INVOKE: "CHAINED_INVOKE",
|
|
71
|
+
CONTEXT: "CONTEXT",
|
|
72
|
+
EXECUTION: "EXECUTION",
|
|
73
|
+
STEP: "STEP",
|
|
74
|
+
WAIT: "WAIT",
|
|
75
|
+
};
|
|
76
|
+
export const OperationStatus = {
|
|
77
|
+
CANCELLED: "CANCELLED",
|
|
78
|
+
FAILED: "FAILED",
|
|
79
|
+
PENDING: "PENDING",
|
|
80
|
+
READY: "READY",
|
|
81
|
+
STARTED: "STARTED",
|
|
82
|
+
STOPPED: "STOPPED",
|
|
83
|
+
SUCCEEDED: "SUCCEEDED",
|
|
84
|
+
TIMED_OUT: "TIMED_OUT",
|
|
85
|
+
};
|
|
38
86
|
export const CodeSigningPolicy = {
|
|
39
87
|
Enforce: "Enforce",
|
|
40
88
|
Warn: "Warn",
|
|
@@ -80,6 +128,9 @@ export const PackageType = {
|
|
|
80
128
|
Image: "Image",
|
|
81
129
|
Zip: "Zip",
|
|
82
130
|
};
|
|
131
|
+
export const FunctionVersionLatestPublished = {
|
|
132
|
+
LATEST_PUBLISHED: "LATEST_PUBLISHED",
|
|
133
|
+
};
|
|
83
134
|
export const Runtime = {
|
|
84
135
|
dotnet6: "dotnet6",
|
|
85
136
|
dotnet8: "dotnet8",
|
|
@@ -143,15 +194,26 @@ export const LastUpdateStatus = {
|
|
|
143
194
|
Successful: "Successful",
|
|
144
195
|
};
|
|
145
196
|
export const LastUpdateStatusReasonCode = {
|
|
197
|
+
CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded",
|
|
146
198
|
DisabledKMSKey: "DisabledKMSKey",
|
|
199
|
+
EC2RequestLimitExceeded: "EC2RequestLimitExceeded",
|
|
147
200
|
EFSIOError: "EFSIOError",
|
|
148
201
|
EFSMountConnectivityError: "EFSMountConnectivityError",
|
|
149
202
|
EFSMountFailure: "EFSMountFailure",
|
|
150
203
|
EFSMountTimeout: "EFSMountTimeout",
|
|
151
204
|
EniLimitExceeded: "EniLimitExceeded",
|
|
152
205
|
FunctionError: "FunctionError",
|
|
206
|
+
FunctionErrorExtensionInitError: "FunctionError.ExtensionInitError",
|
|
207
|
+
FunctionErrorInitResourceExhausted: "FunctionError.InitResourceExhausted",
|
|
208
|
+
FunctionErrorInitTimeout: "FunctionError.InitTimeout",
|
|
209
|
+
FunctionErrorInvalidEntryPoint: "FunctionError.InvalidEntryPoint",
|
|
210
|
+
FunctionErrorInvalidWorkingDirectory: "FunctionError.InvalidWorkingDirectory",
|
|
211
|
+
FunctionErrorPermissionDenied: "FunctionError.PermissionDenied",
|
|
212
|
+
FunctionErrorRuntimeInitError: "FunctionError.RuntimeInitError",
|
|
213
|
+
FunctionErrorTooManyExtensions: "FunctionError.TooManyExtensions",
|
|
153
214
|
ImageAccessDenied: "ImageAccessDenied",
|
|
154
215
|
ImageDeleted: "ImageDeleted",
|
|
216
|
+
InsufficientCapacity: "InsufficientCapacity",
|
|
155
217
|
InsufficientRolePermissions: "InsufficientRolePermissions",
|
|
156
218
|
InternalError: "InternalError",
|
|
157
219
|
InvalidConfiguration: "InvalidConfiguration",
|
|
@@ -164,29 +226,36 @@ export const LastUpdateStatusReasonCode = {
|
|
|
164
226
|
KMSKeyAccessDenied: "KMSKeyAccessDenied",
|
|
165
227
|
KMSKeyNotFound: "KMSKeyNotFound",
|
|
166
228
|
SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
|
|
229
|
+
VcpuLimitExceeded: "VcpuLimitExceeded",
|
|
167
230
|
};
|
|
168
231
|
export const SnapStartOptimizationStatus = {
|
|
169
232
|
Off: "Off",
|
|
170
233
|
On: "On",
|
|
171
234
|
};
|
|
172
|
-
export const State = {
|
|
173
|
-
Active: "Active",
|
|
174
|
-
Failed: "Failed",
|
|
175
|
-
Inactive: "Inactive",
|
|
176
|
-
Pending: "Pending",
|
|
177
|
-
};
|
|
178
235
|
export const StateReasonCode = {
|
|
236
|
+
CapacityProviderScalingLimitExceeded: "CapacityProviderScalingLimitExceeded",
|
|
179
237
|
Creating: "Creating",
|
|
180
238
|
DisabledKMSKey: "DisabledKMSKey",
|
|
239
|
+
DrainingDurableExecutions: "DrainingDurableExecutions",
|
|
240
|
+
EC2RequestLimitExceeded: "EC2RequestLimitExceeded",
|
|
181
241
|
EFSIOError: "EFSIOError",
|
|
182
242
|
EFSMountConnectivityError: "EFSMountConnectivityError",
|
|
183
243
|
EFSMountFailure: "EFSMountFailure",
|
|
184
244
|
EFSMountTimeout: "EFSMountTimeout",
|
|
185
245
|
EniLimitExceeded: "EniLimitExceeded",
|
|
186
246
|
FunctionError: "FunctionError",
|
|
247
|
+
FunctionErrorExtensionInitError: "FunctionError.ExtensionInitError",
|
|
248
|
+
FunctionErrorInitResourceExhausted: "FunctionError.InitResourceExhausted",
|
|
249
|
+
FunctionErrorInitTimeout: "FunctionError.InitTimeout",
|
|
250
|
+
FunctionErrorInvalidEntryPoint: "FunctionError.InvalidEntryPoint",
|
|
251
|
+
FunctionErrorInvalidWorkingDirectory: "FunctionError.InvalidWorkingDirectory",
|
|
252
|
+
FunctionErrorPermissionDenied: "FunctionError.PermissionDenied",
|
|
253
|
+
FunctionErrorRuntimeInitError: "FunctionError.RuntimeInitError",
|
|
254
|
+
FunctionErrorTooManyExtensions: "FunctionError.TooManyExtensions",
|
|
187
255
|
Idle: "Idle",
|
|
188
256
|
ImageAccessDenied: "ImageAccessDenied",
|
|
189
257
|
ImageDeleted: "ImageDeleted",
|
|
258
|
+
InsufficientCapacity: "InsufficientCapacity",
|
|
190
259
|
InsufficientRolePermissions: "InsufficientRolePermissions",
|
|
191
260
|
InternalError: "InternalError",
|
|
192
261
|
InvalidConfiguration: "InvalidConfiguration",
|
|
@@ -200,6 +269,7 @@ export const StateReasonCode = {
|
|
|
200
269
|
KMSKeyNotFound: "KMSKeyNotFound",
|
|
201
270
|
Restoring: "Restoring",
|
|
202
271
|
SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
|
|
272
|
+
VcpuLimitExceeded: "VcpuLimitExceeded",
|
|
203
273
|
};
|
|
204
274
|
export const InvokeMode = {
|
|
205
275
|
BUFFERED: "BUFFERED",
|
|
@@ -235,3 +305,36 @@ export const ProvisionedConcurrencyStatusEnum = {
|
|
|
235
305
|
IN_PROGRESS: "IN_PROGRESS",
|
|
236
306
|
READY: "READY",
|
|
237
307
|
};
|
|
308
|
+
export const ExecutionStatus = {
|
|
309
|
+
FAILED: "FAILED",
|
|
310
|
+
RUNNING: "RUNNING",
|
|
311
|
+
STOPPED: "STOPPED",
|
|
312
|
+
SUCCEEDED: "SUCCEEDED",
|
|
313
|
+
TIMED_OUT: "TIMED_OUT",
|
|
314
|
+
};
|
|
315
|
+
export const EventType = {
|
|
316
|
+
CallbackFailed: "CallbackFailed",
|
|
317
|
+
CallbackStarted: "CallbackStarted",
|
|
318
|
+
CallbackSucceeded: "CallbackSucceeded",
|
|
319
|
+
CallbackTimedOut: "CallbackTimedOut",
|
|
320
|
+
ChainedInvokeFailed: "ChainedInvokeFailed",
|
|
321
|
+
ChainedInvokeStarted: "ChainedInvokeStarted",
|
|
322
|
+
ChainedInvokeStopped: "ChainedInvokeStopped",
|
|
323
|
+
ChainedInvokeSucceeded: "ChainedInvokeSucceeded",
|
|
324
|
+
ChainedInvokeTimedOut: "ChainedInvokeTimedOut",
|
|
325
|
+
ContextFailed: "ContextFailed",
|
|
326
|
+
ContextStarted: "ContextStarted",
|
|
327
|
+
ContextSucceeded: "ContextSucceeded",
|
|
328
|
+
ExecutionFailed: "ExecutionFailed",
|
|
329
|
+
ExecutionStarted: "ExecutionStarted",
|
|
330
|
+
ExecutionStopped: "ExecutionStopped",
|
|
331
|
+
ExecutionSucceeded: "ExecutionSucceeded",
|
|
332
|
+
ExecutionTimedOut: "ExecutionTimedOut",
|
|
333
|
+
InvocationCompleted: "InvocationCompleted",
|
|
334
|
+
StepFailed: "StepFailed",
|
|
335
|
+
StepStarted: "StepStarted",
|
|
336
|
+
StepSucceeded: "StepSucceeded",
|
|
337
|
+
WaitCancelled: "WaitCancelled",
|
|
338
|
+
WaitStarted: "WaitStarted",
|
|
339
|
+
WaitSucceeded: "WaitSucceeded",
|
|
340
|
+
};
|
package/dist-es/models/errors.js
CHANGED
|
@@ -105,6 +105,20 @@ export class TooManyRequestsException extends __BaseException {
|
|
|
105
105
|
this.Reason = opts.Reason;
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
|
+
export class CapacityProviderLimitExceededException extends __BaseException {
|
|
109
|
+
name = "CapacityProviderLimitExceededException";
|
|
110
|
+
$fault = "client";
|
|
111
|
+
Type;
|
|
112
|
+
constructor(opts) {
|
|
113
|
+
super({
|
|
114
|
+
name: "CapacityProviderLimitExceededException",
|
|
115
|
+
$fault: "client",
|
|
116
|
+
...opts,
|
|
117
|
+
});
|
|
118
|
+
Object.setPrototypeOf(this, CapacityProviderLimitExceededException.prototype);
|
|
119
|
+
this.Type = opts.Type;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
108
122
|
export class ResourceInUseException extends __BaseException {
|
|
109
123
|
name = "ResourceInUseException";
|
|
110
124
|
$fault = "client";
|
|
@@ -167,6 +181,20 @@ export class CodeVerificationFailedException extends __BaseException {
|
|
|
167
181
|
this.Message = opts.Message;
|
|
168
182
|
}
|
|
169
183
|
}
|
|
184
|
+
export class FunctionVersionsPerCapacityProviderLimitExceededException extends __BaseException {
|
|
185
|
+
name = "FunctionVersionsPerCapacityProviderLimitExceededException";
|
|
186
|
+
$fault = "client";
|
|
187
|
+
Type;
|
|
188
|
+
constructor(opts) {
|
|
189
|
+
super({
|
|
190
|
+
name: "FunctionVersionsPerCapacityProviderLimitExceededException",
|
|
191
|
+
$fault: "client",
|
|
192
|
+
...opts,
|
|
193
|
+
});
|
|
194
|
+
Object.setPrototypeOf(this, FunctionVersionsPerCapacityProviderLimitExceededException.prototype);
|
|
195
|
+
this.Type = opts.Type;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
170
198
|
export class InvalidCodeSignatureException extends __BaseException {
|
|
171
199
|
name = "InvalidCodeSignatureException";
|
|
172
200
|
$fault = "client";
|
|
@@ -183,6 +211,22 @@ export class InvalidCodeSignatureException extends __BaseException {
|
|
|
183
211
|
this.Message = opts.Message;
|
|
184
212
|
}
|
|
185
213
|
}
|
|
214
|
+
export class DurableExecutionAlreadyStartedException extends __BaseException {
|
|
215
|
+
name = "DurableExecutionAlreadyStartedException";
|
|
216
|
+
$fault = "client";
|
|
217
|
+
Type;
|
|
218
|
+
Message;
|
|
219
|
+
constructor(opts) {
|
|
220
|
+
super({
|
|
221
|
+
name: "DurableExecutionAlreadyStartedException",
|
|
222
|
+
$fault: "client",
|
|
223
|
+
...opts,
|
|
224
|
+
});
|
|
225
|
+
Object.setPrototypeOf(this, DurableExecutionAlreadyStartedException.prototype);
|
|
226
|
+
this.Type = opts.Type;
|
|
227
|
+
this.Message = opts.Message;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
186
230
|
export class EC2AccessDeniedException extends __BaseException {
|
|
187
231
|
name = "EC2AccessDeniedException";
|
|
188
232
|
$fault = "server";
|
|
@@ -455,6 +499,22 @@ export class KMSNotFoundException extends __BaseException {
|
|
|
455
499
|
this.Message = opts.Message;
|
|
456
500
|
}
|
|
457
501
|
}
|
|
502
|
+
export class NoPublishedVersionException extends __BaseException {
|
|
503
|
+
name = "NoPublishedVersionException";
|
|
504
|
+
$fault = "client";
|
|
505
|
+
Type;
|
|
506
|
+
Message;
|
|
507
|
+
constructor(opts) {
|
|
508
|
+
super({
|
|
509
|
+
name: "NoPublishedVersionException",
|
|
510
|
+
$fault: "client",
|
|
511
|
+
...opts,
|
|
512
|
+
});
|
|
513
|
+
Object.setPrototypeOf(this, NoPublishedVersionException.prototype);
|
|
514
|
+
this.Type = opts.Type;
|
|
515
|
+
this.Message = opts.Message;
|
|
516
|
+
}
|
|
517
|
+
}
|
|
458
518
|
export class RecursiveInvocationException extends __BaseException {
|
|
459
519
|
name = "RecursiveInvocationException";
|
|
460
520
|
$fault = "client";
|
|
@@ -605,3 +665,19 @@ export class ProvisionedConcurrencyConfigNotFoundException extends __BaseExcepti
|
|
|
605
665
|
this.Type = opts.Type;
|
|
606
666
|
}
|
|
607
667
|
}
|
|
668
|
+
export class CallbackTimeoutException extends __BaseException {
|
|
669
|
+
name = "CallbackTimeoutException";
|
|
670
|
+
$fault = "client";
|
|
671
|
+
Type;
|
|
672
|
+
Message;
|
|
673
|
+
constructor(opts) {
|
|
674
|
+
super({
|
|
675
|
+
name: "CallbackTimeoutException",
|
|
676
|
+
$fault: "client",
|
|
677
|
+
...opts,
|
|
678
|
+
});
|
|
679
|
+
Object.setPrototypeOf(this, CallbackTimeoutException.prototype);
|
|
680
|
+
this.Type = opts.Type;
|
|
681
|
+
this.Message = opts.Message;
|
|
682
|
+
}
|
|
683
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { GetDurableExecutionHistoryCommand, } from "../commands/GetDurableExecutionHistoryCommand";
|
|
3
|
+
import { LambdaClient } from "../LambdaClient";
|
|
4
|
+
export const paginateGetDurableExecutionHistory = createPaginator(LambdaClient, GetDurableExecutionHistoryCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { GetDurableExecutionStateCommand, } from "../commands/GetDurableExecutionStateCommand";
|
|
3
|
+
import { LambdaClient } from "../LambdaClient";
|
|
4
|
+
export const paginateGetDurableExecutionState = createPaginator(LambdaClient, GetDurableExecutionStateCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListCapacityProvidersCommand, } from "../commands/ListCapacityProvidersCommand";
|
|
3
|
+
import { LambdaClient } from "../LambdaClient";
|
|
4
|
+
export const paginateListCapacityProviders = createPaginator(LambdaClient, ListCapacityProvidersCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListDurableExecutionsByFunctionCommand, } from "../commands/ListDurableExecutionsByFunctionCommand";
|
|
3
|
+
import { LambdaClient } from "../LambdaClient";
|
|
4
|
+
export const paginateListDurableExecutionsByFunction = createPaginator(LambdaClient, ListDurableExecutionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListFunctionVersionsByCapacityProviderCommand, } from "../commands/ListFunctionVersionsByCapacityProviderCommand";
|
|
3
|
+
import { LambdaClient } from "../LambdaClient";
|
|
4
|
+
export const paginateListFunctionVersionsByCapacityProvider = createPaginator(LambdaClient, ListFunctionVersionsByCapacityProviderCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -1,9 +1,14 @@
|
|
|
1
|
+
export * from "./GetDurableExecutionHistoryPaginator";
|
|
2
|
+
export * from "./GetDurableExecutionStatePaginator";
|
|
1
3
|
export * from "./Interfaces";
|
|
2
4
|
export * from "./ListAliasesPaginator";
|
|
5
|
+
export * from "./ListCapacityProvidersPaginator";
|
|
3
6
|
export * from "./ListCodeSigningConfigsPaginator";
|
|
7
|
+
export * from "./ListDurableExecutionsByFunctionPaginator";
|
|
4
8
|
export * from "./ListEventSourceMappingsPaginator";
|
|
5
9
|
export * from "./ListFunctionEventInvokeConfigsPaginator";
|
|
6
10
|
export * from "./ListFunctionUrlConfigsPaginator";
|
|
11
|
+
export * from "./ListFunctionVersionsByCapacityProviderPaginator";
|
|
7
12
|
export * from "./ListFunctionsByCodeSigningConfigPaginator";
|
|
8
13
|
export * from "./ListFunctionsPaginator";
|
|
9
14
|
export * from "./ListLayerVersionsPaginator";
|