@aws-sdk/client-mwaa-serverless 3.933.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.
Files changed (131) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +325 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1324 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +41 -0
  11. package/dist-es/MWAAServerless.js +37 -0
  12. package/dist-es/MWAAServerlessClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/CreateWorkflowCommand.js +16 -0
  16. package/dist-es/commands/DeleteWorkflowCommand.js +16 -0
  17. package/dist-es/commands/GetTaskInstanceCommand.js +16 -0
  18. package/dist-es/commands/GetWorkflowCommand.js +16 -0
  19. package/dist-es/commands/GetWorkflowRunCommand.js +16 -0
  20. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  21. package/dist-es/commands/ListTaskInstancesCommand.js +16 -0
  22. package/dist-es/commands/ListWorkflowRunsCommand.js +16 -0
  23. package/dist-es/commands/ListWorkflowVersionsCommand.js +16 -0
  24. package/dist-es/commands/ListWorkflowsCommand.js +16 -0
  25. package/dist-es/commands/StartWorkflowRunCommand.js +16 -0
  26. package/dist-es/commands/StopWorkflowRunCommand.js +16 -0
  27. package/dist-es/commands/TagResourceCommand.js +16 -0
  28. package/dist-es/commands/UntagResourceCommand.js +16 -0
  29. package/dist-es/commands/UpdateWorkflowCommand.js +16 -0
  30. package/dist-es/commands/index.js +15 -0
  31. package/dist-es/endpoint/EndpointParameters.js +11 -0
  32. package/dist-es/endpoint/endpointResolver.js +14 -0
  33. package/dist-es/endpoint/ruleset.js +4 -0
  34. package/dist-es/extensionConfiguration.js +1 -0
  35. package/dist-es/index.js +6 -0
  36. package/dist-es/models/MWAAServerlessServiceException.js +8 -0
  37. package/dist-es/models/index.js +1 -0
  38. package/dist-es/models/models_0.js +193 -0
  39. package/dist-es/pagination/Interfaces.js +1 -0
  40. package/dist-es/pagination/ListTaskInstancesPaginator.js +4 -0
  41. package/dist-es/pagination/ListWorkflowRunsPaginator.js +4 -0
  42. package/dist-es/pagination/ListWorkflowVersionsPaginator.js +4 -0
  43. package/dist-es/pagination/ListWorkflowsPaginator.js +4 -0
  44. package/dist-es/pagination/index.js +5 -0
  45. package/dist-es/runtimeConfig.browser.js +34 -0
  46. package/dist-es/runtimeConfig.js +51 -0
  47. package/dist-es/runtimeConfig.native.js +11 -0
  48. package/dist-es/runtimeConfig.shared.js +37 -0
  49. package/dist-es/runtimeExtensions.js +9 -0
  50. package/dist-es/schemas/schemas_0.js +771 -0
  51. package/dist-types/MWAAServerless.d.ts +116 -0
  52. package/dist-types/MWAAServerlessClient.d.ts +211 -0
  53. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  54. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  55. package/dist-types/commands/CreateWorkflowCommand.d.ts +131 -0
  56. package/dist-types/commands/DeleteWorkflowCommand.d.ts +94 -0
  57. package/dist-types/commands/GetTaskInstanceCommand.d.ts +110 -0
  58. package/dist-types/commands/GetWorkflowCommand.d.ts +126 -0
  59. package/dist-types/commands/GetWorkflowRunCommand.d.ts +115 -0
  60. package/dist-types/commands/ListTagsForResourceCommand.d.ts +94 -0
  61. package/dist-types/commands/ListTaskInstancesCommand.d.ts +103 -0
  62. package/dist-types/commands/ListWorkflowRunsCommand.d.ts +106 -0
  63. package/dist-types/commands/ListWorkflowVersionsCommand.d.ts +109 -0
  64. package/dist-types/commands/ListWorkflowsCommand.d.ts +102 -0
  65. package/dist-types/commands/StartWorkflowRunCommand.d.ts +105 -0
  66. package/dist-types/commands/StopWorkflowRunCommand.d.ts +96 -0
  67. package/dist-types/commands/TagResourceCommand.d.ts +93 -0
  68. package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
  69. package/dist-types/commands/UpdateWorkflowCommand.d.ts +123 -0
  70. package/dist-types/commands/index.d.ts +15 -0
  71. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  72. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  73. package/dist-types/endpoint/ruleset.d.ts +2 -0
  74. package/dist-types/extensionConfiguration.d.ts +9 -0
  75. package/dist-types/index.d.ts +14 -0
  76. package/dist-types/models/MWAAServerlessServiceException.d.ts +14 -0
  77. package/dist-types/models/index.d.ts +1 -0
  78. package/dist-types/models/models_0.d.ts +1363 -0
  79. package/dist-types/pagination/Interfaces.d.ts +8 -0
  80. package/dist-types/pagination/ListTaskInstancesPaginator.d.ts +7 -0
  81. package/dist-types/pagination/ListWorkflowRunsPaginator.d.ts +7 -0
  82. package/dist-types/pagination/ListWorkflowVersionsPaginator.d.ts +7 -0
  83. package/dist-types/pagination/ListWorkflowsPaginator.d.ts +7 -0
  84. package/dist-types/pagination/index.d.ts +5 -0
  85. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  86. package/dist-types/runtimeConfig.d.ts +51 -0
  87. package/dist-types/runtimeConfig.native.d.ts +50 -0
  88. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  89. package/dist-types/runtimeExtensions.d.ts +17 -0
  90. package/dist-types/schemas/schemas_0.d.ts +81 -0
  91. package/dist-types/ts3.4/MWAAServerless.d.ts +263 -0
  92. package/dist-types/ts3.4/MWAAServerlessClient.d.ts +214 -0
  93. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  94. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  95. package/dist-types/ts3.4/commands/CreateWorkflowCommand.d.ts +50 -0
  96. package/dist-types/ts3.4/commands/DeleteWorkflowCommand.d.ts +50 -0
  97. package/dist-types/ts3.4/commands/GetTaskInstanceCommand.d.ts +50 -0
  98. package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +47 -0
  99. package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +50 -0
  100. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  101. package/dist-types/ts3.4/commands/ListTaskInstancesCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +50 -0
  103. package/dist-types/ts3.4/commands/ListWorkflowVersionsCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +50 -0
  105. package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +50 -0
  106. package/dist-types/ts3.4/commands/StopWorkflowRunCommand.d.ts +50 -0
  107. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  108. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  109. package/dist-types/ts3.4/commands/UpdateWorkflowCommand.d.ts +50 -0
  110. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  111. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  112. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  113. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  114. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  115. package/dist-types/ts3.4/index.d.ts +9 -0
  116. package/dist-types/ts3.4/models/MWAAServerlessServiceException.d.ts +9 -0
  117. package/dist-types/ts3.4/models/index.d.ts +1 -0
  118. package/dist-types/ts3.4/models/models_0.d.ts +396 -0
  119. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  120. package/dist-types/ts3.4/pagination/ListTaskInstancesPaginator.d.ts +11 -0
  121. package/dist-types/ts3.4/pagination/ListWorkflowRunsPaginator.d.ts +11 -0
  122. package/dist-types/ts3.4/pagination/ListWorkflowVersionsPaginator.d.ts +11 -0
  123. package/dist-types/ts3.4/pagination/ListWorkflowsPaginator.d.ts +11 -0
  124. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  125. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  126. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  127. package/dist-types/ts3.4/runtimeConfig.native.d.ts +99 -0
  128. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +25 -0
  129. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  130. package/dist-types/ts3.4/schemas/schemas_0.d.ts +87 -0
  131. package/package.json +99 -0
@@ -0,0 +1,771 @@
1
+ const _ADE = "AccessDeniedException";
2
+ const _AN = "AttemptNumber";
3
+ const _B = "Bucket";
4
+ const _CA = "CreatedAt";
5
+ const _CE = "ConflictException";
6
+ const _CEr = "CronExpression";
7
+ const _CO = "CreatedOn";
8
+ const _COo = "CompletedOn";
9
+ const _CT = "ClientToken";
10
+ const _CW = "CreateWorkflow";
11
+ const _CWR = "CreateWorkflowRequest";
12
+ const _CWRr = "CreateWorkflowResponse";
13
+ const _D = "Description";
14
+ const _DIS = "DurationInSeconds";
15
+ const _DSL = "DefinitionS3Location";
16
+ const _DW = "DeleteWorkflow";
17
+ const _DWR = "DeleteWorkflowRequest";
18
+ const _DWRe = "DeleteWorkflowResponse";
19
+ const _Du = "Duration";
20
+ const _EA = "EndedAt";
21
+ const _EC = "EncryptionConfiguration";
22
+ const _EM = "ErrorMessage";
23
+ const _EV = "EngineVersion";
24
+ const _FL = "FieldList";
25
+ const _GTI = "GetTaskInstance";
26
+ const _GTIR = "GetTaskInstanceRequest";
27
+ const _GTIRe = "GetTaskInstanceResponse";
28
+ const _GW = "GetWorkflow";
29
+ const _GWR = "GetWorkflowRequest";
30
+ const _GWRR = "GetWorkflowRunRequest";
31
+ const _GWRRe = "GetWorkflowRunResponse";
32
+ const _GWRe = "GetWorkflowResponse";
33
+ const _GWRet = "GetWorkflowRun";
34
+ const _ILV = "IsLatestVersion";
35
+ const _ISE = "InternalServerException";
36
+ const _KKI = "KmsKeyId";
37
+ const _LC = "LoggingConfiguration";
38
+ const _LGN = "LogGroupName";
39
+ const _LS = "LogStream";
40
+ const _LTFR = "ListTagsForResource";
41
+ const _LTFRR = "ListTagsForResourceRequest";
42
+ const _LTFRRi = "ListTagsForResourceResponse";
43
+ const _LTI = "ListTaskInstances";
44
+ const _LTIR = "ListTaskInstancesRequest";
45
+ const _LTIRi = "ListTaskInstancesResponse";
46
+ const _LW = "ListWorkflows";
47
+ const _LWR = "ListWorkflowsRequest";
48
+ const _LWRR = "ListWorkflowRunsRequest";
49
+ const _LWRRi = "ListWorkflowRunsResponse";
50
+ const _LWRi = "ListWorkflowsResponse";
51
+ const _LWRis = "ListWorkflowRuns";
52
+ const _LWV = "ListWorkflowVersions";
53
+ const _LWVR = "ListWorkflowVersionsRequest";
54
+ const _LWVRi = "ListWorkflowVersionsResponse";
55
+ const _M = "Message";
56
+ const _MA = "ModifiedAt";
57
+ const _MR = "MaxResults";
58
+ const _N = "Name";
59
+ const _NC = "NetworkConfiguration";
60
+ const _NT = "NextToken";
61
+ const _OK = "ObjectKey";
62
+ const _OM = "ObjectMap";
63
+ const _ON = "OperatorName";
64
+ const _OP = "OverrideParameters";
65
+ const _OTE = "OperationTimeoutException";
66
+ const _QC = "QuotaCode";
67
+ const _R = "Reason";
68
+ const _RA = "RoleArn";
69
+ const _RAS = "RetryAfterSeconds";
70
+ const _RA_ = "Retry-After";
71
+ const _RAe = "ResourceArn";
72
+ const _RD = "RunDetail";
73
+ const _RDS = "RunDetailSummary";
74
+ const _RI = "ResourceId";
75
+ const _RIe = "RevisionId";
76
+ const _RIu = "RunId";
77
+ const _RNFE = "ResourceNotFoundException";
78
+ const _RS = "RunState";
79
+ const _RT = "ResourceType";
80
+ const _RTu = "RunType";
81
+ const _S = "Status";
82
+ const _SA = "StartedAt";
83
+ const _SC = "ScheduleConfiguration";
84
+ const _SCe = "ServiceCode";
85
+ const _SGI = "SecurityGroupIds";
86
+ const _SI = "SubnetIds";
87
+ const _SO = "StartedOn";
88
+ const _SQEE = "ServiceQuotaExceededException";
89
+ const _SWR = "StartWorkflowRun";
90
+ const _SWRR = "StartWorkflowRunRequest";
91
+ const _SWRRt = "StartWorkflowRunResponse";
92
+ const _SWRRto = "StopWorkflowRunRequest";
93
+ const _SWRRtop = "StopWorkflowRunResponse";
94
+ const _SWRt = "StopWorkflowRun";
95
+ const _T = "Tags";
96
+ const _TE = "ThrottlingException";
97
+ const _TI = "TaskId";
98
+ const _TII = "TaskInstanceId";
99
+ const _TIS = "TaskInstanceSummary";
100
+ const _TISa = "TaskInstanceSummaries";
101
+ const _TIa = "TaskInstances";
102
+ const _TK = "TagKeys";
103
+ const _TM = "TriggerMode";
104
+ const _TR = "TagResource";
105
+ const _TRR = "TagResourceRequest";
106
+ const _TRRa = "TagResourceResponse";
107
+ const _Ty = "Type";
108
+ const _UR = "UntagResource";
109
+ const _URR = "UntagResourceRequest";
110
+ const _URRn = "UntagResourceResponse";
111
+ const _UW = "UpdateWorkflow";
112
+ const _UWR = "UpdateWorkflowRequest";
113
+ const _UWRp = "UpdateWorkflowResponse";
114
+ const _VE = "ValidationException";
115
+ const _VEF = "ValidationExceptionField";
116
+ const _VEFa = "ValidationExceptionFields";
117
+ const _VI = "VersionId";
118
+ const _W = "Warnings";
119
+ const _WA = "WorkflowArn";
120
+ const _WD = "WorkflowDefinition";
121
+ const _WR = "WorkflowRuns";
122
+ const _WRD = "WorkflowRunDetail";
123
+ const _WRS = "WorkflowRunSummary";
124
+ const _WRSo = "WorkflowRunSummaries";
125
+ const _WS = "WorkflowStatus";
126
+ const _WSo = "WorkflowSummary";
127
+ const _WSor = "WorkflowSummaries";
128
+ const _WV = "WorkflowVersion";
129
+ const _WVS = "WorkflowVersionSummary";
130
+ const _WVSo = "WorkflowVersionSummaries";
131
+ const _WVo = "WorkflowVersions";
132
+ const _Wo = "Workflows";
133
+ const _X = "Xcom";
134
+ const _c = "client";
135
+ const _e = "error";
136
+ const _h = "http";
137
+ const _hE = "httpError";
138
+ const _hH = "httpHeader";
139
+ const _hQ = "httpQuery";
140
+ const _mR = "maxResults";
141
+ const _nT = "nextToken";
142
+ const _s = "server";
143
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.mwaaserverless";
144
+ const _tK = "tagKeys";
145
+ const _wV = "workflowVersion";
146
+ const n0 = "com.amazonaws.mwaaserverless";
147
+ import { TypeRegistry } from "@smithy/core/schema";
148
+ import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, OperationTimeoutException as __OperationTimeoutException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/index";
149
+ import { MWAAServerlessServiceException as __MWAAServerlessServiceException } from "../models/MWAAServerlessServiceException";
150
+ export var AccessDeniedException = [
151
+ -3,
152
+ n0,
153
+ _ADE,
154
+ {
155
+ [_e]: _c,
156
+ [_hE]: 403,
157
+ },
158
+ [_M],
159
+ [0],
160
+ ];
161
+ TypeRegistry.for(n0).registerError(AccessDeniedException, __AccessDeniedException);
162
+ export var ConflictException = [
163
+ -3,
164
+ n0,
165
+ _CE,
166
+ {
167
+ [_e]: _c,
168
+ [_hE]: 409,
169
+ },
170
+ [_M, _RI, _RT],
171
+ [0, 0, 0],
172
+ ];
173
+ TypeRegistry.for(n0).registerError(ConflictException, __ConflictException);
174
+ export var CreateWorkflowRequest = [
175
+ 3,
176
+ n0,
177
+ _CWR,
178
+ 0,
179
+ [_N, _CT, _DSL, _RA, _D, _EC, _LC, _EV, _NC, _T, _TM],
180
+ [
181
+ 0,
182
+ [0, 4],
183
+ () => DefinitionS3Location,
184
+ 0,
185
+ 0,
186
+ () => EncryptionConfiguration,
187
+ () => LoggingConfiguration,
188
+ 1,
189
+ () => NetworkConfiguration,
190
+ 128 | 0,
191
+ 0,
192
+ ],
193
+ ];
194
+ export var CreateWorkflowResponse = [
195
+ 3,
196
+ n0,
197
+ _CWRr,
198
+ 0,
199
+ [_WA, _CA, _RIe, _WS, _WV, _ILV, _W],
200
+ [0, 5, 0, 0, 0, 2, 64 | 0],
201
+ ];
202
+ export var DefinitionS3Location = [3, n0, _DSL, 0, [_B, _OK, _VI], [0, 0, 0]];
203
+ export var DeleteWorkflowRequest = [
204
+ 3,
205
+ n0,
206
+ _DWR,
207
+ 0,
208
+ [_WA, _WV],
209
+ [
210
+ [0, 1],
211
+ [
212
+ 0,
213
+ {
214
+ [_hQ]: _wV,
215
+ },
216
+ ],
217
+ ],
218
+ ];
219
+ export var DeleteWorkflowResponse = [3, n0, _DWRe, 0, [_WA, _WV], [0, 0]];
220
+ export var EncryptionConfiguration = [3, n0, _EC, 0, [_Ty, _KKI], [0, 0]];
221
+ export var GetTaskInstanceRequest = [
222
+ 3,
223
+ n0,
224
+ _GTIR,
225
+ 0,
226
+ [_WA, _TII, _RIu],
227
+ [
228
+ [0, 1],
229
+ [0, 1],
230
+ [0, 1],
231
+ ],
232
+ ];
233
+ export var GetTaskInstanceResponse = [
234
+ 3,
235
+ n0,
236
+ _GTIRe,
237
+ 0,
238
+ [_WA, _RIu, _TII, _WV, _S, _DIS, _ON, _MA, _EA, _SA, _AN, _EM, _TI, _LS, _X],
239
+ [0, 0, 0, 0, 0, 1, 0, 5, 5, 5, 1, 0, 0, 0, 128 | 0],
240
+ ];
241
+ export var GetWorkflowRequest = [
242
+ 3,
243
+ n0,
244
+ _GWR,
245
+ 0,
246
+ [_WA, _WV],
247
+ [
248
+ [0, 1],
249
+ [
250
+ 0,
251
+ {
252
+ [_hQ]: _wV,
253
+ },
254
+ ],
255
+ ],
256
+ ];
257
+ export var GetWorkflowResponse = [
258
+ 3,
259
+ n0,
260
+ _GWRe,
261
+ 0,
262
+ [_WA, _WV, _N, _D, _CA, _MA, _EC, _LC, _EV, _WS, _DSL, _SC, _RA, _NC, _TM, _WD],
263
+ [
264
+ 0,
265
+ 0,
266
+ 0,
267
+ 0,
268
+ 5,
269
+ 5,
270
+ () => EncryptionConfiguration,
271
+ () => LoggingConfiguration,
272
+ 1,
273
+ 0,
274
+ () => DefinitionS3Location,
275
+ () => ScheduleConfiguration,
276
+ 0,
277
+ () => NetworkConfiguration,
278
+ 0,
279
+ 0,
280
+ ],
281
+ ];
282
+ export var GetWorkflowRunRequest = [
283
+ 3,
284
+ n0,
285
+ _GWRR,
286
+ 0,
287
+ [_WA, _RIu],
288
+ [
289
+ [0, 1],
290
+ [0, 1],
291
+ ],
292
+ ];
293
+ export var GetWorkflowRunResponse = [
294
+ 3,
295
+ n0,
296
+ _GWRRe,
297
+ 0,
298
+ [_WA, _WV, _RIu, _RTu, _OP, _RD],
299
+ [0, 0, 0, 0, [() => ObjectMap, 0], () => WorkflowRunDetail],
300
+ ];
301
+ export var InternalServerException = [
302
+ -3,
303
+ n0,
304
+ _ISE,
305
+ {
306
+ [_e]: _s,
307
+ [_hE]: 500,
308
+ },
309
+ [_M, _RAS],
310
+ [
311
+ 0,
312
+ [
313
+ 1,
314
+ {
315
+ [_hH]: _RA_,
316
+ },
317
+ ],
318
+ ],
319
+ ];
320
+ TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
321
+ export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
322
+ export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [128 | 0]];
323
+ export var ListTaskInstancesRequest = [
324
+ 3,
325
+ n0,
326
+ _LTIR,
327
+ 0,
328
+ [_WA, _RIu, _MR, _NT],
329
+ [
330
+ [0, 1],
331
+ [0, 1],
332
+ [
333
+ 1,
334
+ {
335
+ [_hQ]: _mR,
336
+ },
337
+ ],
338
+ [
339
+ 0,
340
+ {
341
+ [_hQ]: _nT,
342
+ },
343
+ ],
344
+ ],
345
+ ];
346
+ export var ListTaskInstancesResponse = [
347
+ 3,
348
+ n0,
349
+ _LTIRi,
350
+ 0,
351
+ [_TIa, _NT],
352
+ [() => TaskInstanceSummaries, 0],
353
+ ];
354
+ export var ListWorkflowRunsRequest = [
355
+ 3,
356
+ n0,
357
+ _LWRR,
358
+ 0,
359
+ [_MR, _NT, _WA, _WV],
360
+ [
361
+ [
362
+ 1,
363
+ {
364
+ [_hQ]: _mR,
365
+ },
366
+ ],
367
+ [
368
+ 0,
369
+ {
370
+ [_hQ]: _nT,
371
+ },
372
+ ],
373
+ [0, 1],
374
+ [
375
+ 0,
376
+ {
377
+ [_hQ]: _wV,
378
+ },
379
+ ],
380
+ ],
381
+ ];
382
+ export var ListWorkflowRunsResponse = [
383
+ 3,
384
+ n0,
385
+ _LWRRi,
386
+ 0,
387
+ [_WR, _NT],
388
+ [() => WorkflowRunSummaries, 0],
389
+ ];
390
+ export var ListWorkflowsRequest = [
391
+ 3,
392
+ n0,
393
+ _LWR,
394
+ 0,
395
+ [_MR, _NT],
396
+ [
397
+ [
398
+ 1,
399
+ {
400
+ [_hQ]: _mR,
401
+ },
402
+ ],
403
+ [
404
+ 0,
405
+ {
406
+ [_hQ]: _nT,
407
+ },
408
+ ],
409
+ ],
410
+ ];
411
+ export var ListWorkflowsResponse = [3, n0, _LWRi, 0, [_Wo, _NT], [() => WorkflowSummaries, 0]];
412
+ export var ListWorkflowVersionsRequest = [
413
+ 3,
414
+ n0,
415
+ _LWVR,
416
+ 0,
417
+ [_MR, _NT, _WA],
418
+ [
419
+ [
420
+ 1,
421
+ {
422
+ [_hQ]: _mR,
423
+ },
424
+ ],
425
+ [
426
+ 0,
427
+ {
428
+ [_hQ]: _nT,
429
+ },
430
+ ],
431
+ [0, 1],
432
+ ],
433
+ ];
434
+ export var ListWorkflowVersionsResponse = [
435
+ 3,
436
+ n0,
437
+ _LWVRi,
438
+ 0,
439
+ [_WVo, _NT],
440
+ [() => WorkflowVersionSummaries, 0],
441
+ ];
442
+ export var LoggingConfiguration = [3, n0, _LC, 0, [_LGN], [0]];
443
+ export var NetworkConfiguration = [3, n0, _NC, 0, [_SGI, _SI], [64 | 0, 64 | 0]];
444
+ export var OperationTimeoutException = [
445
+ -3,
446
+ n0,
447
+ _OTE,
448
+ {
449
+ [_e]: _s,
450
+ [_hE]: 504,
451
+ },
452
+ [_M],
453
+ [0],
454
+ ];
455
+ TypeRegistry.for(n0).registerError(OperationTimeoutException, __OperationTimeoutException);
456
+ export var ResourceNotFoundException = [
457
+ -3,
458
+ n0,
459
+ _RNFE,
460
+ {
461
+ [_e]: _c,
462
+ [_hE]: 404,
463
+ },
464
+ [_M, _RI, _RT],
465
+ [0, 0, 0],
466
+ ];
467
+ TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
468
+ export var RunDetailSummary = [3, n0, _RDS, 0, [_S, _CO, _SA, _EA], [0, 5, 5, 5]];
469
+ export var ScheduleConfiguration = [3, n0, _SC, 0, [_CEr], [0]];
470
+ export var ServiceQuotaExceededException = [
471
+ -3,
472
+ n0,
473
+ _SQEE,
474
+ {
475
+ [_e]: _c,
476
+ [_hE]: 402,
477
+ },
478
+ [_M, _RI, _RT, _SCe, _QC],
479
+ [0, 0, 0, 0, 0],
480
+ ];
481
+ TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, __ServiceQuotaExceededException);
482
+ export var StartWorkflowRunRequest = [
483
+ 3,
484
+ n0,
485
+ _SWRR,
486
+ 0,
487
+ [_WA, _CT, _OP, _WV],
488
+ [[0, 1], [0, 4], [() => ObjectMap, 0], 0],
489
+ ];
490
+ export var StartWorkflowRunResponse = [3, n0, _SWRRt, 0, [_RIu, _S, _SA], [0, 0, 5]];
491
+ export var StopWorkflowRunRequest = [
492
+ 3,
493
+ n0,
494
+ _SWRRto,
495
+ 0,
496
+ [_WA, _RIu],
497
+ [
498
+ [0, 1],
499
+ [0, 1],
500
+ ],
501
+ ];
502
+ export var StopWorkflowRunResponse = [3, n0, _SWRRtop, 0, [_WA, _WV, _RIu, _S], [0, 0, 0, 0]];
503
+ export var TagResourceRequest = [3, n0, _TRR, 0, [_RAe, _T], [[0, 1], 128 | 0]];
504
+ export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
505
+ export var TaskInstanceSummary = [
506
+ 3,
507
+ n0,
508
+ _TIS,
509
+ 0,
510
+ [_WA, _WV, _RIu, _TII, _S, _DIS, _ON],
511
+ [0, 0, 0, 0, 0, 1, 0],
512
+ ];
513
+ export var ThrottlingException = [
514
+ -3,
515
+ n0,
516
+ _TE,
517
+ {
518
+ [_e]: _c,
519
+ [_hE]: 429,
520
+ },
521
+ [_M, _SCe, _QC, _RAS],
522
+ [
523
+ 0,
524
+ 0,
525
+ 0,
526
+ [
527
+ 1,
528
+ {
529
+ [_hH]: _RA_,
530
+ },
531
+ ],
532
+ ],
533
+ ];
534
+ TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
535
+ export var UntagResourceRequest = [
536
+ 3,
537
+ n0,
538
+ _URR,
539
+ 0,
540
+ [_RAe, _TK],
541
+ [
542
+ [0, 1],
543
+ [
544
+ 64 | 0,
545
+ {
546
+ [_hQ]: _tK,
547
+ },
548
+ ],
549
+ ],
550
+ ];
551
+ export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
552
+ export var UpdateWorkflowRequest = [
553
+ 3,
554
+ n0,
555
+ _UWR,
556
+ 0,
557
+ [_WA, _DSL, _RA, _D, _LC, _EV, _NC, _TM],
558
+ [[0, 1], () => DefinitionS3Location, 0, 0, () => LoggingConfiguration, 1, () => NetworkConfiguration, 0],
559
+ ];
560
+ export var UpdateWorkflowResponse = [3, n0, _UWRp, 0, [_WA, _MA, _WV, _W], [0, 5, 0, 64 | 0]];
561
+ export var ValidationException = [
562
+ -3,
563
+ n0,
564
+ _VE,
565
+ {
566
+ [_e]: _c,
567
+ [_hE]: 400,
568
+ },
569
+ [_M, _R, _FL],
570
+ [0, 0, () => ValidationExceptionFields],
571
+ ];
572
+ TypeRegistry.for(n0).registerError(ValidationException, __ValidationException);
573
+ export var ValidationExceptionField = [3, n0, _VEF, 0, [_N, _M], [0, 0]];
574
+ export var WorkflowRunDetail = [
575
+ 3,
576
+ n0,
577
+ _WRD,
578
+ 0,
579
+ [_WA, _WV, _RIu, _RTu, _SO, _CA, _COo, _MA, _Du, _EM, _TIa, _RS],
580
+ [0, 0, 0, 0, 5, 5, 5, 5, 1, 0, 64 | 0, 0],
581
+ ];
582
+ export var WorkflowRunSummary = [
583
+ 3,
584
+ n0,
585
+ _WRS,
586
+ 0,
587
+ [_RIu, _WA, _WV, _RTu, _RDS],
588
+ [0, 0, 0, 0, () => RunDetailSummary],
589
+ ];
590
+ export var WorkflowSummary = [
591
+ 3,
592
+ n0,
593
+ _WSo,
594
+ 0,
595
+ [_WA, _WV, _N, _D, _CA, _MA, _WS, _TM],
596
+ [0, 0, 0, 0, 5, 5, 0, 0],
597
+ ];
598
+ export var WorkflowVersionSummary = [
599
+ 3,
600
+ n0,
601
+ _WVS,
602
+ 0,
603
+ [_WV, _WA, _ILV, _CA, _MA, _DSL, _SC, _TM],
604
+ [0, 0, 2, 5, 5, () => DefinitionS3Location, () => ScheduleConfiguration, 0],
605
+ ];
606
+ export var __Unit = "unit";
607
+ export var MWAAServerlessServiceException = [-3, _sm, "MWAAServerlessServiceException", 0, [], []];
608
+ TypeRegistry.for(_sm).registerError(MWAAServerlessServiceException, __MWAAServerlessServiceException);
609
+ export var SecurityGroupIds = 64 | 0;
610
+ export var SubnetIds = 64 | 0;
611
+ export var TagKeys = 64 | 0;
612
+ export var TaskInstanceIds = 64 | 0;
613
+ export var TaskInstanceSummaries = [1, n0, _TISa, 0, () => TaskInstanceSummary];
614
+ export var ValidationExceptionFields = [1, n0, _VEFa, 0, () => ValidationExceptionField];
615
+ export var WarningMessages = 64 | 0;
616
+ export var WorkflowRunSummaries = [1, n0, _WRSo, 0, () => WorkflowRunSummary];
617
+ export var WorkflowSummaries = [1, n0, _WSor, 0, () => WorkflowSummary];
618
+ export var WorkflowVersionSummaries = [1, n0, _WVSo, 0, () => WorkflowVersionSummary];
619
+ export var GenericMap = 128 | 0;
620
+ export var ObjectMap = [2, n0, _OM, 8, 0, 15];
621
+ export var Tags = 128 | 0;
622
+ export var CreateWorkflow = [
623
+ 9,
624
+ n0,
625
+ _CW,
626
+ {
627
+ [_h]: ["POST", "/workflows", 200],
628
+ },
629
+ () => CreateWorkflowRequest,
630
+ () => CreateWorkflowResponse,
631
+ ];
632
+ export var DeleteWorkflow = [
633
+ 9,
634
+ n0,
635
+ _DW,
636
+ {
637
+ [_h]: ["DELETE", "/workflows/{WorkflowArn}", 200],
638
+ },
639
+ () => DeleteWorkflowRequest,
640
+ () => DeleteWorkflowResponse,
641
+ ];
642
+ export var GetTaskInstance = [
643
+ 9,
644
+ n0,
645
+ _GTI,
646
+ {
647
+ [_h]: ["GET", "/workflows/{WorkflowArn}/runs/{RunId}/tasks/{TaskInstanceId}", 200],
648
+ },
649
+ () => GetTaskInstanceRequest,
650
+ () => GetTaskInstanceResponse,
651
+ ];
652
+ export var GetWorkflow = [
653
+ 9,
654
+ n0,
655
+ _GW,
656
+ {
657
+ [_h]: ["GET", "/workflows/{WorkflowArn}", 200],
658
+ },
659
+ () => GetWorkflowRequest,
660
+ () => GetWorkflowResponse,
661
+ ];
662
+ export var GetWorkflowRun = [
663
+ 9,
664
+ n0,
665
+ _GWRet,
666
+ {
667
+ [_h]: ["GET", "/workflows/{WorkflowArn}/runs/{RunId}", 200],
668
+ },
669
+ () => GetWorkflowRunRequest,
670
+ () => GetWorkflowRunResponse,
671
+ ];
672
+ export var ListTagsForResource = [
673
+ 9,
674
+ n0,
675
+ _LTFR,
676
+ {
677
+ [_h]: ["GET", "/tags/{ResourceArn}", 200],
678
+ },
679
+ () => ListTagsForResourceRequest,
680
+ () => ListTagsForResourceResponse,
681
+ ];
682
+ export var ListTaskInstances = [
683
+ 9,
684
+ n0,
685
+ _LTI,
686
+ {
687
+ [_h]: ["GET", "/workflows/{WorkflowArn}/runs/{RunId}/tasks", 200],
688
+ },
689
+ () => ListTaskInstancesRequest,
690
+ () => ListTaskInstancesResponse,
691
+ ];
692
+ export var ListWorkflowRuns = [
693
+ 9,
694
+ n0,
695
+ _LWRis,
696
+ {
697
+ [_h]: ["GET", "/workflows/{WorkflowArn}/runs", 200],
698
+ },
699
+ () => ListWorkflowRunsRequest,
700
+ () => ListWorkflowRunsResponse,
701
+ ];
702
+ export var ListWorkflows = [
703
+ 9,
704
+ n0,
705
+ _LW,
706
+ {
707
+ [_h]: ["GET", "/workflows", 200],
708
+ },
709
+ () => ListWorkflowsRequest,
710
+ () => ListWorkflowsResponse,
711
+ ];
712
+ export var ListWorkflowVersions = [
713
+ 9,
714
+ n0,
715
+ _LWV,
716
+ {
717
+ [_h]: ["GET", "/workflows/{WorkflowArn}/versions", 200],
718
+ },
719
+ () => ListWorkflowVersionsRequest,
720
+ () => ListWorkflowVersionsResponse,
721
+ ];
722
+ export var StartWorkflowRun = [
723
+ 9,
724
+ n0,
725
+ _SWR,
726
+ {
727
+ [_h]: ["POST", "/workflows/{WorkflowArn}/runs", 200],
728
+ },
729
+ () => StartWorkflowRunRequest,
730
+ () => StartWorkflowRunResponse,
731
+ ];
732
+ export var StopWorkflowRun = [
733
+ 9,
734
+ n0,
735
+ _SWRt,
736
+ {
737
+ [_h]: ["DELETE", "/workflows/{WorkflowArn}/runs/{RunId}", 200],
738
+ },
739
+ () => StopWorkflowRunRequest,
740
+ () => StopWorkflowRunResponse,
741
+ ];
742
+ export var TagResource = [
743
+ 9,
744
+ n0,
745
+ _TR,
746
+ {
747
+ [_h]: ["POST", "/tags/{ResourceArn}", 200],
748
+ },
749
+ () => TagResourceRequest,
750
+ () => TagResourceResponse,
751
+ ];
752
+ export var UntagResource = [
753
+ 9,
754
+ n0,
755
+ _UR,
756
+ {
757
+ [_h]: ["DELETE", "/tags/{ResourceArn}", 200],
758
+ },
759
+ () => UntagResourceRequest,
760
+ () => UntagResourceResponse,
761
+ ];
762
+ export var UpdateWorkflow = [
763
+ 9,
764
+ n0,
765
+ _UW,
766
+ {
767
+ [_h]: ["PUT", "/workflows/{WorkflowArn}", 200],
768
+ },
769
+ () => UpdateWorkflowRequest,
770
+ () => UpdateWorkflowResponse,
771
+ ];