aws-sdk 1.3.4 → 1.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/aws.rb +2 -0
- data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +1163 -0
- data/lib/aws/core.rb +16 -11
- data/lib/aws/core/configuration.rb +65 -47
- data/lib/aws/dynamo_db/item_collection.rb +2 -3
- data/lib/aws/dynamo_db/table.rb +2 -2
- data/lib/aws/ec2/collection.rb +1 -1
- data/lib/aws/ec2/snapshot_collection.rb +1 -1
- data/lib/aws/ec2/tagged_collection.rb +6 -1
- data/lib/aws/elb/backend_server_policy_collection.rb +1 -11
- data/lib/aws/elb/load_balancer.rb +4 -4
- data/lib/aws/elb/load_balancer_collection.rb +1 -1
- data/lib/aws/iam/policy.rb +1 -1
- data/lib/aws/record.rb +10 -4
- data/lib/aws/record/hash_model/finder_methods.rb +2 -3
- data/lib/aws/s3/bucket_lifecycle_configuration.rb +2 -2
- data/lib/aws/s3/policy.rb +1 -1
- data/lib/aws/simple_email_service.rb +8 -2
- data/lib/aws/simple_workflow.rb +223 -0
- data/lib/aws/simple_workflow/activity_task.rb +173 -0
- data/lib/aws/simple_workflow/activity_task_collection.rb +112 -0
- data/lib/aws/simple_workflow/activity_type.rb +131 -0
- data/lib/aws/simple_workflow/activity_type_collection.rb +93 -0
- data/lib/aws/simple_workflow/client.rb +57 -0
- data/lib/aws/simple_workflow/config.rb +18 -0
- data/lib/aws/simple_workflow/count.rb +49 -0
- data/lib/aws/simple_workflow/decision_task.rb +603 -0
- data/lib/aws/simple_workflow/decision_task_collection.rb +213 -0
- data/lib/aws/simple_workflow/domain.rb +122 -0
- data/lib/aws/simple_workflow/domain_collection.rb +169 -0
- data/lib/aws/simple_workflow/errors.rb +57 -0
- data/lib/aws/simple_workflow/history_event.rb +276 -0
- data/lib/aws/simple_workflow/history_event_collection.rb +76 -0
- data/lib/aws/simple_workflow/option_formatters.rb +75 -0
- data/lib/aws/simple_workflow/request.rb +80 -0
- data/lib/aws/simple_workflow/resource.rb +94 -0
- data/lib/aws/simple_workflow/type.rb +89 -0
- data/lib/aws/simple_workflow/type_collection.rb +139 -0
- data/lib/aws/simple_workflow/workflow_execution.rb +386 -0
- data/lib/aws/simple_workflow/workflow_execution_collection.rb +617 -0
- data/lib/aws/simple_workflow/workflow_type.rb +177 -0
- data/lib/aws/simple_workflow/workflow_type_collection.rb +91 -0
- data/lib/aws/sns/policy.rb +1 -1
- data/lib/aws/sns/subscription.rb +2 -2
- data/lib/aws/sqs/errors.rb +2 -2
- data/lib/aws/sqs/policy.rb +1 -1
- metadata +111 -54
data/lib/aws.rb
CHANGED
@@ -20,6 +20,7 @@ require 'aws/iam/config'
|
|
20
20
|
require 'aws/s3/config'
|
21
21
|
require 'aws/simple_db/config'
|
22
22
|
require 'aws/simple_email_service/config'
|
23
|
+
require 'aws/simple_workflow/config'
|
23
24
|
require 'aws/sns/config'
|
24
25
|
require 'aws/sqs/config'
|
25
26
|
require 'aws/sts/config'
|
@@ -33,6 +34,7 @@ module AWS
|
|
33
34
|
autoload :S3, 's3'
|
34
35
|
autoload :SimpleDB, 'simple_db'
|
35
36
|
autoload :SimpleEmailService, 'simple_email_service'
|
37
|
+
autoload :SimpleWorkflow, 'simple_workflow'
|
36
38
|
autoload :SNS, 'sns'
|
37
39
|
autoload :SQS, 'sqs'
|
38
40
|
autoload :STS, 'sts'
|
@@ -0,0 +1,1163 @@
|
|
1
|
+
# Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
---
|
15
|
+
:operations:
|
16
|
+
RegisterWorkflowType:
|
17
|
+
:input:
|
18
|
+
domain:
|
19
|
+
- :string
|
20
|
+
- :required
|
21
|
+
name:
|
22
|
+
- :string
|
23
|
+
- :required
|
24
|
+
version:
|
25
|
+
- :string
|
26
|
+
- :required
|
27
|
+
description:
|
28
|
+
- :string
|
29
|
+
defaultTaskStartToCloseTimeout:
|
30
|
+
- :string
|
31
|
+
defaultExecutionStartToCloseTimeout:
|
32
|
+
- :string
|
33
|
+
defaultTaskList:
|
34
|
+
- :structure:
|
35
|
+
name:
|
36
|
+
- :string
|
37
|
+
- :required
|
38
|
+
defaultChildPolicy:
|
39
|
+
- :string
|
40
|
+
:output: []
|
41
|
+
DeprecateWorkflowType:
|
42
|
+
:input:
|
43
|
+
domain:
|
44
|
+
- :string
|
45
|
+
- :required
|
46
|
+
workflowType:
|
47
|
+
- :structure:
|
48
|
+
name:
|
49
|
+
- :string
|
50
|
+
- :required
|
51
|
+
version:
|
52
|
+
- :string
|
53
|
+
- :required
|
54
|
+
- :required
|
55
|
+
:output: []
|
56
|
+
DescribeWorkflowType:
|
57
|
+
:input:
|
58
|
+
domain:
|
59
|
+
- :string
|
60
|
+
- :required
|
61
|
+
workflowType:
|
62
|
+
- :structure:
|
63
|
+
name:
|
64
|
+
- :string
|
65
|
+
- :required
|
66
|
+
version:
|
67
|
+
- :string
|
68
|
+
- :required
|
69
|
+
- :required
|
70
|
+
:output:
|
71
|
+
- typeInfo:
|
72
|
+
- creationDate:
|
73
|
+
- :timestamp
|
74
|
+
- deprecationDate:
|
75
|
+
- :timestamp
|
76
|
+
ListWorkflowTypes:
|
77
|
+
:input:
|
78
|
+
domain:
|
79
|
+
- :string
|
80
|
+
- :required
|
81
|
+
name:
|
82
|
+
- :string
|
83
|
+
registrationStatus:
|
84
|
+
- :string
|
85
|
+
- :required
|
86
|
+
nextPageToken:
|
87
|
+
- :string
|
88
|
+
maximumPageSize:
|
89
|
+
- :integer
|
90
|
+
reverseOrder:
|
91
|
+
- :boolean
|
92
|
+
:output:
|
93
|
+
- typeInfos:
|
94
|
+
- :list: member
|
95
|
+
- member:
|
96
|
+
- creationDate:
|
97
|
+
- :timestamp
|
98
|
+
- deprecationDate:
|
99
|
+
- :timestamp
|
100
|
+
RegisterActivityType:
|
101
|
+
:input:
|
102
|
+
domain:
|
103
|
+
- :string
|
104
|
+
- :required
|
105
|
+
name:
|
106
|
+
- :string
|
107
|
+
- :required
|
108
|
+
version:
|
109
|
+
- :string
|
110
|
+
- :required
|
111
|
+
description:
|
112
|
+
- :string
|
113
|
+
defaultTaskStartToCloseTimeout:
|
114
|
+
- :string
|
115
|
+
defaultTaskHeartbeatTimeout:
|
116
|
+
- :string
|
117
|
+
defaultTaskList:
|
118
|
+
- :structure:
|
119
|
+
name:
|
120
|
+
- :string
|
121
|
+
- :required
|
122
|
+
defaultTaskScheduleToStartTimeout:
|
123
|
+
- :string
|
124
|
+
defaultTaskScheduleToCloseTimeout:
|
125
|
+
- :string
|
126
|
+
:output: []
|
127
|
+
DeprecateActivityType:
|
128
|
+
:input:
|
129
|
+
domain:
|
130
|
+
- :string
|
131
|
+
- :required
|
132
|
+
activityType:
|
133
|
+
- :structure:
|
134
|
+
name:
|
135
|
+
- :string
|
136
|
+
- :required
|
137
|
+
version:
|
138
|
+
- :string
|
139
|
+
- :required
|
140
|
+
- :required
|
141
|
+
:output: []
|
142
|
+
DescribeActivityType:
|
143
|
+
:input:
|
144
|
+
domain:
|
145
|
+
- :string
|
146
|
+
- :required
|
147
|
+
activityType:
|
148
|
+
- :structure:
|
149
|
+
name:
|
150
|
+
- :string
|
151
|
+
- :required
|
152
|
+
version:
|
153
|
+
- :string
|
154
|
+
- :required
|
155
|
+
- :required
|
156
|
+
:output:
|
157
|
+
- typeInfo:
|
158
|
+
- creationDate:
|
159
|
+
- :timestamp
|
160
|
+
- deprecationDate:
|
161
|
+
- :timestamp
|
162
|
+
ListActivityTypes:
|
163
|
+
:input:
|
164
|
+
domain:
|
165
|
+
- :string
|
166
|
+
- :required
|
167
|
+
name:
|
168
|
+
- :string
|
169
|
+
registrationStatus:
|
170
|
+
- :string
|
171
|
+
- :required
|
172
|
+
nextPageToken:
|
173
|
+
- :string
|
174
|
+
maximumPageSize:
|
175
|
+
- :integer
|
176
|
+
reverseOrder:
|
177
|
+
- :boolean
|
178
|
+
:output:
|
179
|
+
- typeInfos:
|
180
|
+
- :list: member
|
181
|
+
- member:
|
182
|
+
- creationDate:
|
183
|
+
- :timestamp
|
184
|
+
- deprecationDate:
|
185
|
+
- :timestamp
|
186
|
+
StartWorkflowExecution:
|
187
|
+
:input:
|
188
|
+
domain:
|
189
|
+
- :string
|
190
|
+
- :required
|
191
|
+
workflowId:
|
192
|
+
- :string
|
193
|
+
- :required
|
194
|
+
workflowType:
|
195
|
+
- :structure:
|
196
|
+
name:
|
197
|
+
- :string
|
198
|
+
- :required
|
199
|
+
version:
|
200
|
+
- :string
|
201
|
+
- :required
|
202
|
+
- :required
|
203
|
+
taskList:
|
204
|
+
- :structure:
|
205
|
+
name:
|
206
|
+
- :string
|
207
|
+
- :required
|
208
|
+
input:
|
209
|
+
- :string
|
210
|
+
executionStartToCloseTimeout:
|
211
|
+
- :string
|
212
|
+
tagList:
|
213
|
+
- :list:
|
214
|
+
- :string
|
215
|
+
taskStartToCloseTimeout:
|
216
|
+
- :string
|
217
|
+
childPolicy:
|
218
|
+
- :string
|
219
|
+
:output: []
|
220
|
+
SignalWorkflowExecution:
|
221
|
+
:input:
|
222
|
+
domain:
|
223
|
+
- :string
|
224
|
+
- :required
|
225
|
+
workflowId:
|
226
|
+
- :string
|
227
|
+
- :required
|
228
|
+
runId:
|
229
|
+
- :string
|
230
|
+
signalName:
|
231
|
+
- :string
|
232
|
+
- :required
|
233
|
+
input:
|
234
|
+
- :string
|
235
|
+
:output: []
|
236
|
+
RequestCancelWorkflowExecution:
|
237
|
+
:input:
|
238
|
+
domain:
|
239
|
+
- :string
|
240
|
+
- :required
|
241
|
+
workflowId:
|
242
|
+
- :string
|
243
|
+
- :required
|
244
|
+
runId:
|
245
|
+
- :string
|
246
|
+
:output: []
|
247
|
+
TerminateWorkflowExecution:
|
248
|
+
:input:
|
249
|
+
domain:
|
250
|
+
- :string
|
251
|
+
- :required
|
252
|
+
workflowId:
|
253
|
+
- :string
|
254
|
+
- :required
|
255
|
+
runId:
|
256
|
+
- :string
|
257
|
+
reason:
|
258
|
+
- :string
|
259
|
+
details:
|
260
|
+
- :string
|
261
|
+
childPolicy:
|
262
|
+
- :string
|
263
|
+
:output: []
|
264
|
+
DescribeWorkflowExecution:
|
265
|
+
:input:
|
266
|
+
domain:
|
267
|
+
- :string
|
268
|
+
- :required
|
269
|
+
execution:
|
270
|
+
- :structure:
|
271
|
+
workflowId:
|
272
|
+
- :string
|
273
|
+
- :required
|
274
|
+
runId:
|
275
|
+
- :string
|
276
|
+
- :required
|
277
|
+
- :required
|
278
|
+
:output:
|
279
|
+
- executionInfo:
|
280
|
+
- startTimestamp:
|
281
|
+
- :timestamp
|
282
|
+
- closeTimestamp:
|
283
|
+
- :timestamp
|
284
|
+
- tagList:
|
285
|
+
- :list: member
|
286
|
+
- cancelRequested:
|
287
|
+
- :boolean
|
288
|
+
- openCounts:
|
289
|
+
- openActivityTasks:
|
290
|
+
- :integer
|
291
|
+
- openDecisionTasks:
|
292
|
+
- :integer
|
293
|
+
- openTimers:
|
294
|
+
- :integer
|
295
|
+
- openChildWorkflowExecutions:
|
296
|
+
- :integer
|
297
|
+
- latestActivityTaskTimestamp:
|
298
|
+
- :timestamp
|
299
|
+
GetWorkflowExecutionHistory:
|
300
|
+
:input:
|
301
|
+
domain:
|
302
|
+
- :string
|
303
|
+
- :required
|
304
|
+
execution:
|
305
|
+
- :structure:
|
306
|
+
workflowId:
|
307
|
+
- :string
|
308
|
+
- :required
|
309
|
+
runId:
|
310
|
+
- :string
|
311
|
+
- :required
|
312
|
+
- :required
|
313
|
+
nextPageToken:
|
314
|
+
- :string
|
315
|
+
maximumPageSize:
|
316
|
+
- :integer
|
317
|
+
reverseOrder:
|
318
|
+
- :boolean
|
319
|
+
:output:
|
320
|
+
- events:
|
321
|
+
- :list: member
|
322
|
+
- member:
|
323
|
+
- eventTimestamp:
|
324
|
+
- :timestamp
|
325
|
+
- eventId:
|
326
|
+
- :long
|
327
|
+
- workflowExecutionStartedEventAttributes:
|
328
|
+
- tagList:
|
329
|
+
- :list: member
|
330
|
+
- parentInitiatedEventId:
|
331
|
+
- :long
|
332
|
+
- workflowExecutionCompletedEventAttributes:
|
333
|
+
- decisionTaskCompletedEventId:
|
334
|
+
- :long
|
335
|
+
- completeWorkflowExecutionFailedEventAttributes:
|
336
|
+
- decisionTaskCompletedEventId:
|
337
|
+
- :long
|
338
|
+
- workflowExecutionFailedEventAttributes:
|
339
|
+
- decisionTaskCompletedEventId:
|
340
|
+
- :long
|
341
|
+
- failWorkflowExecutionFailedEventAttributes:
|
342
|
+
- decisionTaskCompletedEventId:
|
343
|
+
- :long
|
344
|
+
- workflowExecutionCanceledEventAttributes:
|
345
|
+
- decisionTaskCompletedEventId:
|
346
|
+
- :long
|
347
|
+
- cancelWorkflowExecutionFailedEventAttributes:
|
348
|
+
- decisionTaskCompletedEventId:
|
349
|
+
- :long
|
350
|
+
- workflowExecutionContinuedAsNewEventAttributes:
|
351
|
+
- decisionTaskCompletedEventId:
|
352
|
+
- :long
|
353
|
+
- tagList:
|
354
|
+
- :list: member
|
355
|
+
- continueAsNewWorkflowExecutionFailedEventAttributes:
|
356
|
+
- decisionTaskCompletedEventId:
|
357
|
+
- :long
|
358
|
+
- workflowExecutionCancelRequestedEventAttributes:
|
359
|
+
- externalInitiatedEventId:
|
360
|
+
- :long
|
361
|
+
- decisionTaskStartedEventAttributes:
|
362
|
+
- scheduledEventId:
|
363
|
+
- :long
|
364
|
+
- decisionTaskCompletedEventAttributes:
|
365
|
+
- scheduledEventId:
|
366
|
+
- :long
|
367
|
+
- startedEventId:
|
368
|
+
- :long
|
369
|
+
- decisionTaskTimedOutEventAttributes:
|
370
|
+
- scheduledEventId:
|
371
|
+
- :long
|
372
|
+
- startedEventId:
|
373
|
+
- :long
|
374
|
+
- activityTaskScheduledEventAttributes:
|
375
|
+
- decisionTaskCompletedEventId:
|
376
|
+
- :long
|
377
|
+
- activityTaskStartedEventAttributes:
|
378
|
+
- scheduledEventId:
|
379
|
+
- :long
|
380
|
+
- activityTaskCompletedEventAttributes:
|
381
|
+
- scheduledEventId:
|
382
|
+
- :long
|
383
|
+
- startedEventId:
|
384
|
+
- :long
|
385
|
+
- activityTaskFailedEventAttributes:
|
386
|
+
- scheduledEventId:
|
387
|
+
- :long
|
388
|
+
- startedEventId:
|
389
|
+
- :long
|
390
|
+
- activityTaskTimedOutEventAttributes:
|
391
|
+
- scheduledEventId:
|
392
|
+
- :long
|
393
|
+
- startedEventId:
|
394
|
+
- :long
|
395
|
+
- activityTaskCanceledEventAttributes:
|
396
|
+
- scheduledEventId:
|
397
|
+
- :long
|
398
|
+
- startedEventId:
|
399
|
+
- :long
|
400
|
+
- latestCancelRequestedEventId:
|
401
|
+
- :long
|
402
|
+
- activityTaskCancelRequestedEventAttributes:
|
403
|
+
- decisionTaskCompletedEventId:
|
404
|
+
- :long
|
405
|
+
- workflowExecutionSignaledEventAttributes:
|
406
|
+
- externalInitiatedEventId:
|
407
|
+
- :long
|
408
|
+
- markerRecordedEventAttributes:
|
409
|
+
- decisionTaskCompletedEventId:
|
410
|
+
- :long
|
411
|
+
- timerStartedEventAttributes:
|
412
|
+
- decisionTaskCompletedEventId:
|
413
|
+
- :long
|
414
|
+
- timerFiredEventAttributes:
|
415
|
+
- startedEventId:
|
416
|
+
- :long
|
417
|
+
- timerCanceledEventAttributes:
|
418
|
+
- startedEventId:
|
419
|
+
- :long
|
420
|
+
- decisionTaskCompletedEventId:
|
421
|
+
- :long
|
422
|
+
- startChildWorkflowExecutionInitiatedEventAttributes:
|
423
|
+
- decisionTaskCompletedEventId:
|
424
|
+
- :long
|
425
|
+
- tagList:
|
426
|
+
- :list: member
|
427
|
+
- childWorkflowExecutionStartedEventAttributes:
|
428
|
+
- initiatedEventId:
|
429
|
+
- :long
|
430
|
+
- childWorkflowExecutionCompletedEventAttributes:
|
431
|
+
- initiatedEventId:
|
432
|
+
- :long
|
433
|
+
- startedEventId:
|
434
|
+
- :long
|
435
|
+
- childWorkflowExecutionFailedEventAttributes:
|
436
|
+
- initiatedEventId:
|
437
|
+
- :long
|
438
|
+
- startedEventId:
|
439
|
+
- :long
|
440
|
+
- childWorkflowExecutionTimedOutEventAttributes:
|
441
|
+
- initiatedEventId:
|
442
|
+
- :long
|
443
|
+
- startedEventId:
|
444
|
+
- :long
|
445
|
+
- childWorkflowExecutionCanceledEventAttributes:
|
446
|
+
- initiatedEventId:
|
447
|
+
- :long
|
448
|
+
- startedEventId:
|
449
|
+
- :long
|
450
|
+
- childWorkflowExecutionTerminatedEventAttributes:
|
451
|
+
- initiatedEventId:
|
452
|
+
- :long
|
453
|
+
- startedEventId:
|
454
|
+
- :long
|
455
|
+
- signalExternalWorkflowExecutionInitiatedEventAttributes:
|
456
|
+
- decisionTaskCompletedEventId:
|
457
|
+
- :long
|
458
|
+
- externalWorkflowExecutionSignaledEventAttributes:
|
459
|
+
- initiatedEventId:
|
460
|
+
- :long
|
461
|
+
- signalExternalWorkflowExecutionFailedEventAttributes:
|
462
|
+
- initiatedEventId:
|
463
|
+
- :long
|
464
|
+
- decisionTaskCompletedEventId:
|
465
|
+
- :long
|
466
|
+
- externalWorkflowExecutionCancelRequestedEventAttributes:
|
467
|
+
- initiatedEventId:
|
468
|
+
- :long
|
469
|
+
- requestCancelExternalWorkflowExecutionInitiatedEventAttributes:
|
470
|
+
- decisionTaskCompletedEventId:
|
471
|
+
- :long
|
472
|
+
- requestCancelExternalWorkflowExecutionFailedEventAttributes:
|
473
|
+
- initiatedEventId:
|
474
|
+
- :long
|
475
|
+
- decisionTaskCompletedEventId:
|
476
|
+
- :long
|
477
|
+
- scheduleActivityTaskFailedEventAttributes:
|
478
|
+
- decisionTaskCompletedEventId:
|
479
|
+
- :long
|
480
|
+
- requestCancelActivityTaskFailedEventAttributes:
|
481
|
+
- decisionTaskCompletedEventId:
|
482
|
+
- :long
|
483
|
+
- startTimerFailedEventAttributes:
|
484
|
+
- decisionTaskCompletedEventId:
|
485
|
+
- :long
|
486
|
+
- cancelTimerFailedEventAttributes:
|
487
|
+
- decisionTaskCompletedEventId:
|
488
|
+
- :long
|
489
|
+
- startChildWorkflowExecutionFailedEventAttributes:
|
490
|
+
- initiatedEventId:
|
491
|
+
- :long
|
492
|
+
- decisionTaskCompletedEventId:
|
493
|
+
- :long
|
494
|
+
ListOpenWorkflowExecutions:
|
495
|
+
:input:
|
496
|
+
domain:
|
497
|
+
- :string
|
498
|
+
- :required
|
499
|
+
startTimeFilter:
|
500
|
+
- :structure:
|
501
|
+
oldestDate:
|
502
|
+
- :timestamp
|
503
|
+
- :required
|
504
|
+
latestDate:
|
505
|
+
- :timestamp
|
506
|
+
- :required
|
507
|
+
typeFilter:
|
508
|
+
- :structure:
|
509
|
+
name:
|
510
|
+
- :string
|
511
|
+
- :required
|
512
|
+
version:
|
513
|
+
- :string
|
514
|
+
tagFilter:
|
515
|
+
- :structure:
|
516
|
+
tag:
|
517
|
+
- :string
|
518
|
+
- :required
|
519
|
+
nextPageToken:
|
520
|
+
- :string
|
521
|
+
maximumPageSize:
|
522
|
+
- :integer
|
523
|
+
reverseOrder:
|
524
|
+
- :boolean
|
525
|
+
executionFilter:
|
526
|
+
- :structure:
|
527
|
+
workflowId:
|
528
|
+
- :string
|
529
|
+
- :required
|
530
|
+
:output:
|
531
|
+
- executionInfos:
|
532
|
+
- :list: member
|
533
|
+
- member:
|
534
|
+
- startTimestamp:
|
535
|
+
- :timestamp
|
536
|
+
- closeTimestamp:
|
537
|
+
- :timestamp
|
538
|
+
- tagList:
|
539
|
+
- :list: member
|
540
|
+
- cancelRequested:
|
541
|
+
- :boolean
|
542
|
+
ListClosedWorkflowExecutions:
|
543
|
+
:input:
|
544
|
+
domain:
|
545
|
+
- :string
|
546
|
+
- :required
|
547
|
+
startTimeFilter:
|
548
|
+
- :structure:
|
549
|
+
oldestDate:
|
550
|
+
- :timestamp
|
551
|
+
- :required
|
552
|
+
latestDate:
|
553
|
+
- :timestamp
|
554
|
+
closeTimeFilter:
|
555
|
+
- :structure:
|
556
|
+
oldestDate:
|
557
|
+
- :timestamp
|
558
|
+
- :required
|
559
|
+
latestDate:
|
560
|
+
- :timestamp
|
561
|
+
executionFilter:
|
562
|
+
- :structure:
|
563
|
+
workflowId:
|
564
|
+
- :string
|
565
|
+
- :required
|
566
|
+
closeStatusFilter:
|
567
|
+
- :structure:
|
568
|
+
status:
|
569
|
+
- :string
|
570
|
+
- :required
|
571
|
+
typeFilter:
|
572
|
+
- :structure:
|
573
|
+
name:
|
574
|
+
- :string
|
575
|
+
- :required
|
576
|
+
version:
|
577
|
+
- :string
|
578
|
+
tagFilter:
|
579
|
+
- :structure:
|
580
|
+
tag:
|
581
|
+
- :string
|
582
|
+
- :required
|
583
|
+
nextPageToken:
|
584
|
+
- :string
|
585
|
+
maximumPageSize:
|
586
|
+
- :integer
|
587
|
+
reverseOrder:
|
588
|
+
- :boolean
|
589
|
+
:output:
|
590
|
+
- executionInfos:
|
591
|
+
- :list: member
|
592
|
+
- member:
|
593
|
+
- startTimestamp:
|
594
|
+
- :timestamp
|
595
|
+
- closeTimestamp:
|
596
|
+
- :timestamp
|
597
|
+
- tagList:
|
598
|
+
- :list: member
|
599
|
+
- cancelRequested:
|
600
|
+
- :boolean
|
601
|
+
CountOpenWorkflowExecutions:
|
602
|
+
:input:
|
603
|
+
domain:
|
604
|
+
- :string
|
605
|
+
- :required
|
606
|
+
startTimeFilter:
|
607
|
+
- :structure:
|
608
|
+
oldestDate:
|
609
|
+
- :timestamp
|
610
|
+
- :required
|
611
|
+
latestDate:
|
612
|
+
- :timestamp
|
613
|
+
- :required
|
614
|
+
typeFilter:
|
615
|
+
- :structure:
|
616
|
+
name:
|
617
|
+
- :string
|
618
|
+
- :required
|
619
|
+
version:
|
620
|
+
- :string
|
621
|
+
tagFilter:
|
622
|
+
- :structure:
|
623
|
+
tag:
|
624
|
+
- :string
|
625
|
+
- :required
|
626
|
+
executionFilter:
|
627
|
+
- :structure:
|
628
|
+
workflowId:
|
629
|
+
- :string
|
630
|
+
- :required
|
631
|
+
:output:
|
632
|
+
- count:
|
633
|
+
- :integer
|
634
|
+
- truncated:
|
635
|
+
- :boolean
|
636
|
+
CountClosedWorkflowExecutions:
|
637
|
+
:input:
|
638
|
+
domain:
|
639
|
+
- :string
|
640
|
+
- :required
|
641
|
+
startTimeFilter:
|
642
|
+
- :structure:
|
643
|
+
oldestDate:
|
644
|
+
- :timestamp
|
645
|
+
- :required
|
646
|
+
latestDate:
|
647
|
+
- :timestamp
|
648
|
+
closeTimeFilter:
|
649
|
+
- :structure:
|
650
|
+
oldestDate:
|
651
|
+
- :timestamp
|
652
|
+
- :required
|
653
|
+
latestDate:
|
654
|
+
- :timestamp
|
655
|
+
executionFilter:
|
656
|
+
- :structure:
|
657
|
+
workflowId:
|
658
|
+
- :string
|
659
|
+
- :required
|
660
|
+
typeFilter:
|
661
|
+
- :structure:
|
662
|
+
name:
|
663
|
+
- :string
|
664
|
+
- :required
|
665
|
+
version:
|
666
|
+
- :string
|
667
|
+
tagFilter:
|
668
|
+
- :structure:
|
669
|
+
tag:
|
670
|
+
- :string
|
671
|
+
- :required
|
672
|
+
closeStatusFilter:
|
673
|
+
- :structure:
|
674
|
+
status:
|
675
|
+
- :string
|
676
|
+
- :required
|
677
|
+
:output:
|
678
|
+
- count:
|
679
|
+
- :integer
|
680
|
+
- truncated:
|
681
|
+
- :boolean
|
682
|
+
PollForActivityTask:
|
683
|
+
:input:
|
684
|
+
domain:
|
685
|
+
- :string
|
686
|
+
- :required
|
687
|
+
taskList:
|
688
|
+
- :structure:
|
689
|
+
name:
|
690
|
+
- :string
|
691
|
+
- :required
|
692
|
+
- :required
|
693
|
+
identity:
|
694
|
+
- :string
|
695
|
+
:output:
|
696
|
+
- startedEventId:
|
697
|
+
- :long
|
698
|
+
RecordActivityTaskHeartbeat:
|
699
|
+
:input:
|
700
|
+
taskToken:
|
701
|
+
- :string
|
702
|
+
- :required
|
703
|
+
details:
|
704
|
+
- :string
|
705
|
+
:output:
|
706
|
+
- cancelRequested:
|
707
|
+
- :boolean
|
708
|
+
RespondActivityTaskCompleted:
|
709
|
+
:input:
|
710
|
+
taskToken:
|
711
|
+
- :string
|
712
|
+
- :required
|
713
|
+
result:
|
714
|
+
- :string
|
715
|
+
:output: []
|
716
|
+
RespondActivityTaskCanceled:
|
717
|
+
:input:
|
718
|
+
taskToken:
|
719
|
+
- :string
|
720
|
+
- :required
|
721
|
+
details:
|
722
|
+
- :string
|
723
|
+
:output: []
|
724
|
+
RespondActivityTaskFailed:
|
725
|
+
:input:
|
726
|
+
taskToken:
|
727
|
+
- :string
|
728
|
+
- :required
|
729
|
+
reason:
|
730
|
+
- :string
|
731
|
+
details:
|
732
|
+
- :string
|
733
|
+
:output: []
|
734
|
+
PollForDecisionTask:
|
735
|
+
:input:
|
736
|
+
domain:
|
737
|
+
- :string
|
738
|
+
- :required
|
739
|
+
taskList:
|
740
|
+
- :structure:
|
741
|
+
name:
|
742
|
+
- :string
|
743
|
+
- :required
|
744
|
+
- :required
|
745
|
+
identity:
|
746
|
+
- :string
|
747
|
+
nextPageToken:
|
748
|
+
- :string
|
749
|
+
maximumPageSize:
|
750
|
+
- :integer
|
751
|
+
reverseOrder:
|
752
|
+
- :boolean
|
753
|
+
:output:
|
754
|
+
- startedEventId:
|
755
|
+
- :long
|
756
|
+
- events:
|
757
|
+
- :list: member
|
758
|
+
- member:
|
759
|
+
- eventTimestamp:
|
760
|
+
- :timestamp
|
761
|
+
- eventId:
|
762
|
+
- :long
|
763
|
+
- workflowExecutionStartedEventAttributes:
|
764
|
+
- tagList:
|
765
|
+
- :list: member
|
766
|
+
- parentInitiatedEventId:
|
767
|
+
- :long
|
768
|
+
- workflowExecutionCompletedEventAttributes:
|
769
|
+
- decisionTaskCompletedEventId:
|
770
|
+
- :long
|
771
|
+
- completeWorkflowExecutionFailedEventAttributes:
|
772
|
+
- decisionTaskCompletedEventId:
|
773
|
+
- :long
|
774
|
+
- workflowExecutionFailedEventAttributes:
|
775
|
+
- decisionTaskCompletedEventId:
|
776
|
+
- :long
|
777
|
+
- failWorkflowExecutionFailedEventAttributes:
|
778
|
+
- decisionTaskCompletedEventId:
|
779
|
+
- :long
|
780
|
+
- workflowExecutionCanceledEventAttributes:
|
781
|
+
- decisionTaskCompletedEventId:
|
782
|
+
- :long
|
783
|
+
- cancelWorkflowExecutionFailedEventAttributes:
|
784
|
+
- decisionTaskCompletedEventId:
|
785
|
+
- :long
|
786
|
+
- workflowExecutionContinuedAsNewEventAttributes:
|
787
|
+
- decisionTaskCompletedEventId:
|
788
|
+
- :long
|
789
|
+
- tagList:
|
790
|
+
- :list: member
|
791
|
+
- continueAsNewWorkflowExecutionFailedEventAttributes:
|
792
|
+
- decisionTaskCompletedEventId:
|
793
|
+
- :long
|
794
|
+
- workflowExecutionCancelRequestedEventAttributes:
|
795
|
+
- externalInitiatedEventId:
|
796
|
+
- :long
|
797
|
+
- decisionTaskStartedEventAttributes:
|
798
|
+
- scheduledEventId:
|
799
|
+
- :long
|
800
|
+
- decisionTaskCompletedEventAttributes:
|
801
|
+
- scheduledEventId:
|
802
|
+
- :long
|
803
|
+
- startedEventId:
|
804
|
+
- :long
|
805
|
+
- decisionTaskTimedOutEventAttributes:
|
806
|
+
- scheduledEventId:
|
807
|
+
- :long
|
808
|
+
- startedEventId:
|
809
|
+
- :long
|
810
|
+
- activityTaskScheduledEventAttributes:
|
811
|
+
- decisionTaskCompletedEventId:
|
812
|
+
- :long
|
813
|
+
- activityTaskStartedEventAttributes:
|
814
|
+
- scheduledEventId:
|
815
|
+
- :long
|
816
|
+
- activityTaskCompletedEventAttributes:
|
817
|
+
- scheduledEventId:
|
818
|
+
- :long
|
819
|
+
- startedEventId:
|
820
|
+
- :long
|
821
|
+
- activityTaskFailedEventAttributes:
|
822
|
+
- scheduledEventId:
|
823
|
+
- :long
|
824
|
+
- startedEventId:
|
825
|
+
- :long
|
826
|
+
- activityTaskTimedOutEventAttributes:
|
827
|
+
- scheduledEventId:
|
828
|
+
- :long
|
829
|
+
- startedEventId:
|
830
|
+
- :long
|
831
|
+
- activityTaskCanceledEventAttributes:
|
832
|
+
- scheduledEventId:
|
833
|
+
- :long
|
834
|
+
- startedEventId:
|
835
|
+
- :long
|
836
|
+
- latestCancelRequestedEventId:
|
837
|
+
- :long
|
838
|
+
- activityTaskCancelRequestedEventAttributes:
|
839
|
+
- decisionTaskCompletedEventId:
|
840
|
+
- :long
|
841
|
+
- workflowExecutionSignaledEventAttributes:
|
842
|
+
- externalInitiatedEventId:
|
843
|
+
- :long
|
844
|
+
- markerRecordedEventAttributes:
|
845
|
+
- decisionTaskCompletedEventId:
|
846
|
+
- :long
|
847
|
+
- timerStartedEventAttributes:
|
848
|
+
- decisionTaskCompletedEventId:
|
849
|
+
- :long
|
850
|
+
- timerFiredEventAttributes:
|
851
|
+
- startedEventId:
|
852
|
+
- :long
|
853
|
+
- timerCanceledEventAttributes:
|
854
|
+
- startedEventId:
|
855
|
+
- :long
|
856
|
+
- decisionTaskCompletedEventId:
|
857
|
+
- :long
|
858
|
+
- startChildWorkflowExecutionInitiatedEventAttributes:
|
859
|
+
- decisionTaskCompletedEventId:
|
860
|
+
- :long
|
861
|
+
- tagList:
|
862
|
+
- :list: member
|
863
|
+
- childWorkflowExecutionStartedEventAttributes:
|
864
|
+
- initiatedEventId:
|
865
|
+
- :long
|
866
|
+
- childWorkflowExecutionCompletedEventAttributes:
|
867
|
+
- initiatedEventId:
|
868
|
+
- :long
|
869
|
+
- startedEventId:
|
870
|
+
- :long
|
871
|
+
- childWorkflowExecutionFailedEventAttributes:
|
872
|
+
- initiatedEventId:
|
873
|
+
- :long
|
874
|
+
- startedEventId:
|
875
|
+
- :long
|
876
|
+
- childWorkflowExecutionTimedOutEventAttributes:
|
877
|
+
- initiatedEventId:
|
878
|
+
- :long
|
879
|
+
- startedEventId:
|
880
|
+
- :long
|
881
|
+
- childWorkflowExecutionCanceledEventAttributes:
|
882
|
+
- initiatedEventId:
|
883
|
+
- :long
|
884
|
+
- startedEventId:
|
885
|
+
- :long
|
886
|
+
- childWorkflowExecutionTerminatedEventAttributes:
|
887
|
+
- initiatedEventId:
|
888
|
+
- :long
|
889
|
+
- startedEventId:
|
890
|
+
- :long
|
891
|
+
- signalExternalWorkflowExecutionInitiatedEventAttributes:
|
892
|
+
- decisionTaskCompletedEventId:
|
893
|
+
- :long
|
894
|
+
- externalWorkflowExecutionSignaledEventAttributes:
|
895
|
+
- initiatedEventId:
|
896
|
+
- :long
|
897
|
+
- signalExternalWorkflowExecutionFailedEventAttributes:
|
898
|
+
- initiatedEventId:
|
899
|
+
- :long
|
900
|
+
- decisionTaskCompletedEventId:
|
901
|
+
- :long
|
902
|
+
- externalWorkflowExecutionCancelRequestedEventAttributes:
|
903
|
+
- initiatedEventId:
|
904
|
+
- :long
|
905
|
+
- requestCancelExternalWorkflowExecutionInitiatedEventAttributes:
|
906
|
+
- decisionTaskCompletedEventId:
|
907
|
+
- :long
|
908
|
+
- requestCancelExternalWorkflowExecutionFailedEventAttributes:
|
909
|
+
- initiatedEventId:
|
910
|
+
- :long
|
911
|
+
- decisionTaskCompletedEventId:
|
912
|
+
- :long
|
913
|
+
- scheduleActivityTaskFailedEventAttributes:
|
914
|
+
- decisionTaskCompletedEventId:
|
915
|
+
- :long
|
916
|
+
- requestCancelActivityTaskFailedEventAttributes:
|
917
|
+
- decisionTaskCompletedEventId:
|
918
|
+
- :long
|
919
|
+
- startTimerFailedEventAttributes:
|
920
|
+
- decisionTaskCompletedEventId:
|
921
|
+
- :long
|
922
|
+
- cancelTimerFailedEventAttributes:
|
923
|
+
- decisionTaskCompletedEventId:
|
924
|
+
- :long
|
925
|
+
- startChildWorkflowExecutionFailedEventAttributes:
|
926
|
+
- initiatedEventId:
|
927
|
+
- :long
|
928
|
+
- decisionTaskCompletedEventId:
|
929
|
+
- :long
|
930
|
+
- previousStartedEventId:
|
931
|
+
- :long
|
932
|
+
RespondDecisionTaskCompleted:
|
933
|
+
:input:
|
934
|
+
taskToken:
|
935
|
+
- :string
|
936
|
+
- :required
|
937
|
+
decisions:
|
938
|
+
- :list:
|
939
|
+
- :structure:
|
940
|
+
decisionType:
|
941
|
+
- :string
|
942
|
+
- :required
|
943
|
+
scheduleActivityTaskDecisionAttributes:
|
944
|
+
- :structure:
|
945
|
+
activityType:
|
946
|
+
- :structure:
|
947
|
+
name:
|
948
|
+
- :string
|
949
|
+
- :required
|
950
|
+
version:
|
951
|
+
- :string
|
952
|
+
- :required
|
953
|
+
- :required
|
954
|
+
activityId:
|
955
|
+
- :string
|
956
|
+
- :required
|
957
|
+
control:
|
958
|
+
- :string
|
959
|
+
input:
|
960
|
+
- :string
|
961
|
+
scheduleToCloseTimeout:
|
962
|
+
- :string
|
963
|
+
taskList:
|
964
|
+
- :structure:
|
965
|
+
name:
|
966
|
+
- :string
|
967
|
+
- :required
|
968
|
+
scheduleToStartTimeout:
|
969
|
+
- :string
|
970
|
+
startToCloseTimeout:
|
971
|
+
- :string
|
972
|
+
heartbeatTimeout:
|
973
|
+
- :string
|
974
|
+
requestCancelActivityTaskDecisionAttributes:
|
975
|
+
- :structure:
|
976
|
+
activityId:
|
977
|
+
- :string
|
978
|
+
- :required
|
979
|
+
completeWorkflowExecutionDecisionAttributes:
|
980
|
+
- :structure:
|
981
|
+
result:
|
982
|
+
- :string
|
983
|
+
failWorkflowExecutionDecisionAttributes:
|
984
|
+
- :structure:
|
985
|
+
reason:
|
986
|
+
- :string
|
987
|
+
details:
|
988
|
+
- :string
|
989
|
+
cancelWorkflowExecutionDecisionAttributes:
|
990
|
+
- :structure:
|
991
|
+
details:
|
992
|
+
- :string
|
993
|
+
continueAsNewWorkflowExecutionDecisionAttributes:
|
994
|
+
- :structure:
|
995
|
+
input:
|
996
|
+
- :string
|
997
|
+
executionStartToCloseTimeout:
|
998
|
+
- :string
|
999
|
+
taskList:
|
1000
|
+
- :structure:
|
1001
|
+
name:
|
1002
|
+
- :string
|
1003
|
+
- :required
|
1004
|
+
taskStartToCloseTimeout:
|
1005
|
+
- :string
|
1006
|
+
childPolicy:
|
1007
|
+
- :string
|
1008
|
+
tagList:
|
1009
|
+
- :list:
|
1010
|
+
- :string
|
1011
|
+
workflowTypeVersion:
|
1012
|
+
- :string
|
1013
|
+
recordMarkerDecisionAttributes:
|
1014
|
+
- :structure:
|
1015
|
+
markerName:
|
1016
|
+
- :string
|
1017
|
+
- :required
|
1018
|
+
details:
|
1019
|
+
- :string
|
1020
|
+
startTimerDecisionAttributes:
|
1021
|
+
- :structure:
|
1022
|
+
timerId:
|
1023
|
+
- :string
|
1024
|
+
- :required
|
1025
|
+
control:
|
1026
|
+
- :string
|
1027
|
+
startToFireTimeout:
|
1028
|
+
- :string
|
1029
|
+
- :required
|
1030
|
+
cancelTimerDecisionAttributes:
|
1031
|
+
- :structure:
|
1032
|
+
timerId:
|
1033
|
+
- :string
|
1034
|
+
- :required
|
1035
|
+
signalExternalWorkflowExecutionDecisionAttributes:
|
1036
|
+
- :structure:
|
1037
|
+
workflowId:
|
1038
|
+
- :string
|
1039
|
+
- :required
|
1040
|
+
runId:
|
1041
|
+
- :string
|
1042
|
+
signalName:
|
1043
|
+
- :string
|
1044
|
+
- :required
|
1045
|
+
input:
|
1046
|
+
- :string
|
1047
|
+
control:
|
1048
|
+
- :string
|
1049
|
+
requestCancelExternalWorkflowExecutionDecisionAttributes:
|
1050
|
+
- :structure:
|
1051
|
+
workflowId:
|
1052
|
+
- :string
|
1053
|
+
- :required
|
1054
|
+
runId:
|
1055
|
+
- :string
|
1056
|
+
control:
|
1057
|
+
- :string
|
1058
|
+
startChildWorkflowExecutionDecisionAttributes:
|
1059
|
+
- :structure:
|
1060
|
+
workflowType:
|
1061
|
+
- :structure:
|
1062
|
+
name:
|
1063
|
+
- :string
|
1064
|
+
- :required
|
1065
|
+
version:
|
1066
|
+
- :string
|
1067
|
+
- :required
|
1068
|
+
- :required
|
1069
|
+
workflowId:
|
1070
|
+
- :string
|
1071
|
+
- :required
|
1072
|
+
control:
|
1073
|
+
- :string
|
1074
|
+
input:
|
1075
|
+
- :string
|
1076
|
+
executionStartToCloseTimeout:
|
1077
|
+
- :string
|
1078
|
+
taskList:
|
1079
|
+
- :structure:
|
1080
|
+
name:
|
1081
|
+
- :string
|
1082
|
+
- :required
|
1083
|
+
taskStartToCloseTimeout:
|
1084
|
+
- :string
|
1085
|
+
childPolicy:
|
1086
|
+
- :string
|
1087
|
+
tagList:
|
1088
|
+
- :list:
|
1089
|
+
- :string
|
1090
|
+
executionContext:
|
1091
|
+
- :string
|
1092
|
+
:output: []
|
1093
|
+
RegisterDomain:
|
1094
|
+
:input:
|
1095
|
+
name:
|
1096
|
+
- :string
|
1097
|
+
- :required
|
1098
|
+
description:
|
1099
|
+
- :string
|
1100
|
+
workflowExecutionRetentionPeriodInDays:
|
1101
|
+
- :string
|
1102
|
+
- :required
|
1103
|
+
:output: []
|
1104
|
+
DeprecateDomain:
|
1105
|
+
:input:
|
1106
|
+
name:
|
1107
|
+
- :string
|
1108
|
+
- :required
|
1109
|
+
:output: []
|
1110
|
+
ListDomains:
|
1111
|
+
:input:
|
1112
|
+
nextPageToken:
|
1113
|
+
- :string
|
1114
|
+
registrationStatus:
|
1115
|
+
- :string
|
1116
|
+
- :required
|
1117
|
+
maximumPageSize:
|
1118
|
+
- :integer
|
1119
|
+
reverseOrder:
|
1120
|
+
- :boolean
|
1121
|
+
:output:
|
1122
|
+
- domainInfos:
|
1123
|
+
- :list: member
|
1124
|
+
DescribeDomain:
|
1125
|
+
:input:
|
1126
|
+
name:
|
1127
|
+
- :string
|
1128
|
+
- :required
|
1129
|
+
:output: []
|
1130
|
+
CountPendingActivityTasks:
|
1131
|
+
:input:
|
1132
|
+
domain:
|
1133
|
+
- :string
|
1134
|
+
- :required
|
1135
|
+
taskList:
|
1136
|
+
- :structure:
|
1137
|
+
name:
|
1138
|
+
- :string
|
1139
|
+
- :required
|
1140
|
+
- :required
|
1141
|
+
:output:
|
1142
|
+
- count:
|
1143
|
+
- :integer
|
1144
|
+
- truncated:
|
1145
|
+
- :boolean
|
1146
|
+
CountPendingDecisionTasks:
|
1147
|
+
:input:
|
1148
|
+
domain:
|
1149
|
+
- :string
|
1150
|
+
- :required
|
1151
|
+
taskList:
|
1152
|
+
- :structure:
|
1153
|
+
name:
|
1154
|
+
- :string
|
1155
|
+
- :required
|
1156
|
+
- :required
|
1157
|
+
:output:
|
1158
|
+
- count:
|
1159
|
+
- :integer
|
1160
|
+
- truncated:
|
1161
|
+
- :boolean
|
1162
|
+
:client_errors: {}
|
1163
|
+
:server_errors: {}
|