@aws-sdk/client-swf 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/SWF.d.ts +1467 -16
- package/dist-types/ts3.4/SWFClient.d.ts +350 -110
- package/dist-types/ts3.4/commands/CountClosedWorkflowExecutionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CountOpenWorkflowExecutionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CountPendingActivityTasksCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CountPendingDecisionTasksCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeprecateActivityTypeCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeprecateDomainCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeprecateWorkflowTypeCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeActivityTypeCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeDomainCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeWorkflowExecutionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeWorkflowTypeCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetWorkflowExecutionHistoryCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListActivityTypesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListClosedWorkflowExecutionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +17 -8
- package/dist-types/ts3.4/commands/ListOpenWorkflowExecutionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListWorkflowTypesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PollForActivityTaskCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/PollForDecisionTaskCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RecordActivityTaskHeartbeatCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RegisterActivityTypeCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/RegisterDomainCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RegisterWorkflowTypeCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/RequestCancelWorkflowExecutionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RespondActivityTaskCanceledCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RespondActivityTaskCompletedCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RespondActivityTaskFailedCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RespondDecisionTaskCompletedCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/SignalWorkflowExecutionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartWorkflowExecutionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TerminateWorkflowExecutionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UndeprecateActivityTypeCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UndeprecateDomainCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UndeprecateWorkflowTypeCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +37 -37
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SWFServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +2218 -1950
- package/dist-types/ts3.4/pagination/GetWorkflowExecutionHistoryPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListActivityTypesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListClosedWorkflowExecutionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDomainsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOpenWorkflowExecutionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListWorkflowTypesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/PollForDecisionTaskPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +8 -8
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +449 -113
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,110 +1,350 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
import {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CountClosedWorkflowExecutionsCommandInput,
|
|
47
|
+
CountClosedWorkflowExecutionsCommandOutput,
|
|
48
|
+
} from "./commands/CountClosedWorkflowExecutionsCommand";
|
|
49
|
+
import {
|
|
50
|
+
CountOpenWorkflowExecutionsCommandInput,
|
|
51
|
+
CountOpenWorkflowExecutionsCommandOutput,
|
|
52
|
+
} from "./commands/CountOpenWorkflowExecutionsCommand";
|
|
53
|
+
import {
|
|
54
|
+
CountPendingActivityTasksCommandInput,
|
|
55
|
+
CountPendingActivityTasksCommandOutput,
|
|
56
|
+
} from "./commands/CountPendingActivityTasksCommand";
|
|
57
|
+
import {
|
|
58
|
+
CountPendingDecisionTasksCommandInput,
|
|
59
|
+
CountPendingDecisionTasksCommandOutput,
|
|
60
|
+
} from "./commands/CountPendingDecisionTasksCommand";
|
|
61
|
+
import {
|
|
62
|
+
DeprecateActivityTypeCommandInput,
|
|
63
|
+
DeprecateActivityTypeCommandOutput,
|
|
64
|
+
} from "./commands/DeprecateActivityTypeCommand";
|
|
65
|
+
import {
|
|
66
|
+
DeprecateDomainCommandInput,
|
|
67
|
+
DeprecateDomainCommandOutput,
|
|
68
|
+
} from "./commands/DeprecateDomainCommand";
|
|
69
|
+
import {
|
|
70
|
+
DeprecateWorkflowTypeCommandInput,
|
|
71
|
+
DeprecateWorkflowTypeCommandOutput,
|
|
72
|
+
} from "./commands/DeprecateWorkflowTypeCommand";
|
|
73
|
+
import {
|
|
74
|
+
DescribeActivityTypeCommandInput,
|
|
75
|
+
DescribeActivityTypeCommandOutput,
|
|
76
|
+
} from "./commands/DescribeActivityTypeCommand";
|
|
77
|
+
import {
|
|
78
|
+
DescribeDomainCommandInput,
|
|
79
|
+
DescribeDomainCommandOutput,
|
|
80
|
+
} from "./commands/DescribeDomainCommand";
|
|
81
|
+
import {
|
|
82
|
+
DescribeWorkflowExecutionCommandInput,
|
|
83
|
+
DescribeWorkflowExecutionCommandOutput,
|
|
84
|
+
} from "./commands/DescribeWorkflowExecutionCommand";
|
|
85
|
+
import {
|
|
86
|
+
DescribeWorkflowTypeCommandInput,
|
|
87
|
+
DescribeWorkflowTypeCommandOutput,
|
|
88
|
+
} from "./commands/DescribeWorkflowTypeCommand";
|
|
89
|
+
import {
|
|
90
|
+
GetWorkflowExecutionHistoryCommandInput,
|
|
91
|
+
GetWorkflowExecutionHistoryCommandOutput,
|
|
92
|
+
} from "./commands/GetWorkflowExecutionHistoryCommand";
|
|
93
|
+
import {
|
|
94
|
+
ListActivityTypesCommandInput,
|
|
95
|
+
ListActivityTypesCommandOutput,
|
|
96
|
+
} from "./commands/ListActivityTypesCommand";
|
|
97
|
+
import {
|
|
98
|
+
ListClosedWorkflowExecutionsCommandInput,
|
|
99
|
+
ListClosedWorkflowExecutionsCommandOutput,
|
|
100
|
+
} from "./commands/ListClosedWorkflowExecutionsCommand";
|
|
101
|
+
import {
|
|
102
|
+
ListDomainsCommandInput,
|
|
103
|
+
ListDomainsCommandOutput,
|
|
104
|
+
} from "./commands/ListDomainsCommand";
|
|
105
|
+
import {
|
|
106
|
+
ListOpenWorkflowExecutionsCommandInput,
|
|
107
|
+
ListOpenWorkflowExecutionsCommandOutput,
|
|
108
|
+
} from "./commands/ListOpenWorkflowExecutionsCommand";
|
|
109
|
+
import {
|
|
110
|
+
ListTagsForResourceCommandInput,
|
|
111
|
+
ListTagsForResourceCommandOutput,
|
|
112
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
113
|
+
import {
|
|
114
|
+
ListWorkflowTypesCommandInput,
|
|
115
|
+
ListWorkflowTypesCommandOutput,
|
|
116
|
+
} from "./commands/ListWorkflowTypesCommand";
|
|
117
|
+
import {
|
|
118
|
+
PollForActivityTaskCommandInput,
|
|
119
|
+
PollForActivityTaskCommandOutput,
|
|
120
|
+
} from "./commands/PollForActivityTaskCommand";
|
|
121
|
+
import {
|
|
122
|
+
PollForDecisionTaskCommandInput,
|
|
123
|
+
PollForDecisionTaskCommandOutput,
|
|
124
|
+
} from "./commands/PollForDecisionTaskCommand";
|
|
125
|
+
import {
|
|
126
|
+
RecordActivityTaskHeartbeatCommandInput,
|
|
127
|
+
RecordActivityTaskHeartbeatCommandOutput,
|
|
128
|
+
} from "./commands/RecordActivityTaskHeartbeatCommand";
|
|
129
|
+
import {
|
|
130
|
+
RegisterActivityTypeCommandInput,
|
|
131
|
+
RegisterActivityTypeCommandOutput,
|
|
132
|
+
} from "./commands/RegisterActivityTypeCommand";
|
|
133
|
+
import {
|
|
134
|
+
RegisterDomainCommandInput,
|
|
135
|
+
RegisterDomainCommandOutput,
|
|
136
|
+
} from "./commands/RegisterDomainCommand";
|
|
137
|
+
import {
|
|
138
|
+
RegisterWorkflowTypeCommandInput,
|
|
139
|
+
RegisterWorkflowTypeCommandOutput,
|
|
140
|
+
} from "./commands/RegisterWorkflowTypeCommand";
|
|
141
|
+
import {
|
|
142
|
+
RequestCancelWorkflowExecutionCommandInput,
|
|
143
|
+
RequestCancelWorkflowExecutionCommandOutput,
|
|
144
|
+
} from "./commands/RequestCancelWorkflowExecutionCommand";
|
|
145
|
+
import {
|
|
146
|
+
RespondActivityTaskCanceledCommandInput,
|
|
147
|
+
RespondActivityTaskCanceledCommandOutput,
|
|
148
|
+
} from "./commands/RespondActivityTaskCanceledCommand";
|
|
149
|
+
import {
|
|
150
|
+
RespondActivityTaskCompletedCommandInput,
|
|
151
|
+
RespondActivityTaskCompletedCommandOutput,
|
|
152
|
+
} from "./commands/RespondActivityTaskCompletedCommand";
|
|
153
|
+
import {
|
|
154
|
+
RespondActivityTaskFailedCommandInput,
|
|
155
|
+
RespondActivityTaskFailedCommandOutput,
|
|
156
|
+
} from "./commands/RespondActivityTaskFailedCommand";
|
|
157
|
+
import {
|
|
158
|
+
RespondDecisionTaskCompletedCommandInput,
|
|
159
|
+
RespondDecisionTaskCompletedCommandOutput,
|
|
160
|
+
} from "./commands/RespondDecisionTaskCompletedCommand";
|
|
161
|
+
import {
|
|
162
|
+
SignalWorkflowExecutionCommandInput,
|
|
163
|
+
SignalWorkflowExecutionCommandOutput,
|
|
164
|
+
} from "./commands/SignalWorkflowExecutionCommand";
|
|
165
|
+
import {
|
|
166
|
+
StartWorkflowExecutionCommandInput,
|
|
167
|
+
StartWorkflowExecutionCommandOutput,
|
|
168
|
+
} from "./commands/StartWorkflowExecutionCommand";
|
|
169
|
+
import {
|
|
170
|
+
TagResourceCommandInput,
|
|
171
|
+
TagResourceCommandOutput,
|
|
172
|
+
} from "./commands/TagResourceCommand";
|
|
173
|
+
import {
|
|
174
|
+
TerminateWorkflowExecutionCommandInput,
|
|
175
|
+
TerminateWorkflowExecutionCommandOutput,
|
|
176
|
+
} from "./commands/TerminateWorkflowExecutionCommand";
|
|
177
|
+
import {
|
|
178
|
+
UndeprecateActivityTypeCommandInput,
|
|
179
|
+
UndeprecateActivityTypeCommandOutput,
|
|
180
|
+
} from "./commands/UndeprecateActivityTypeCommand";
|
|
181
|
+
import {
|
|
182
|
+
UndeprecateDomainCommandInput,
|
|
183
|
+
UndeprecateDomainCommandOutput,
|
|
184
|
+
} from "./commands/UndeprecateDomainCommand";
|
|
185
|
+
import {
|
|
186
|
+
UndeprecateWorkflowTypeCommandInput,
|
|
187
|
+
UndeprecateWorkflowTypeCommandOutput,
|
|
188
|
+
} from "./commands/UndeprecateWorkflowTypeCommand";
|
|
189
|
+
import {
|
|
190
|
+
UntagResourceCommandInput,
|
|
191
|
+
UntagResourceCommandOutput,
|
|
192
|
+
} from "./commands/UntagResourceCommand";
|
|
193
|
+
export declare type ServiceInputTypes =
|
|
194
|
+
| CountClosedWorkflowExecutionsCommandInput
|
|
195
|
+
| CountOpenWorkflowExecutionsCommandInput
|
|
196
|
+
| CountPendingActivityTasksCommandInput
|
|
197
|
+
| CountPendingDecisionTasksCommandInput
|
|
198
|
+
| DeprecateActivityTypeCommandInput
|
|
199
|
+
| DeprecateDomainCommandInput
|
|
200
|
+
| DeprecateWorkflowTypeCommandInput
|
|
201
|
+
| DescribeActivityTypeCommandInput
|
|
202
|
+
| DescribeDomainCommandInput
|
|
203
|
+
| DescribeWorkflowExecutionCommandInput
|
|
204
|
+
| DescribeWorkflowTypeCommandInput
|
|
205
|
+
| GetWorkflowExecutionHistoryCommandInput
|
|
206
|
+
| ListActivityTypesCommandInput
|
|
207
|
+
| ListClosedWorkflowExecutionsCommandInput
|
|
208
|
+
| ListDomainsCommandInput
|
|
209
|
+
| ListOpenWorkflowExecutionsCommandInput
|
|
210
|
+
| ListTagsForResourceCommandInput
|
|
211
|
+
| ListWorkflowTypesCommandInput
|
|
212
|
+
| PollForActivityTaskCommandInput
|
|
213
|
+
| PollForDecisionTaskCommandInput
|
|
214
|
+
| RecordActivityTaskHeartbeatCommandInput
|
|
215
|
+
| RegisterActivityTypeCommandInput
|
|
216
|
+
| RegisterDomainCommandInput
|
|
217
|
+
| RegisterWorkflowTypeCommandInput
|
|
218
|
+
| RequestCancelWorkflowExecutionCommandInput
|
|
219
|
+
| RespondActivityTaskCanceledCommandInput
|
|
220
|
+
| RespondActivityTaskCompletedCommandInput
|
|
221
|
+
| RespondActivityTaskFailedCommandInput
|
|
222
|
+
| RespondDecisionTaskCompletedCommandInput
|
|
223
|
+
| SignalWorkflowExecutionCommandInput
|
|
224
|
+
| StartWorkflowExecutionCommandInput
|
|
225
|
+
| TagResourceCommandInput
|
|
226
|
+
| TerminateWorkflowExecutionCommandInput
|
|
227
|
+
| UndeprecateActivityTypeCommandInput
|
|
228
|
+
| UndeprecateDomainCommandInput
|
|
229
|
+
| UndeprecateWorkflowTypeCommandInput
|
|
230
|
+
| UntagResourceCommandInput;
|
|
231
|
+
export declare type ServiceOutputTypes =
|
|
232
|
+
| CountClosedWorkflowExecutionsCommandOutput
|
|
233
|
+
| CountOpenWorkflowExecutionsCommandOutput
|
|
234
|
+
| CountPendingActivityTasksCommandOutput
|
|
235
|
+
| CountPendingDecisionTasksCommandOutput
|
|
236
|
+
| DeprecateActivityTypeCommandOutput
|
|
237
|
+
| DeprecateDomainCommandOutput
|
|
238
|
+
| DeprecateWorkflowTypeCommandOutput
|
|
239
|
+
| DescribeActivityTypeCommandOutput
|
|
240
|
+
| DescribeDomainCommandOutput
|
|
241
|
+
| DescribeWorkflowExecutionCommandOutput
|
|
242
|
+
| DescribeWorkflowTypeCommandOutput
|
|
243
|
+
| GetWorkflowExecutionHistoryCommandOutput
|
|
244
|
+
| ListActivityTypesCommandOutput
|
|
245
|
+
| ListClosedWorkflowExecutionsCommandOutput
|
|
246
|
+
| ListDomainsCommandOutput
|
|
247
|
+
| ListOpenWorkflowExecutionsCommandOutput
|
|
248
|
+
| ListTagsForResourceCommandOutput
|
|
249
|
+
| ListWorkflowTypesCommandOutput
|
|
250
|
+
| PollForActivityTaskCommandOutput
|
|
251
|
+
| PollForDecisionTaskCommandOutput
|
|
252
|
+
| RecordActivityTaskHeartbeatCommandOutput
|
|
253
|
+
| RegisterActivityTypeCommandOutput
|
|
254
|
+
| RegisterDomainCommandOutput
|
|
255
|
+
| RegisterWorkflowTypeCommandOutput
|
|
256
|
+
| RequestCancelWorkflowExecutionCommandOutput
|
|
257
|
+
| RespondActivityTaskCanceledCommandOutput
|
|
258
|
+
| RespondActivityTaskCompletedCommandOutput
|
|
259
|
+
| RespondActivityTaskFailedCommandOutput
|
|
260
|
+
| RespondDecisionTaskCompletedCommandOutput
|
|
261
|
+
| SignalWorkflowExecutionCommandOutput
|
|
262
|
+
| StartWorkflowExecutionCommandOutput
|
|
263
|
+
| TagResourceCommandOutput
|
|
264
|
+
| TerminateWorkflowExecutionCommandOutput
|
|
265
|
+
| UndeprecateActivityTypeCommandOutput
|
|
266
|
+
| UndeprecateDomainCommandOutput
|
|
267
|
+
| UndeprecateWorkflowTypeCommandOutput
|
|
268
|
+
| UntagResourceCommandOutput;
|
|
269
|
+
export interface ClientDefaults
|
|
270
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
271
|
+
requestHandler?: __HttpHandler;
|
|
272
|
+
|
|
273
|
+
sha256?: __HashConstructor;
|
|
274
|
+
|
|
275
|
+
urlParser?: __UrlParser;
|
|
276
|
+
|
|
277
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
278
|
+
|
|
279
|
+
streamCollector?: __StreamCollector;
|
|
280
|
+
|
|
281
|
+
base64Decoder?: __Decoder;
|
|
282
|
+
|
|
283
|
+
base64Encoder?: __Encoder;
|
|
284
|
+
|
|
285
|
+
utf8Decoder?: __Decoder;
|
|
286
|
+
|
|
287
|
+
utf8Encoder?: __Encoder;
|
|
288
|
+
|
|
289
|
+
runtime?: string;
|
|
290
|
+
|
|
291
|
+
disableHostPrefix?: boolean;
|
|
292
|
+
|
|
293
|
+
maxAttempts?: number | __Provider<number>;
|
|
294
|
+
|
|
295
|
+
retryMode?: string | __Provider<string>;
|
|
296
|
+
|
|
297
|
+
logger?: __Logger;
|
|
298
|
+
|
|
299
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
300
|
+
|
|
301
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
302
|
+
|
|
303
|
+
serviceId?: string;
|
|
304
|
+
|
|
305
|
+
region?: string | __Provider<string>;
|
|
306
|
+
|
|
307
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
308
|
+
|
|
309
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
310
|
+
|
|
311
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
312
|
+
|
|
313
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
314
|
+
}
|
|
315
|
+
declare type SWFClientConfigType = Partial<
|
|
316
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
317
|
+
> &
|
|
318
|
+
ClientDefaults &
|
|
319
|
+
RegionInputConfig &
|
|
320
|
+
EndpointsInputConfig &
|
|
321
|
+
RetryInputConfig &
|
|
322
|
+
HostHeaderInputConfig &
|
|
323
|
+
AwsAuthInputConfig &
|
|
324
|
+
UserAgentInputConfig;
|
|
325
|
+
|
|
326
|
+
export interface SWFClientConfig extends SWFClientConfigType {}
|
|
327
|
+
declare type SWFClientResolvedConfigType =
|
|
328
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
329
|
+
Required<ClientDefaults> &
|
|
330
|
+
RegionResolvedConfig &
|
|
331
|
+
EndpointsResolvedConfig &
|
|
332
|
+
RetryResolvedConfig &
|
|
333
|
+
HostHeaderResolvedConfig &
|
|
334
|
+
AwsAuthResolvedConfig &
|
|
335
|
+
UserAgentResolvedConfig;
|
|
336
|
+
|
|
337
|
+
export interface SWFClientResolvedConfig extends SWFClientResolvedConfigType {}
|
|
338
|
+
|
|
339
|
+
export declare class SWFClient extends __Client<
|
|
340
|
+
__HttpHandlerOptions,
|
|
341
|
+
ServiceInputTypes,
|
|
342
|
+
ServiceOutputTypes,
|
|
343
|
+
SWFClientResolvedConfig
|
|
344
|
+
> {
|
|
345
|
+
readonly config: SWFClientResolvedConfig;
|
|
346
|
+
constructor(configuration: SWFClientConfig);
|
|
347
|
+
|
|
348
|
+
destroy(): void;
|
|
349
|
+
}
|
|
350
|
+
export {};
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CountClosedWorkflowExecutionsInput,
|
|
10
|
+
WorkflowExecutionCount,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SWFClientResolvedConfig,
|
|
16
|
+
} from "../SWFClient";
|
|
17
|
+
export interface CountClosedWorkflowExecutionsCommandInput
|
|
18
|
+
extends CountClosedWorkflowExecutionsInput {}
|
|
19
|
+
export interface CountClosedWorkflowExecutionsCommandOutput
|
|
20
|
+
extends WorkflowExecutionCount,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CountClosedWorkflowExecutionsCommand extends $Command<
|
|
24
|
+
CountClosedWorkflowExecutionsCommandInput,
|
|
25
|
+
CountClosedWorkflowExecutionsCommandOutput,
|
|
26
|
+
SWFClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CountClosedWorkflowExecutionsCommandInput;
|
|
29
|
+
constructor(input: CountClosedWorkflowExecutionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SWFClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CountClosedWorkflowExecutionsCommandInput,
|
|
37
|
+
CountClosedWorkflowExecutionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CountOpenWorkflowExecutionsInput,
|
|
10
|
+
WorkflowExecutionCount,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SWFClientResolvedConfig,
|
|
16
|
+
} from "../SWFClient";
|
|
17
|
+
export interface CountOpenWorkflowExecutionsCommandInput
|
|
18
|
+
extends CountOpenWorkflowExecutionsInput {}
|
|
19
|
+
export interface CountOpenWorkflowExecutionsCommandOutput
|
|
20
|
+
extends WorkflowExecutionCount,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CountOpenWorkflowExecutionsCommand extends $Command<
|
|
24
|
+
CountOpenWorkflowExecutionsCommandInput,
|
|
25
|
+
CountOpenWorkflowExecutionsCommandOutput,
|
|
26
|
+
SWFClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CountOpenWorkflowExecutionsCommandInput;
|
|
29
|
+
constructor(input: CountOpenWorkflowExecutionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SWFClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CountOpenWorkflowExecutionsCommandInput,
|
|
37
|
+
CountOpenWorkflowExecutionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CountPendingActivityTasksInput,
|
|
10
|
+
PendingTaskCount,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
SWFClientResolvedConfig,
|
|
16
|
+
} from "../SWFClient";
|
|
17
|
+
export interface CountPendingActivityTasksCommandInput
|
|
18
|
+
extends CountPendingActivityTasksInput {}
|
|
19
|
+
export interface CountPendingActivityTasksCommandOutput
|
|
20
|
+
extends PendingTaskCount,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CountPendingActivityTasksCommand extends $Command<
|
|
24
|
+
CountPendingActivityTasksCommandInput,
|
|
25
|
+
CountPendingActivityTasksCommandOutput,
|
|
26
|
+
SWFClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CountPendingActivityTasksCommandInput;
|
|
29
|
+
constructor(input: CountPendingActivityTasksCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SWFClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CountPendingActivityTasksCommandInput,
|
|
37
|
+
CountPendingActivityTasksCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|