@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-types/Lambda.d.ts
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
2
|
import { AddLayerVersionPermissionCommandInput, AddLayerVersionPermissionCommandOutput } from "./commands/AddLayerVersionPermissionCommand";
|
|
3
3
|
import { AddPermissionCommandInput, AddPermissionCommandOutput } from "./commands/AddPermissionCommand";
|
|
4
|
+
import { CheckpointDurableExecutionCommandInput, CheckpointDurableExecutionCommandOutput } from "./commands/CheckpointDurableExecutionCommand";
|
|
4
5
|
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
6
|
+
import { CreateCapacityProviderCommandInput, CreateCapacityProviderCommandOutput } from "./commands/CreateCapacityProviderCommand";
|
|
5
7
|
import { CreateCodeSigningConfigCommandInput, CreateCodeSigningConfigCommandOutput } from "./commands/CreateCodeSigningConfigCommand";
|
|
6
8
|
import { CreateEventSourceMappingCommandInput, CreateEventSourceMappingCommandOutput } from "./commands/CreateEventSourceMappingCommand";
|
|
7
9
|
import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "./commands/CreateFunctionCommand";
|
|
8
10
|
import { CreateFunctionUrlConfigCommandInput, CreateFunctionUrlConfigCommandOutput } from "./commands/CreateFunctionUrlConfigCommand";
|
|
9
11
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
12
|
+
import { DeleteCapacityProviderCommandInput, DeleteCapacityProviderCommandOutput } from "./commands/DeleteCapacityProviderCommand";
|
|
10
13
|
import { DeleteCodeSigningConfigCommandInput, DeleteCodeSigningConfigCommandOutput } from "./commands/DeleteCodeSigningConfigCommand";
|
|
11
14
|
import { DeleteEventSourceMappingCommandInput, DeleteEventSourceMappingCommandOutput } from "./commands/DeleteEventSourceMappingCommand";
|
|
12
15
|
import { DeleteFunctionCodeSigningConfigCommandInput, DeleteFunctionCodeSigningConfigCommandOutput } from "./commands/DeleteFunctionCodeSigningConfigCommand";
|
|
@@ -18,7 +21,11 @@ import { DeleteLayerVersionCommandInput, DeleteLayerVersionCommandOutput } from
|
|
|
18
21
|
import { DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput } from "./commands/DeleteProvisionedConcurrencyConfigCommand";
|
|
19
22
|
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
|
|
20
23
|
import { GetAliasCommandInput, GetAliasCommandOutput } from "./commands/GetAliasCommand";
|
|
24
|
+
import { GetCapacityProviderCommandInput, GetCapacityProviderCommandOutput } from "./commands/GetCapacityProviderCommand";
|
|
21
25
|
import { GetCodeSigningConfigCommandInput, GetCodeSigningConfigCommandOutput } from "./commands/GetCodeSigningConfigCommand";
|
|
26
|
+
import { GetDurableExecutionCommandInput, GetDurableExecutionCommandOutput } from "./commands/GetDurableExecutionCommand";
|
|
27
|
+
import { GetDurableExecutionHistoryCommandInput, GetDurableExecutionHistoryCommandOutput } from "./commands/GetDurableExecutionHistoryCommand";
|
|
28
|
+
import { GetDurableExecutionStateCommandInput, GetDurableExecutionStateCommandOutput } from "./commands/GetDurableExecutionStateCommand";
|
|
22
29
|
import { GetEventSourceMappingCommandInput, GetEventSourceMappingCommandOutput } from "./commands/GetEventSourceMappingCommand";
|
|
23
30
|
import { GetFunctionCodeSigningConfigCommandInput, GetFunctionCodeSigningConfigCommandOutput } from "./commands/GetFunctionCodeSigningConfigCommand";
|
|
24
31
|
import { GetFunctionCommandInput, GetFunctionCommandOutput } from "./commands/GetFunctionCommand";
|
|
@@ -26,6 +33,7 @@ import { GetFunctionConcurrencyCommandInput, GetFunctionConcurrencyCommandOutput
|
|
|
26
33
|
import { GetFunctionConfigurationCommandInput, GetFunctionConfigurationCommandOutput } from "./commands/GetFunctionConfigurationCommand";
|
|
27
34
|
import { GetFunctionEventInvokeConfigCommandInput, GetFunctionEventInvokeConfigCommandOutput } from "./commands/GetFunctionEventInvokeConfigCommand";
|
|
28
35
|
import { GetFunctionRecursionConfigCommandInput, GetFunctionRecursionConfigCommandOutput } from "./commands/GetFunctionRecursionConfigCommand";
|
|
36
|
+
import { GetFunctionScalingConfigCommandInput, GetFunctionScalingConfigCommandOutput } from "./commands/GetFunctionScalingConfigCommand";
|
|
29
37
|
import { GetFunctionUrlConfigCommandInput, GetFunctionUrlConfigCommandOutput } from "./commands/GetFunctionUrlConfigCommand";
|
|
30
38
|
import { GetLayerVersionByArnCommandInput, GetLayerVersionByArnCommandOutput } from "./commands/GetLayerVersionByArnCommand";
|
|
31
39
|
import { GetLayerVersionCommandInput, GetLayerVersionCommandOutput } from "./commands/GetLayerVersionCommand";
|
|
@@ -37,12 +45,15 @@ import { InvokeAsyncCommandInput, InvokeAsyncCommandOutput } from "./commands/In
|
|
|
37
45
|
import { InvokeCommandInput, InvokeCommandOutput } from "./commands/InvokeCommand";
|
|
38
46
|
import { InvokeWithResponseStreamCommandInput, InvokeWithResponseStreamCommandOutput } from "./commands/InvokeWithResponseStreamCommand";
|
|
39
47
|
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
48
|
+
import { ListCapacityProvidersCommandInput, ListCapacityProvidersCommandOutput } from "./commands/ListCapacityProvidersCommand";
|
|
40
49
|
import { ListCodeSigningConfigsCommandInput, ListCodeSigningConfigsCommandOutput } from "./commands/ListCodeSigningConfigsCommand";
|
|
50
|
+
import { ListDurableExecutionsByFunctionCommandInput, ListDurableExecutionsByFunctionCommandOutput } from "./commands/ListDurableExecutionsByFunctionCommand";
|
|
41
51
|
import { ListEventSourceMappingsCommandInput, ListEventSourceMappingsCommandOutput } from "./commands/ListEventSourceMappingsCommand";
|
|
42
52
|
import { ListFunctionEventInvokeConfigsCommandInput, ListFunctionEventInvokeConfigsCommandOutput } from "./commands/ListFunctionEventInvokeConfigsCommand";
|
|
43
53
|
import { ListFunctionsByCodeSigningConfigCommandInput, ListFunctionsByCodeSigningConfigCommandOutput } from "./commands/ListFunctionsByCodeSigningConfigCommand";
|
|
44
54
|
import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
|
|
45
55
|
import { ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput } from "./commands/ListFunctionUrlConfigsCommand";
|
|
56
|
+
import { ListFunctionVersionsByCapacityProviderCommandInput, ListFunctionVersionsByCapacityProviderCommandOutput } from "./commands/ListFunctionVersionsByCapacityProviderCommand";
|
|
46
57
|
import { ListLayersCommandInput, ListLayersCommandOutput } from "./commands/ListLayersCommand";
|
|
47
58
|
import { ListLayerVersionsCommandInput, ListLayerVersionsCommandOutput } from "./commands/ListLayerVersionsCommand";
|
|
48
59
|
import { ListProvisionedConcurrencyConfigsCommandInput, ListProvisionedConcurrencyConfigsCommandOutput } from "./commands/ListProvisionedConcurrencyConfigsCommand";
|
|
@@ -54,13 +65,19 @@ import { PutFunctionCodeSigningConfigCommandInput, PutFunctionCodeSigningConfigC
|
|
|
54
65
|
import { PutFunctionConcurrencyCommandInput, PutFunctionConcurrencyCommandOutput } from "./commands/PutFunctionConcurrencyCommand";
|
|
55
66
|
import { PutFunctionEventInvokeConfigCommandInput, PutFunctionEventInvokeConfigCommandOutput } from "./commands/PutFunctionEventInvokeConfigCommand";
|
|
56
67
|
import { PutFunctionRecursionConfigCommandInput, PutFunctionRecursionConfigCommandOutput } from "./commands/PutFunctionRecursionConfigCommand";
|
|
68
|
+
import { PutFunctionScalingConfigCommandInput, PutFunctionScalingConfigCommandOutput } from "./commands/PutFunctionScalingConfigCommand";
|
|
57
69
|
import { PutProvisionedConcurrencyConfigCommandInput, PutProvisionedConcurrencyConfigCommandOutput } from "./commands/PutProvisionedConcurrencyConfigCommand";
|
|
58
70
|
import { PutRuntimeManagementConfigCommandInput, PutRuntimeManagementConfigCommandOutput } from "./commands/PutRuntimeManagementConfigCommand";
|
|
59
71
|
import { RemoveLayerVersionPermissionCommandInput, RemoveLayerVersionPermissionCommandOutput } from "./commands/RemoveLayerVersionPermissionCommand";
|
|
60
72
|
import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "./commands/RemovePermissionCommand";
|
|
73
|
+
import { SendDurableExecutionCallbackFailureCommandInput, SendDurableExecutionCallbackFailureCommandOutput } from "./commands/SendDurableExecutionCallbackFailureCommand";
|
|
74
|
+
import { SendDurableExecutionCallbackHeartbeatCommandInput, SendDurableExecutionCallbackHeartbeatCommandOutput } from "./commands/SendDurableExecutionCallbackHeartbeatCommand";
|
|
75
|
+
import { SendDurableExecutionCallbackSuccessCommandInput, SendDurableExecutionCallbackSuccessCommandOutput } from "./commands/SendDurableExecutionCallbackSuccessCommand";
|
|
76
|
+
import { StopDurableExecutionCommandInput, StopDurableExecutionCommandOutput } from "./commands/StopDurableExecutionCommand";
|
|
61
77
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
62
78
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
63
79
|
import { UpdateAliasCommandInput, UpdateAliasCommandOutput } from "./commands/UpdateAliasCommand";
|
|
80
|
+
import { UpdateCapacityProviderCommandInput, UpdateCapacityProviderCommandOutput } from "./commands/UpdateCapacityProviderCommand";
|
|
64
81
|
import { UpdateCodeSigningConfigCommandInput, UpdateCodeSigningConfigCommandOutput } from "./commands/UpdateCodeSigningConfigCommand";
|
|
65
82
|
import { UpdateEventSourceMappingCommandInput, UpdateEventSourceMappingCommandOutput } from "./commands/UpdateEventSourceMappingCommand";
|
|
66
83
|
import { UpdateFunctionCodeCommandInput, UpdateFunctionCodeCommandOutput } from "./commands/UpdateFunctionCodeCommand";
|
|
@@ -81,12 +98,24 @@ export interface Lambda {
|
|
|
81
98
|
addPermission(args: AddPermissionCommandInput, options?: __HttpHandlerOptions): Promise<AddPermissionCommandOutput>;
|
|
82
99
|
addPermission(args: AddPermissionCommandInput, cb: (err: any, data?: AddPermissionCommandOutput) => void): void;
|
|
83
100
|
addPermission(args: AddPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddPermissionCommandOutput) => void): void;
|
|
101
|
+
/**
|
|
102
|
+
* @see {@link CheckpointDurableExecutionCommand}
|
|
103
|
+
*/
|
|
104
|
+
checkpointDurableExecution(args: CheckpointDurableExecutionCommandInput, options?: __HttpHandlerOptions): Promise<CheckpointDurableExecutionCommandOutput>;
|
|
105
|
+
checkpointDurableExecution(args: CheckpointDurableExecutionCommandInput, cb: (err: any, data?: CheckpointDurableExecutionCommandOutput) => void): void;
|
|
106
|
+
checkpointDurableExecution(args: CheckpointDurableExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CheckpointDurableExecutionCommandOutput) => void): void;
|
|
84
107
|
/**
|
|
85
108
|
* @see {@link CreateAliasCommand}
|
|
86
109
|
*/
|
|
87
110
|
createAlias(args: CreateAliasCommandInput, options?: __HttpHandlerOptions): Promise<CreateAliasCommandOutput>;
|
|
88
111
|
createAlias(args: CreateAliasCommandInput, cb: (err: any, data?: CreateAliasCommandOutput) => void): void;
|
|
89
112
|
createAlias(args: CreateAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAliasCommandOutput) => void): void;
|
|
113
|
+
/**
|
|
114
|
+
* @see {@link CreateCapacityProviderCommand}
|
|
115
|
+
*/
|
|
116
|
+
createCapacityProvider(args: CreateCapacityProviderCommandInput, options?: __HttpHandlerOptions): Promise<CreateCapacityProviderCommandOutput>;
|
|
117
|
+
createCapacityProvider(args: CreateCapacityProviderCommandInput, cb: (err: any, data?: CreateCapacityProviderCommandOutput) => void): void;
|
|
118
|
+
createCapacityProvider(args: CreateCapacityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCapacityProviderCommandOutput) => void): void;
|
|
90
119
|
/**
|
|
91
120
|
* @see {@link CreateCodeSigningConfigCommand}
|
|
92
121
|
*/
|
|
@@ -117,6 +146,12 @@ export interface Lambda {
|
|
|
117
146
|
deleteAlias(args: DeleteAliasCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAliasCommandOutput>;
|
|
118
147
|
deleteAlias(args: DeleteAliasCommandInput, cb: (err: any, data?: DeleteAliasCommandOutput) => void): void;
|
|
119
148
|
deleteAlias(args: DeleteAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAliasCommandOutput) => void): void;
|
|
149
|
+
/**
|
|
150
|
+
* @see {@link DeleteCapacityProviderCommand}
|
|
151
|
+
*/
|
|
152
|
+
deleteCapacityProvider(args: DeleteCapacityProviderCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCapacityProviderCommandOutput>;
|
|
153
|
+
deleteCapacityProvider(args: DeleteCapacityProviderCommandInput, cb: (err: any, data?: DeleteCapacityProviderCommandOutput) => void): void;
|
|
154
|
+
deleteCapacityProvider(args: DeleteCapacityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCapacityProviderCommandOutput) => void): void;
|
|
120
155
|
/**
|
|
121
156
|
* @see {@link DeleteCodeSigningConfigCommand}
|
|
122
157
|
*/
|
|
@@ -184,12 +219,36 @@ export interface Lambda {
|
|
|
184
219
|
getAlias(args: GetAliasCommandInput, options?: __HttpHandlerOptions): Promise<GetAliasCommandOutput>;
|
|
185
220
|
getAlias(args: GetAliasCommandInput, cb: (err: any, data?: GetAliasCommandOutput) => void): void;
|
|
186
221
|
getAlias(args: GetAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAliasCommandOutput) => void): void;
|
|
222
|
+
/**
|
|
223
|
+
* @see {@link GetCapacityProviderCommand}
|
|
224
|
+
*/
|
|
225
|
+
getCapacityProvider(args: GetCapacityProviderCommandInput, options?: __HttpHandlerOptions): Promise<GetCapacityProviderCommandOutput>;
|
|
226
|
+
getCapacityProvider(args: GetCapacityProviderCommandInput, cb: (err: any, data?: GetCapacityProviderCommandOutput) => void): void;
|
|
227
|
+
getCapacityProvider(args: GetCapacityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCapacityProviderCommandOutput) => void): void;
|
|
187
228
|
/**
|
|
188
229
|
* @see {@link GetCodeSigningConfigCommand}
|
|
189
230
|
*/
|
|
190
231
|
getCodeSigningConfig(args: GetCodeSigningConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetCodeSigningConfigCommandOutput>;
|
|
191
232
|
getCodeSigningConfig(args: GetCodeSigningConfigCommandInput, cb: (err: any, data?: GetCodeSigningConfigCommandOutput) => void): void;
|
|
192
233
|
getCodeSigningConfig(args: GetCodeSigningConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCodeSigningConfigCommandOutput) => void): void;
|
|
234
|
+
/**
|
|
235
|
+
* @see {@link GetDurableExecutionCommand}
|
|
236
|
+
*/
|
|
237
|
+
getDurableExecution(args: GetDurableExecutionCommandInput, options?: __HttpHandlerOptions): Promise<GetDurableExecutionCommandOutput>;
|
|
238
|
+
getDurableExecution(args: GetDurableExecutionCommandInput, cb: (err: any, data?: GetDurableExecutionCommandOutput) => void): void;
|
|
239
|
+
getDurableExecution(args: GetDurableExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDurableExecutionCommandOutput) => void): void;
|
|
240
|
+
/**
|
|
241
|
+
* @see {@link GetDurableExecutionHistoryCommand}
|
|
242
|
+
*/
|
|
243
|
+
getDurableExecutionHistory(args: GetDurableExecutionHistoryCommandInput, options?: __HttpHandlerOptions): Promise<GetDurableExecutionHistoryCommandOutput>;
|
|
244
|
+
getDurableExecutionHistory(args: GetDurableExecutionHistoryCommandInput, cb: (err: any, data?: GetDurableExecutionHistoryCommandOutput) => void): void;
|
|
245
|
+
getDurableExecutionHistory(args: GetDurableExecutionHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDurableExecutionHistoryCommandOutput) => void): void;
|
|
246
|
+
/**
|
|
247
|
+
* @see {@link GetDurableExecutionStateCommand}
|
|
248
|
+
*/
|
|
249
|
+
getDurableExecutionState(args: GetDurableExecutionStateCommandInput, options?: __HttpHandlerOptions): Promise<GetDurableExecutionStateCommandOutput>;
|
|
250
|
+
getDurableExecutionState(args: GetDurableExecutionStateCommandInput, cb: (err: any, data?: GetDurableExecutionStateCommandOutput) => void): void;
|
|
251
|
+
getDurableExecutionState(args: GetDurableExecutionStateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDurableExecutionStateCommandOutput) => void): void;
|
|
193
252
|
/**
|
|
194
253
|
* @see {@link GetEventSourceMappingCommand}
|
|
195
254
|
*/
|
|
@@ -232,6 +291,12 @@ export interface Lambda {
|
|
|
232
291
|
getFunctionRecursionConfig(args: GetFunctionRecursionConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionRecursionConfigCommandOutput>;
|
|
233
292
|
getFunctionRecursionConfig(args: GetFunctionRecursionConfigCommandInput, cb: (err: any, data?: GetFunctionRecursionConfigCommandOutput) => void): void;
|
|
234
293
|
getFunctionRecursionConfig(args: GetFunctionRecursionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionRecursionConfigCommandOutput) => void): void;
|
|
294
|
+
/**
|
|
295
|
+
* @see {@link GetFunctionScalingConfigCommand}
|
|
296
|
+
*/
|
|
297
|
+
getFunctionScalingConfig(args: GetFunctionScalingConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionScalingConfigCommandOutput>;
|
|
298
|
+
getFunctionScalingConfig(args: GetFunctionScalingConfigCommandInput, cb: (err: any, data?: GetFunctionScalingConfigCommandOutput) => void): void;
|
|
299
|
+
getFunctionScalingConfig(args: GetFunctionScalingConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionScalingConfigCommandOutput) => void): void;
|
|
235
300
|
/**
|
|
236
301
|
* @see {@link GetFunctionUrlConfigCommand}
|
|
237
302
|
*/
|
|
@@ -298,6 +363,13 @@ export interface Lambda {
|
|
|
298
363
|
listAliases(args: ListAliasesCommandInput, options?: __HttpHandlerOptions): Promise<ListAliasesCommandOutput>;
|
|
299
364
|
listAliases(args: ListAliasesCommandInput, cb: (err: any, data?: ListAliasesCommandOutput) => void): void;
|
|
300
365
|
listAliases(args: ListAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAliasesCommandOutput) => void): void;
|
|
366
|
+
/**
|
|
367
|
+
* @see {@link ListCapacityProvidersCommand}
|
|
368
|
+
*/
|
|
369
|
+
listCapacityProviders(): Promise<ListCapacityProvidersCommandOutput>;
|
|
370
|
+
listCapacityProviders(args: ListCapacityProvidersCommandInput, options?: __HttpHandlerOptions): Promise<ListCapacityProvidersCommandOutput>;
|
|
371
|
+
listCapacityProviders(args: ListCapacityProvidersCommandInput, cb: (err: any, data?: ListCapacityProvidersCommandOutput) => void): void;
|
|
372
|
+
listCapacityProviders(args: ListCapacityProvidersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCapacityProvidersCommandOutput) => void): void;
|
|
301
373
|
/**
|
|
302
374
|
* @see {@link ListCodeSigningConfigsCommand}
|
|
303
375
|
*/
|
|
@@ -305,6 +377,12 @@ export interface Lambda {
|
|
|
305
377
|
listCodeSigningConfigs(args: ListCodeSigningConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListCodeSigningConfigsCommandOutput>;
|
|
306
378
|
listCodeSigningConfigs(args: ListCodeSigningConfigsCommandInput, cb: (err: any, data?: ListCodeSigningConfigsCommandOutput) => void): void;
|
|
307
379
|
listCodeSigningConfigs(args: ListCodeSigningConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCodeSigningConfigsCommandOutput) => void): void;
|
|
380
|
+
/**
|
|
381
|
+
* @see {@link ListDurableExecutionsByFunctionCommand}
|
|
382
|
+
*/
|
|
383
|
+
listDurableExecutionsByFunction(args: ListDurableExecutionsByFunctionCommandInput, options?: __HttpHandlerOptions): Promise<ListDurableExecutionsByFunctionCommandOutput>;
|
|
384
|
+
listDurableExecutionsByFunction(args: ListDurableExecutionsByFunctionCommandInput, cb: (err: any, data?: ListDurableExecutionsByFunctionCommandOutput) => void): void;
|
|
385
|
+
listDurableExecutionsByFunction(args: ListDurableExecutionsByFunctionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDurableExecutionsByFunctionCommandOutput) => void): void;
|
|
308
386
|
/**
|
|
309
387
|
* @see {@link ListEventSourceMappingsCommand}
|
|
310
388
|
*/
|
|
@@ -337,6 +415,12 @@ export interface Lambda {
|
|
|
337
415
|
listFunctionUrlConfigs(args: ListFunctionUrlConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListFunctionUrlConfigsCommandOutput>;
|
|
338
416
|
listFunctionUrlConfigs(args: ListFunctionUrlConfigsCommandInput, cb: (err: any, data?: ListFunctionUrlConfigsCommandOutput) => void): void;
|
|
339
417
|
listFunctionUrlConfigs(args: ListFunctionUrlConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionUrlConfigsCommandOutput) => void): void;
|
|
418
|
+
/**
|
|
419
|
+
* @see {@link ListFunctionVersionsByCapacityProviderCommand}
|
|
420
|
+
*/
|
|
421
|
+
listFunctionVersionsByCapacityProvider(args: ListFunctionVersionsByCapacityProviderCommandInput, options?: __HttpHandlerOptions): Promise<ListFunctionVersionsByCapacityProviderCommandOutput>;
|
|
422
|
+
listFunctionVersionsByCapacityProvider(args: ListFunctionVersionsByCapacityProviderCommandInput, cb: (err: any, data?: ListFunctionVersionsByCapacityProviderCommandOutput) => void): void;
|
|
423
|
+
listFunctionVersionsByCapacityProvider(args: ListFunctionVersionsByCapacityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionVersionsByCapacityProviderCommandOutput) => void): void;
|
|
340
424
|
/**
|
|
341
425
|
* @see {@link ListLayersCommand}
|
|
342
426
|
*/
|
|
@@ -404,6 +488,12 @@ export interface Lambda {
|
|
|
404
488
|
putFunctionRecursionConfig(args: PutFunctionRecursionConfigCommandInput, options?: __HttpHandlerOptions): Promise<PutFunctionRecursionConfigCommandOutput>;
|
|
405
489
|
putFunctionRecursionConfig(args: PutFunctionRecursionConfigCommandInput, cb: (err: any, data?: PutFunctionRecursionConfigCommandOutput) => void): void;
|
|
406
490
|
putFunctionRecursionConfig(args: PutFunctionRecursionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutFunctionRecursionConfigCommandOutput) => void): void;
|
|
491
|
+
/**
|
|
492
|
+
* @see {@link PutFunctionScalingConfigCommand}
|
|
493
|
+
*/
|
|
494
|
+
putFunctionScalingConfig(args: PutFunctionScalingConfigCommandInput, options?: __HttpHandlerOptions): Promise<PutFunctionScalingConfigCommandOutput>;
|
|
495
|
+
putFunctionScalingConfig(args: PutFunctionScalingConfigCommandInput, cb: (err: any, data?: PutFunctionScalingConfigCommandOutput) => void): void;
|
|
496
|
+
putFunctionScalingConfig(args: PutFunctionScalingConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutFunctionScalingConfigCommandOutput) => void): void;
|
|
407
497
|
/**
|
|
408
498
|
* @see {@link PutProvisionedConcurrencyConfigCommand}
|
|
409
499
|
*/
|
|
@@ -428,6 +518,30 @@ export interface Lambda {
|
|
|
428
518
|
removePermission(args: RemovePermissionCommandInput, options?: __HttpHandlerOptions): Promise<RemovePermissionCommandOutput>;
|
|
429
519
|
removePermission(args: RemovePermissionCommandInput, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
|
|
430
520
|
removePermission(args: RemovePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
|
|
521
|
+
/**
|
|
522
|
+
* @see {@link SendDurableExecutionCallbackFailureCommand}
|
|
523
|
+
*/
|
|
524
|
+
sendDurableExecutionCallbackFailure(args: SendDurableExecutionCallbackFailureCommandInput, options?: __HttpHandlerOptions): Promise<SendDurableExecutionCallbackFailureCommandOutput>;
|
|
525
|
+
sendDurableExecutionCallbackFailure(args: SendDurableExecutionCallbackFailureCommandInput, cb: (err: any, data?: SendDurableExecutionCallbackFailureCommandOutput) => void): void;
|
|
526
|
+
sendDurableExecutionCallbackFailure(args: SendDurableExecutionCallbackFailureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDurableExecutionCallbackFailureCommandOutput) => void): void;
|
|
527
|
+
/**
|
|
528
|
+
* @see {@link SendDurableExecutionCallbackHeartbeatCommand}
|
|
529
|
+
*/
|
|
530
|
+
sendDurableExecutionCallbackHeartbeat(args: SendDurableExecutionCallbackHeartbeatCommandInput, options?: __HttpHandlerOptions): Promise<SendDurableExecutionCallbackHeartbeatCommandOutput>;
|
|
531
|
+
sendDurableExecutionCallbackHeartbeat(args: SendDurableExecutionCallbackHeartbeatCommandInput, cb: (err: any, data?: SendDurableExecutionCallbackHeartbeatCommandOutput) => void): void;
|
|
532
|
+
sendDurableExecutionCallbackHeartbeat(args: SendDurableExecutionCallbackHeartbeatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDurableExecutionCallbackHeartbeatCommandOutput) => void): void;
|
|
533
|
+
/**
|
|
534
|
+
* @see {@link SendDurableExecutionCallbackSuccessCommand}
|
|
535
|
+
*/
|
|
536
|
+
sendDurableExecutionCallbackSuccess(args: SendDurableExecutionCallbackSuccessCommandInput, options?: __HttpHandlerOptions): Promise<SendDurableExecutionCallbackSuccessCommandOutput>;
|
|
537
|
+
sendDurableExecutionCallbackSuccess(args: SendDurableExecutionCallbackSuccessCommandInput, cb: (err: any, data?: SendDurableExecutionCallbackSuccessCommandOutput) => void): void;
|
|
538
|
+
sendDurableExecutionCallbackSuccess(args: SendDurableExecutionCallbackSuccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDurableExecutionCallbackSuccessCommandOutput) => void): void;
|
|
539
|
+
/**
|
|
540
|
+
* @see {@link StopDurableExecutionCommand}
|
|
541
|
+
*/
|
|
542
|
+
stopDurableExecution(args: StopDurableExecutionCommandInput, options?: __HttpHandlerOptions): Promise<StopDurableExecutionCommandOutput>;
|
|
543
|
+
stopDurableExecution(args: StopDurableExecutionCommandInput, cb: (err: any, data?: StopDurableExecutionCommandOutput) => void): void;
|
|
544
|
+
stopDurableExecution(args: StopDurableExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopDurableExecutionCommandOutput) => void): void;
|
|
431
545
|
/**
|
|
432
546
|
* @see {@link TagResourceCommand}
|
|
433
547
|
*/
|
|
@@ -446,6 +560,12 @@ export interface Lambda {
|
|
|
446
560
|
updateAlias(args: UpdateAliasCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAliasCommandOutput>;
|
|
447
561
|
updateAlias(args: UpdateAliasCommandInput, cb: (err: any, data?: UpdateAliasCommandOutput) => void): void;
|
|
448
562
|
updateAlias(args: UpdateAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAliasCommandOutput) => void): void;
|
|
563
|
+
/**
|
|
564
|
+
* @see {@link UpdateCapacityProviderCommand}
|
|
565
|
+
*/
|
|
566
|
+
updateCapacityProvider(args: UpdateCapacityProviderCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCapacityProviderCommandOutput>;
|
|
567
|
+
updateCapacityProvider(args: UpdateCapacityProviderCommandInput, cb: (err: any, data?: UpdateCapacityProviderCommandOutput) => void): void;
|
|
568
|
+
updateCapacityProvider(args: UpdateCapacityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCapacityProviderCommandOutput) => void): void;
|
|
449
569
|
/**
|
|
450
570
|
* @see {@link UpdateCodeSigningConfigCommand}
|
|
451
571
|
*/
|
|
@@ -10,12 +10,15 @@ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalc
|
|
|
10
10
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
11
11
|
import { AddLayerVersionPermissionCommandInput, AddLayerVersionPermissionCommandOutput } from "./commands/AddLayerVersionPermissionCommand";
|
|
12
12
|
import { AddPermissionCommandInput, AddPermissionCommandOutput } from "./commands/AddPermissionCommand";
|
|
13
|
+
import { CheckpointDurableExecutionCommandInput, CheckpointDurableExecutionCommandOutput } from "./commands/CheckpointDurableExecutionCommand";
|
|
13
14
|
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
15
|
+
import { CreateCapacityProviderCommandInput, CreateCapacityProviderCommandOutput } from "./commands/CreateCapacityProviderCommand";
|
|
14
16
|
import { CreateCodeSigningConfigCommandInput, CreateCodeSigningConfigCommandOutput } from "./commands/CreateCodeSigningConfigCommand";
|
|
15
17
|
import { CreateEventSourceMappingCommandInput, CreateEventSourceMappingCommandOutput } from "./commands/CreateEventSourceMappingCommand";
|
|
16
18
|
import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "./commands/CreateFunctionCommand";
|
|
17
19
|
import { CreateFunctionUrlConfigCommandInput, CreateFunctionUrlConfigCommandOutput } from "./commands/CreateFunctionUrlConfigCommand";
|
|
18
20
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
21
|
+
import { DeleteCapacityProviderCommandInput, DeleteCapacityProviderCommandOutput } from "./commands/DeleteCapacityProviderCommand";
|
|
19
22
|
import { DeleteCodeSigningConfigCommandInput, DeleteCodeSigningConfigCommandOutput } from "./commands/DeleteCodeSigningConfigCommand";
|
|
20
23
|
import { DeleteEventSourceMappingCommandInput, DeleteEventSourceMappingCommandOutput } from "./commands/DeleteEventSourceMappingCommand";
|
|
21
24
|
import { DeleteFunctionCodeSigningConfigCommandInput, DeleteFunctionCodeSigningConfigCommandOutput } from "./commands/DeleteFunctionCodeSigningConfigCommand";
|
|
@@ -27,7 +30,11 @@ import { DeleteLayerVersionCommandInput, DeleteLayerVersionCommandOutput } from
|
|
|
27
30
|
import { DeleteProvisionedConcurrencyConfigCommandInput, DeleteProvisionedConcurrencyConfigCommandOutput } from "./commands/DeleteProvisionedConcurrencyConfigCommand";
|
|
28
31
|
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
|
|
29
32
|
import { GetAliasCommandInput, GetAliasCommandOutput } from "./commands/GetAliasCommand";
|
|
33
|
+
import { GetCapacityProviderCommandInput, GetCapacityProviderCommandOutput } from "./commands/GetCapacityProviderCommand";
|
|
30
34
|
import { GetCodeSigningConfigCommandInput, GetCodeSigningConfigCommandOutput } from "./commands/GetCodeSigningConfigCommand";
|
|
35
|
+
import { GetDurableExecutionCommandInput, GetDurableExecutionCommandOutput } from "./commands/GetDurableExecutionCommand";
|
|
36
|
+
import { GetDurableExecutionHistoryCommandInput, GetDurableExecutionHistoryCommandOutput } from "./commands/GetDurableExecutionHistoryCommand";
|
|
37
|
+
import { GetDurableExecutionStateCommandInput, GetDurableExecutionStateCommandOutput } from "./commands/GetDurableExecutionStateCommand";
|
|
31
38
|
import { GetEventSourceMappingCommandInput, GetEventSourceMappingCommandOutput } from "./commands/GetEventSourceMappingCommand";
|
|
32
39
|
import { GetFunctionCodeSigningConfigCommandInput, GetFunctionCodeSigningConfigCommandOutput } from "./commands/GetFunctionCodeSigningConfigCommand";
|
|
33
40
|
import { GetFunctionCommandInput, GetFunctionCommandOutput } from "./commands/GetFunctionCommand";
|
|
@@ -35,6 +42,7 @@ import { GetFunctionConcurrencyCommandInput, GetFunctionConcurrencyCommandOutput
|
|
|
35
42
|
import { GetFunctionConfigurationCommandInput, GetFunctionConfigurationCommandOutput } from "./commands/GetFunctionConfigurationCommand";
|
|
36
43
|
import { GetFunctionEventInvokeConfigCommandInput, GetFunctionEventInvokeConfigCommandOutput } from "./commands/GetFunctionEventInvokeConfigCommand";
|
|
37
44
|
import { GetFunctionRecursionConfigCommandInput, GetFunctionRecursionConfigCommandOutput } from "./commands/GetFunctionRecursionConfigCommand";
|
|
45
|
+
import { GetFunctionScalingConfigCommandInput, GetFunctionScalingConfigCommandOutput } from "./commands/GetFunctionScalingConfigCommand";
|
|
38
46
|
import { GetFunctionUrlConfigCommandInput, GetFunctionUrlConfigCommandOutput } from "./commands/GetFunctionUrlConfigCommand";
|
|
39
47
|
import { GetLayerVersionByArnCommandInput, GetLayerVersionByArnCommandOutput } from "./commands/GetLayerVersionByArnCommand";
|
|
40
48
|
import { GetLayerVersionCommandInput, GetLayerVersionCommandOutput } from "./commands/GetLayerVersionCommand";
|
|
@@ -46,12 +54,15 @@ import { InvokeAsyncCommandInput, InvokeAsyncCommandOutput } from "./commands/In
|
|
|
46
54
|
import { InvokeCommandInput, InvokeCommandOutput } from "./commands/InvokeCommand";
|
|
47
55
|
import { InvokeWithResponseStreamCommandInput, InvokeWithResponseStreamCommandOutput } from "./commands/InvokeWithResponseStreamCommand";
|
|
48
56
|
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "./commands/ListAliasesCommand";
|
|
57
|
+
import { ListCapacityProvidersCommandInput, ListCapacityProvidersCommandOutput } from "./commands/ListCapacityProvidersCommand";
|
|
49
58
|
import { ListCodeSigningConfigsCommandInput, ListCodeSigningConfigsCommandOutput } from "./commands/ListCodeSigningConfigsCommand";
|
|
59
|
+
import { ListDurableExecutionsByFunctionCommandInput, ListDurableExecutionsByFunctionCommandOutput } from "./commands/ListDurableExecutionsByFunctionCommand";
|
|
50
60
|
import { ListEventSourceMappingsCommandInput, ListEventSourceMappingsCommandOutput } from "./commands/ListEventSourceMappingsCommand";
|
|
51
61
|
import { ListFunctionEventInvokeConfigsCommandInput, ListFunctionEventInvokeConfigsCommandOutput } from "./commands/ListFunctionEventInvokeConfigsCommand";
|
|
52
62
|
import { ListFunctionsByCodeSigningConfigCommandInput, ListFunctionsByCodeSigningConfigCommandOutput } from "./commands/ListFunctionsByCodeSigningConfigCommand";
|
|
53
63
|
import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
|
|
54
64
|
import { ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput } from "./commands/ListFunctionUrlConfigsCommand";
|
|
65
|
+
import { ListFunctionVersionsByCapacityProviderCommandInput, ListFunctionVersionsByCapacityProviderCommandOutput } from "./commands/ListFunctionVersionsByCapacityProviderCommand";
|
|
55
66
|
import { ListLayersCommandInput, ListLayersCommandOutput } from "./commands/ListLayersCommand";
|
|
56
67
|
import { ListLayerVersionsCommandInput, ListLayerVersionsCommandOutput } from "./commands/ListLayerVersionsCommand";
|
|
57
68
|
import { ListProvisionedConcurrencyConfigsCommandInput, ListProvisionedConcurrencyConfigsCommandOutput } from "./commands/ListProvisionedConcurrencyConfigsCommand";
|
|
@@ -63,13 +74,19 @@ import { PutFunctionCodeSigningConfigCommandInput, PutFunctionCodeSigningConfigC
|
|
|
63
74
|
import { PutFunctionConcurrencyCommandInput, PutFunctionConcurrencyCommandOutput } from "./commands/PutFunctionConcurrencyCommand";
|
|
64
75
|
import { PutFunctionEventInvokeConfigCommandInput, PutFunctionEventInvokeConfigCommandOutput } from "./commands/PutFunctionEventInvokeConfigCommand";
|
|
65
76
|
import { PutFunctionRecursionConfigCommandInput, PutFunctionRecursionConfigCommandOutput } from "./commands/PutFunctionRecursionConfigCommand";
|
|
77
|
+
import { PutFunctionScalingConfigCommandInput, PutFunctionScalingConfigCommandOutput } from "./commands/PutFunctionScalingConfigCommand";
|
|
66
78
|
import { PutProvisionedConcurrencyConfigCommandInput, PutProvisionedConcurrencyConfigCommandOutput } from "./commands/PutProvisionedConcurrencyConfigCommand";
|
|
67
79
|
import { PutRuntimeManagementConfigCommandInput, PutRuntimeManagementConfigCommandOutput } from "./commands/PutRuntimeManagementConfigCommand";
|
|
68
80
|
import { RemoveLayerVersionPermissionCommandInput, RemoveLayerVersionPermissionCommandOutput } from "./commands/RemoveLayerVersionPermissionCommand";
|
|
69
81
|
import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "./commands/RemovePermissionCommand";
|
|
82
|
+
import { SendDurableExecutionCallbackFailureCommandInput, SendDurableExecutionCallbackFailureCommandOutput } from "./commands/SendDurableExecutionCallbackFailureCommand";
|
|
83
|
+
import { SendDurableExecutionCallbackHeartbeatCommandInput, SendDurableExecutionCallbackHeartbeatCommandOutput } from "./commands/SendDurableExecutionCallbackHeartbeatCommand";
|
|
84
|
+
import { SendDurableExecutionCallbackSuccessCommandInput, SendDurableExecutionCallbackSuccessCommandOutput } from "./commands/SendDurableExecutionCallbackSuccessCommand";
|
|
85
|
+
import { StopDurableExecutionCommandInput, StopDurableExecutionCommandOutput } from "./commands/StopDurableExecutionCommand";
|
|
70
86
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
71
87
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
72
88
|
import { UpdateAliasCommandInput, UpdateAliasCommandOutput } from "./commands/UpdateAliasCommand";
|
|
89
|
+
import { UpdateCapacityProviderCommandInput, UpdateCapacityProviderCommandOutput } from "./commands/UpdateCapacityProviderCommand";
|
|
73
90
|
import { UpdateCodeSigningConfigCommandInput, UpdateCodeSigningConfigCommandOutput } from "./commands/UpdateCodeSigningConfigCommand";
|
|
74
91
|
import { UpdateEventSourceMappingCommandInput, UpdateEventSourceMappingCommandOutput } from "./commands/UpdateEventSourceMappingCommand";
|
|
75
92
|
import { UpdateFunctionCodeCommandInput, UpdateFunctionCodeCommandOutput } from "./commands/UpdateFunctionCodeCommand";
|
|
@@ -82,11 +99,11 @@ export { __Client };
|
|
|
82
99
|
/**
|
|
83
100
|
* @public
|
|
84
101
|
*/
|
|
85
|
-
export type ServiceInputTypes = AddLayerVersionPermissionCommandInput | AddPermissionCommandInput | CreateAliasCommandInput | CreateCodeSigningConfigCommandInput | CreateEventSourceMappingCommandInput | CreateFunctionCommandInput | CreateFunctionUrlConfigCommandInput | DeleteAliasCommandInput | DeleteCodeSigningConfigCommandInput | DeleteEventSourceMappingCommandInput | DeleteFunctionCodeSigningConfigCommandInput | DeleteFunctionCommandInput | DeleteFunctionConcurrencyCommandInput | DeleteFunctionEventInvokeConfigCommandInput | DeleteFunctionUrlConfigCommandInput | DeleteLayerVersionCommandInput | DeleteProvisionedConcurrencyConfigCommandInput | GetAccountSettingsCommandInput | GetAliasCommandInput | GetCodeSigningConfigCommandInput | GetEventSourceMappingCommandInput | GetFunctionCodeSigningConfigCommandInput | GetFunctionCommandInput | GetFunctionConcurrencyCommandInput | GetFunctionConfigurationCommandInput | GetFunctionEventInvokeConfigCommandInput | GetFunctionRecursionConfigCommandInput | GetFunctionUrlConfigCommandInput | GetLayerVersionByArnCommandInput | GetLayerVersionCommandInput | GetLayerVersionPolicyCommandInput | GetPolicyCommandInput | GetProvisionedConcurrencyConfigCommandInput | GetRuntimeManagementConfigCommandInput | InvokeAsyncCommandInput | InvokeCommandInput | InvokeWithResponseStreamCommandInput | ListAliasesCommandInput | ListCodeSigningConfigsCommandInput | ListEventSourceMappingsCommandInput | ListFunctionEventInvokeConfigsCommandInput | ListFunctionUrlConfigsCommandInput | ListFunctionsByCodeSigningConfigCommandInput | ListFunctionsCommandInput | ListLayerVersionsCommandInput | ListLayersCommandInput | ListProvisionedConcurrencyConfigsCommandInput | ListTagsCommandInput | ListVersionsByFunctionCommandInput | PublishLayerVersionCommandInput | PublishVersionCommandInput | PutFunctionCodeSigningConfigCommandInput | PutFunctionConcurrencyCommandInput | PutFunctionEventInvokeConfigCommandInput | PutFunctionRecursionConfigCommandInput | PutProvisionedConcurrencyConfigCommandInput | PutRuntimeManagementConfigCommandInput | RemoveLayerVersionPermissionCommandInput | RemovePermissionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAliasCommandInput | UpdateCodeSigningConfigCommandInput | UpdateEventSourceMappingCommandInput | UpdateFunctionCodeCommandInput | UpdateFunctionConfigurationCommandInput | UpdateFunctionEventInvokeConfigCommandInput | UpdateFunctionUrlConfigCommandInput;
|
|
102
|
+
export type ServiceInputTypes = AddLayerVersionPermissionCommandInput | AddPermissionCommandInput | CheckpointDurableExecutionCommandInput | CreateAliasCommandInput | CreateCapacityProviderCommandInput | CreateCodeSigningConfigCommandInput | CreateEventSourceMappingCommandInput | CreateFunctionCommandInput | CreateFunctionUrlConfigCommandInput | DeleteAliasCommandInput | DeleteCapacityProviderCommandInput | DeleteCodeSigningConfigCommandInput | DeleteEventSourceMappingCommandInput | DeleteFunctionCodeSigningConfigCommandInput | DeleteFunctionCommandInput | DeleteFunctionConcurrencyCommandInput | DeleteFunctionEventInvokeConfigCommandInput | DeleteFunctionUrlConfigCommandInput | DeleteLayerVersionCommandInput | DeleteProvisionedConcurrencyConfigCommandInput | GetAccountSettingsCommandInput | GetAliasCommandInput | GetCapacityProviderCommandInput | GetCodeSigningConfigCommandInput | GetDurableExecutionCommandInput | GetDurableExecutionHistoryCommandInput | GetDurableExecutionStateCommandInput | GetEventSourceMappingCommandInput | GetFunctionCodeSigningConfigCommandInput | GetFunctionCommandInput | GetFunctionConcurrencyCommandInput | GetFunctionConfigurationCommandInput | GetFunctionEventInvokeConfigCommandInput | GetFunctionRecursionConfigCommandInput | GetFunctionScalingConfigCommandInput | GetFunctionUrlConfigCommandInput | GetLayerVersionByArnCommandInput | GetLayerVersionCommandInput | GetLayerVersionPolicyCommandInput | GetPolicyCommandInput | GetProvisionedConcurrencyConfigCommandInput | GetRuntimeManagementConfigCommandInput | InvokeAsyncCommandInput | InvokeCommandInput | InvokeWithResponseStreamCommandInput | ListAliasesCommandInput | ListCapacityProvidersCommandInput | ListCodeSigningConfigsCommandInput | ListDurableExecutionsByFunctionCommandInput | ListEventSourceMappingsCommandInput | ListFunctionEventInvokeConfigsCommandInput | ListFunctionUrlConfigsCommandInput | ListFunctionVersionsByCapacityProviderCommandInput | ListFunctionsByCodeSigningConfigCommandInput | ListFunctionsCommandInput | ListLayerVersionsCommandInput | ListLayersCommandInput | ListProvisionedConcurrencyConfigsCommandInput | ListTagsCommandInput | ListVersionsByFunctionCommandInput | PublishLayerVersionCommandInput | PublishVersionCommandInput | PutFunctionCodeSigningConfigCommandInput | PutFunctionConcurrencyCommandInput | PutFunctionEventInvokeConfigCommandInput | PutFunctionRecursionConfigCommandInput | PutFunctionScalingConfigCommandInput | PutProvisionedConcurrencyConfigCommandInput | PutRuntimeManagementConfigCommandInput | RemoveLayerVersionPermissionCommandInput | RemovePermissionCommandInput | SendDurableExecutionCallbackFailureCommandInput | SendDurableExecutionCallbackHeartbeatCommandInput | SendDurableExecutionCallbackSuccessCommandInput | StopDurableExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAliasCommandInput | UpdateCapacityProviderCommandInput | UpdateCodeSigningConfigCommandInput | UpdateEventSourceMappingCommandInput | UpdateFunctionCodeCommandInput | UpdateFunctionConfigurationCommandInput | UpdateFunctionEventInvokeConfigCommandInput | UpdateFunctionUrlConfigCommandInput;
|
|
86
103
|
/**
|
|
87
104
|
* @public
|
|
88
105
|
*/
|
|
89
|
-
export type ServiceOutputTypes = AddLayerVersionPermissionCommandOutput | AddPermissionCommandOutput | CreateAliasCommandOutput | CreateCodeSigningConfigCommandOutput | CreateEventSourceMappingCommandOutput | CreateFunctionCommandOutput | CreateFunctionUrlConfigCommandOutput | DeleteAliasCommandOutput | DeleteCodeSigningConfigCommandOutput | DeleteEventSourceMappingCommandOutput | DeleteFunctionCodeSigningConfigCommandOutput | DeleteFunctionCommandOutput | DeleteFunctionConcurrencyCommandOutput | DeleteFunctionEventInvokeConfigCommandOutput | DeleteFunctionUrlConfigCommandOutput | DeleteLayerVersionCommandOutput | DeleteProvisionedConcurrencyConfigCommandOutput | GetAccountSettingsCommandOutput | GetAliasCommandOutput | GetCodeSigningConfigCommandOutput | GetEventSourceMappingCommandOutput | GetFunctionCodeSigningConfigCommandOutput | GetFunctionCommandOutput | GetFunctionConcurrencyCommandOutput | GetFunctionConfigurationCommandOutput | GetFunctionEventInvokeConfigCommandOutput | GetFunctionRecursionConfigCommandOutput | GetFunctionUrlConfigCommandOutput | GetLayerVersionByArnCommandOutput | GetLayerVersionCommandOutput | GetLayerVersionPolicyCommandOutput | GetPolicyCommandOutput | GetProvisionedConcurrencyConfigCommandOutput | GetRuntimeManagementConfigCommandOutput | InvokeAsyncCommandOutput | InvokeCommandOutput | InvokeWithResponseStreamCommandOutput | ListAliasesCommandOutput | ListCodeSigningConfigsCommandOutput | ListEventSourceMappingsCommandOutput | ListFunctionEventInvokeConfigsCommandOutput | ListFunctionUrlConfigsCommandOutput | ListFunctionsByCodeSigningConfigCommandOutput | ListFunctionsCommandOutput | ListLayerVersionsCommandOutput | ListLayersCommandOutput | ListProvisionedConcurrencyConfigsCommandOutput | ListTagsCommandOutput | ListVersionsByFunctionCommandOutput | PublishLayerVersionCommandOutput | PublishVersionCommandOutput | PutFunctionCodeSigningConfigCommandOutput | PutFunctionConcurrencyCommandOutput | PutFunctionEventInvokeConfigCommandOutput | PutFunctionRecursionConfigCommandOutput | PutProvisionedConcurrencyConfigCommandOutput | PutRuntimeManagementConfigCommandOutput | RemoveLayerVersionPermissionCommandOutput | RemovePermissionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAliasCommandOutput | UpdateCodeSigningConfigCommandOutput | UpdateEventSourceMappingCommandOutput | UpdateFunctionCodeCommandOutput | UpdateFunctionConfigurationCommandOutput | UpdateFunctionEventInvokeConfigCommandOutput | UpdateFunctionUrlConfigCommandOutput;
|
|
106
|
+
export type ServiceOutputTypes = AddLayerVersionPermissionCommandOutput | AddPermissionCommandOutput | CheckpointDurableExecutionCommandOutput | CreateAliasCommandOutput | CreateCapacityProviderCommandOutput | CreateCodeSigningConfigCommandOutput | CreateEventSourceMappingCommandOutput | CreateFunctionCommandOutput | CreateFunctionUrlConfigCommandOutput | DeleteAliasCommandOutput | DeleteCapacityProviderCommandOutput | DeleteCodeSigningConfigCommandOutput | DeleteEventSourceMappingCommandOutput | DeleteFunctionCodeSigningConfigCommandOutput | DeleteFunctionCommandOutput | DeleteFunctionConcurrencyCommandOutput | DeleteFunctionEventInvokeConfigCommandOutput | DeleteFunctionUrlConfigCommandOutput | DeleteLayerVersionCommandOutput | DeleteProvisionedConcurrencyConfigCommandOutput | GetAccountSettingsCommandOutput | GetAliasCommandOutput | GetCapacityProviderCommandOutput | GetCodeSigningConfigCommandOutput | GetDurableExecutionCommandOutput | GetDurableExecutionHistoryCommandOutput | GetDurableExecutionStateCommandOutput | GetEventSourceMappingCommandOutput | GetFunctionCodeSigningConfigCommandOutput | GetFunctionCommandOutput | GetFunctionConcurrencyCommandOutput | GetFunctionConfigurationCommandOutput | GetFunctionEventInvokeConfigCommandOutput | GetFunctionRecursionConfigCommandOutput | GetFunctionScalingConfigCommandOutput | GetFunctionUrlConfigCommandOutput | GetLayerVersionByArnCommandOutput | GetLayerVersionCommandOutput | GetLayerVersionPolicyCommandOutput | GetPolicyCommandOutput | GetProvisionedConcurrencyConfigCommandOutput | GetRuntimeManagementConfigCommandOutput | InvokeAsyncCommandOutput | InvokeCommandOutput | InvokeWithResponseStreamCommandOutput | ListAliasesCommandOutput | ListCapacityProvidersCommandOutput | ListCodeSigningConfigsCommandOutput | ListDurableExecutionsByFunctionCommandOutput | ListEventSourceMappingsCommandOutput | ListFunctionEventInvokeConfigsCommandOutput | ListFunctionUrlConfigsCommandOutput | ListFunctionVersionsByCapacityProviderCommandOutput | ListFunctionsByCodeSigningConfigCommandOutput | ListFunctionsCommandOutput | ListLayerVersionsCommandOutput | ListLayersCommandOutput | ListProvisionedConcurrencyConfigsCommandOutput | ListTagsCommandOutput | ListVersionsByFunctionCommandOutput | PublishLayerVersionCommandOutput | PublishVersionCommandOutput | PutFunctionCodeSigningConfigCommandOutput | PutFunctionConcurrencyCommandOutput | PutFunctionEventInvokeConfigCommandOutput | PutFunctionRecursionConfigCommandOutput | PutFunctionScalingConfigCommandOutput | PutProvisionedConcurrencyConfigCommandOutput | PutRuntimeManagementConfigCommandOutput | RemoveLayerVersionPermissionCommandOutput | RemovePermissionCommandOutput | SendDurableExecutionCallbackFailureCommandOutput | SendDurableExecutionCallbackHeartbeatCommandOutput | SendDurableExecutionCallbackSuccessCommandOutput | StopDurableExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAliasCommandOutput | UpdateCapacityProviderCommandOutput | UpdateCodeSigningConfigCommandOutput | UpdateEventSourceMappingCommandOutput | UpdateFunctionCodeCommandOutput | UpdateFunctionConfigurationCommandOutput | UpdateFunctionEventInvokeConfigCommandOutput | UpdateFunctionUrlConfigCommandOutput;
|
|
90
107
|
/**
|
|
91
108
|
* @public
|
|
92
109
|
*/
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient";
|
|
4
|
+
import { CheckpointDurableExecutionRequest, CheckpointDurableExecutionResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CheckpointDurableExecutionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CheckpointDurableExecutionCommandInput extends CheckpointDurableExecutionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CheckpointDurableExecutionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CheckpointDurableExecutionCommandOutput extends CheckpointDurableExecutionResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CheckpointDurableExecutionCommand_base: {
|
|
25
|
+
new (input: CheckpointDurableExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<CheckpointDurableExecutionCommandInput, CheckpointDurableExecutionCommandOutput, LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CheckpointDurableExecutionCommandInput): import("@smithy/smithy-client").CommandImpl<CheckpointDurableExecutionCommandInput, CheckpointDurableExecutionCommandOutput, LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Saves the progress of a <a href="https://docs.aws.amazon.com/lambda/latest/dg/durable-functions.html">durable function</a> execution during runtime. This API is used by the Lambda durable functions SDK to checkpoint completed steps and schedule asynchronous operations. You typically don't need to call this API directly as the SDK handles checkpointing automatically.</p> <p>Each checkpoint operation consumes the current checkpoint token and returns a new one for the next checkpoint. This ensures that checkpoints are applied in the correct order and prevents duplicate or out-of-order state updates.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { LambdaClient, CheckpointDurableExecutionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
|
+
* // const { LambdaClient, CheckpointDurableExecutionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
|
+
* // import type { LambdaClientConfig } from "@aws-sdk/client-lambda";
|
|
37
|
+
* const config = {}; // type is LambdaClientConfig
|
|
38
|
+
* const client = new LambdaClient(config);
|
|
39
|
+
* const input = { // CheckpointDurableExecutionRequest
|
|
40
|
+
* DurableExecutionArn: "STRING_VALUE", // required
|
|
41
|
+
* CheckpointToken: "STRING_VALUE", // required
|
|
42
|
+
* Updates: [ // OperationUpdates
|
|
43
|
+
* { // OperationUpdate
|
|
44
|
+
* Id: "STRING_VALUE", // required
|
|
45
|
+
* ParentId: "STRING_VALUE",
|
|
46
|
+
* Name: "STRING_VALUE",
|
|
47
|
+
* Type: "EXECUTION" || "CONTEXT" || "STEP" || "WAIT" || "CALLBACK" || "CHAINED_INVOKE", // required
|
|
48
|
+
* SubType: "STRING_VALUE",
|
|
49
|
+
* Action: "START" || "SUCCEED" || "FAIL" || "RETRY" || "CANCEL", // required
|
|
50
|
+
* Payload: "STRING_VALUE",
|
|
51
|
+
* Error: { // ErrorObject
|
|
52
|
+
* ErrorMessage: "STRING_VALUE",
|
|
53
|
+
* ErrorType: "STRING_VALUE",
|
|
54
|
+
* ErrorData: "STRING_VALUE",
|
|
55
|
+
* StackTrace: [ // StackTraceEntries
|
|
56
|
+
* "STRING_VALUE",
|
|
57
|
+
* ],
|
|
58
|
+
* },
|
|
59
|
+
* ContextOptions: { // ContextOptions
|
|
60
|
+
* ReplayChildren: true || false,
|
|
61
|
+
* },
|
|
62
|
+
* StepOptions: { // StepOptions
|
|
63
|
+
* NextAttemptDelaySeconds: Number("int"),
|
|
64
|
+
* },
|
|
65
|
+
* WaitOptions: { // WaitOptions
|
|
66
|
+
* WaitSeconds: Number("int"),
|
|
67
|
+
* },
|
|
68
|
+
* CallbackOptions: { // CallbackOptions
|
|
69
|
+
* TimeoutSeconds: Number("int"),
|
|
70
|
+
* HeartbeatTimeoutSeconds: Number("int"),
|
|
71
|
+
* },
|
|
72
|
+
* ChainedInvokeOptions: { // ChainedInvokeOptions
|
|
73
|
+
* FunctionName: "STRING_VALUE", // required
|
|
74
|
+
* TenantId: "STRING_VALUE",
|
|
75
|
+
* },
|
|
76
|
+
* },
|
|
77
|
+
* ],
|
|
78
|
+
* ClientToken: "STRING_VALUE",
|
|
79
|
+
* };
|
|
80
|
+
* const command = new CheckpointDurableExecutionCommand(input);
|
|
81
|
+
* const response = await client.send(command);
|
|
82
|
+
* // { // CheckpointDurableExecutionResponse
|
|
83
|
+
* // CheckpointToken: "STRING_VALUE",
|
|
84
|
+
* // NewExecutionState: { // CheckpointUpdatedExecutionState
|
|
85
|
+
* // Operations: [ // Operations
|
|
86
|
+
* // { // Operation
|
|
87
|
+
* // Id: "STRING_VALUE", // required
|
|
88
|
+
* // ParentId: "STRING_VALUE",
|
|
89
|
+
* // Name: "STRING_VALUE",
|
|
90
|
+
* // Type: "EXECUTION" || "CONTEXT" || "STEP" || "WAIT" || "CALLBACK" || "CHAINED_INVOKE", // required
|
|
91
|
+
* // SubType: "STRING_VALUE",
|
|
92
|
+
* // StartTimestamp: new Date("TIMESTAMP"), // required
|
|
93
|
+
* // EndTimestamp: new Date("TIMESTAMP"),
|
|
94
|
+
* // Status: "STARTED" || "PENDING" || "READY" || "SUCCEEDED" || "FAILED" || "CANCELLED" || "TIMED_OUT" || "STOPPED", // required
|
|
95
|
+
* // ExecutionDetails: { // ExecutionDetails
|
|
96
|
+
* // InputPayload: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // ContextDetails: { // ContextDetails
|
|
99
|
+
* // ReplayChildren: true || false,
|
|
100
|
+
* // Result: "STRING_VALUE",
|
|
101
|
+
* // Error: { // ErrorObject
|
|
102
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
103
|
+
* // ErrorType: "STRING_VALUE",
|
|
104
|
+
* // ErrorData: "STRING_VALUE",
|
|
105
|
+
* // StackTrace: [ // StackTraceEntries
|
|
106
|
+
* // "STRING_VALUE",
|
|
107
|
+
* // ],
|
|
108
|
+
* // },
|
|
109
|
+
* // },
|
|
110
|
+
* // StepDetails: { // StepDetails
|
|
111
|
+
* // Attempt: Number("int"),
|
|
112
|
+
* // NextAttemptTimestamp: new Date("TIMESTAMP"),
|
|
113
|
+
* // Result: "STRING_VALUE",
|
|
114
|
+
* // Error: {
|
|
115
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
116
|
+
* // ErrorType: "STRING_VALUE",
|
|
117
|
+
* // ErrorData: "STRING_VALUE",
|
|
118
|
+
* // StackTrace: [
|
|
119
|
+
* // "STRING_VALUE",
|
|
120
|
+
* // ],
|
|
121
|
+
* // },
|
|
122
|
+
* // },
|
|
123
|
+
* // WaitDetails: { // WaitDetails
|
|
124
|
+
* // ScheduledEndTimestamp: new Date("TIMESTAMP"),
|
|
125
|
+
* // },
|
|
126
|
+
* // CallbackDetails: { // CallbackDetails
|
|
127
|
+
* // CallbackId: "STRING_VALUE",
|
|
128
|
+
* // Result: "STRING_VALUE",
|
|
129
|
+
* // Error: {
|
|
130
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
131
|
+
* // ErrorType: "STRING_VALUE",
|
|
132
|
+
* // ErrorData: "STRING_VALUE",
|
|
133
|
+
* // StackTrace: [
|
|
134
|
+
* // "STRING_VALUE",
|
|
135
|
+
* // ],
|
|
136
|
+
* // },
|
|
137
|
+
* // },
|
|
138
|
+
* // ChainedInvokeDetails: { // ChainedInvokeDetails
|
|
139
|
+
* // Result: "STRING_VALUE",
|
|
140
|
+
* // Error: {
|
|
141
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
142
|
+
* // ErrorType: "STRING_VALUE",
|
|
143
|
+
* // ErrorData: "STRING_VALUE",
|
|
144
|
+
* // StackTrace: [
|
|
145
|
+
* // "STRING_VALUE",
|
|
146
|
+
* // ],
|
|
147
|
+
* // },
|
|
148
|
+
* // },
|
|
149
|
+
* // },
|
|
150
|
+
* // ],
|
|
151
|
+
* // NextMarker: "STRING_VALUE",
|
|
152
|
+
* // },
|
|
153
|
+
* // };
|
|
154
|
+
*
|
|
155
|
+
* ```
|
|
156
|
+
*
|
|
157
|
+
* @param CheckpointDurableExecutionCommandInput - {@link CheckpointDurableExecutionCommandInput}
|
|
158
|
+
* @returns {@link CheckpointDurableExecutionCommandOutput}
|
|
159
|
+
* @see {@link CheckpointDurableExecutionCommandInput} for command's `input` shape.
|
|
160
|
+
* @see {@link CheckpointDurableExecutionCommandOutput} for command's `response` shape.
|
|
161
|
+
* @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape.
|
|
162
|
+
*
|
|
163
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
164
|
+
* <p>One of the parameters in the request is not valid.</p>
|
|
165
|
+
*
|
|
166
|
+
* @throws {@link ServiceException} (server fault)
|
|
167
|
+
* <p>The Lambda service encountered an internal error.</p>
|
|
168
|
+
*
|
|
169
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
170
|
+
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
171
|
+
*
|
|
172
|
+
* @throws {@link LambdaServiceException}
|
|
173
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
174
|
+
*
|
|
175
|
+
*
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
export declare class CheckpointDurableExecutionCommand extends CheckpointDurableExecutionCommand_base {
|
|
179
|
+
/** @internal type navigation helper, not in runtime. */
|
|
180
|
+
protected static __types: {
|
|
181
|
+
api: {
|
|
182
|
+
input: CheckpointDurableExecutionRequest;
|
|
183
|
+
output: CheckpointDurableExecutionResponse;
|
|
184
|
+
};
|
|
185
|
+
sdk: {
|
|
186
|
+
input: CheckpointDurableExecutionCommandInput;
|
|
187
|
+
output: CheckpointDurableExecutionCommandOutput;
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
}
|