aws-sdk-core 2.7.15 → 2.7.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b4c5953705d080a3058d933a6aeb63a6ffa6c2b0
4
- data.tar.gz: 5aa83d988773c008d1a34863faa321c35ddd3d22
3
+ metadata.gz: 2217d1d5ffda36bf9368d353060fcf008c9969ed
4
+ data.tar.gz: f8e597801347fb6ed35efd9960d92e417f471fa9
5
5
  SHA512:
6
- metadata.gz: bb6702b8cc94d10cd076d425737ff1e6b52f493b7fd673fe791e628b8001a3bb514345b2fe70b09218dde458e5d3ba6728ff06bea78d6c035689fac89d83e8d7
7
- data.tar.gz: 0d6e86a9e35b2aacf9820c8ad29f76d9ae54cde1cadc6dfd114ffdd60a2606f2ea723c20de166c7c7982d957eb763a7a70e959def30403c0246711be50b9f61a
6
+ metadata.gz: 50825eebaf59a6009dd19e76cdd935e6b97f12ee7273ccff73e058d7850f563dea8a63d7bd20732408d1117aab3a6f25cf58bd7db8506d649f68541372933554
7
+ data.tar.gz: 9a233875e4b0a0d1a2079e1b255ae5f68cf15c14619cd3e39472d58ae3d7c00bf92116c74aad4eeed1aba1d2b7141270c0b54a6a63cf35221ca2837fcccf4f13
@@ -111,6 +111,19 @@
111
111
  {"shape":"InternalServerError"}
112
112
  ]
113
113
  },
114
+ "DescribeTimeToLive":{
115
+ "name":"DescribeTimeToLive",
116
+ "http":{
117
+ "method":"POST",
118
+ "requestUri":"/"
119
+ },
120
+ "input":{"shape":"DescribeTimeToLiveInput"},
121
+ "output":{"shape":"DescribeTimeToLiveOutput"},
122
+ "errors":[
123
+ {"shape":"ResourceNotFoundException"},
124
+ {"shape":"InternalServerError"}
125
+ ]
126
+ },
114
127
  "GetItem":{
115
128
  "name":"GetItem",
116
129
  "http":{
@@ -252,6 +265,21 @@
252
265
  {"shape":"LimitExceededException"},
253
266
  {"shape":"InternalServerError"}
254
267
  ]
268
+ },
269
+ "UpdateTimeToLive":{
270
+ "name":"UpdateTimeToLive",
271
+ "http":{
272
+ "method":"POST",
273
+ "requestUri":"/"
274
+ },
275
+ "input":{"shape":"UpdateTimeToLiveInput"},
276
+ "output":{"shape":"UpdateTimeToLiveOutput"},
277
+ "errors":[
278
+ {"shape":"ResourceInUseException"},
279
+ {"shape":"ResourceNotFoundException"},
280
+ {"shape":"LimitExceededException"},
281
+ {"shape":"InternalServerError"}
282
+ ]
255
283
  }
256
284
  },
257
285
  "shapes":{
@@ -567,6 +595,19 @@
567
595
  "Table":{"shape":"TableDescription"}
568
596
  }
569
597
  },
598
+ "DescribeTimeToLiveInput":{
599
+ "type":"structure",
600
+ "required":["TableName"],
601
+ "members":{
602
+ "TableName":{"shape":"TableName"}
603
+ }
604
+ },
605
+ "DescribeTimeToLiveOutput":{
606
+ "type":"structure",
607
+ "members":{
608
+ "TimeToLiveDescription":{"shape":"TimeToLiveDescription"}
609
+ }
610
+ },
570
611
  "ErrorMessage":{"type":"string"},
571
612
  "ExpectedAttributeMap":{
572
613
  "type":"map",
@@ -1228,6 +1269,39 @@
1228
1269
  "max":256,
1229
1270
  "min":0
1230
1271
  },
1272
+ "TimeToLiveAttributeName":{
1273
+ "type":"string",
1274
+ "max":255,
1275
+ "min":1
1276
+ },
1277
+ "TimeToLiveDescription":{
1278
+ "type":"structure",
1279
+ "members":{
1280
+ "TimeToLiveStatus":{"shape":"TimeToLiveStatus"},
1281
+ "AttributeName":{"shape":"TimeToLiveAttributeName"}
1282
+ }
1283
+ },
1284
+ "TimeToLiveEnabled":{"type":"boolean"},
1285
+ "TimeToLiveSpecification":{
1286
+ "type":"structure",
1287
+ "required":[
1288
+ "Enabled",
1289
+ "AttributeName"
1290
+ ],
1291
+ "members":{
1292
+ "Enabled":{"shape":"TimeToLiveEnabled"},
1293
+ "AttributeName":{"shape":"TimeToLiveAttributeName"}
1294
+ }
1295
+ },
1296
+ "TimeToLiveStatus":{
1297
+ "type":"string",
1298
+ "enum":[
1299
+ "ENABLING",
1300
+ "DISABLING",
1301
+ "ENABLED",
1302
+ "DISABLED"
1303
+ ]
1304
+ },
1231
1305
  "UntagResourceInput":{
1232
1306
  "type":"structure",
1233
1307
  "required":[
@@ -1297,6 +1371,23 @@
1297
1371
  "TableDescription":{"shape":"TableDescription"}
1298
1372
  }
1299
1373
  },
1374
+ "UpdateTimeToLiveInput":{
1375
+ "type":"structure",
1376
+ "required":[
1377
+ "TableName",
1378
+ "TimeToLiveSpecification"
1379
+ ],
1380
+ "members":{
1381
+ "TableName":{"shape":"TableName"},
1382
+ "TimeToLiveSpecification":{"shape":"TimeToLiveSpecification"}
1383
+ }
1384
+ },
1385
+ "UpdateTimeToLiveOutput":{
1386
+ "type":"structure",
1387
+ "members":{
1388
+ "TimeToLiveSpecification":{"shape":"TimeToLiveSpecification"}
1389
+ }
1390
+ },
1300
1391
  "WriteRequest":{
1301
1392
  "type":"structure",
1302
1393
  "members":{
@@ -2530,6 +2530,7 @@
2530
2530
  "EvalDecision":{"shape":"PolicyEvaluationDecisionType"},
2531
2531
  "MatchedStatements":{"shape":"StatementListType"},
2532
2532
  "MissingContextValues":{"shape":"ContextKeyNamesResultListType"},
2533
+ "OrganizationsDecisionDetail":{"shape":"OrganizationsDecisionDetail"},
2533
2534
  "EvalDecisionDetails":{"shape":"EvalDecisionDetailsType"},
2534
2535
  "ResourceSpecificResults":{"shape":"ResourceSpecificResultListType"}
2535
2536
  }
@@ -3512,6 +3513,12 @@
3512
3513
  "max":255,
3513
3514
  "min":1
3514
3515
  },
3516
+ "OrganizationsDecisionDetail":{
3517
+ "type":"structure",
3518
+ "members":{
3519
+ "AllowedByOrganizations":{"shape":"booleanType"}
3520
+ }
3521
+ },
3515
3522
  "PasswordPolicy":{
3516
3523
  "type":"structure",
3517
3524
  "members":{
@@ -138,26 +138,26 @@
138
138
  "ListSAMLProviders": {
139
139
  "result_key": "SAMLProviderList"
140
140
  },
141
- "ListServerCertificates": {
141
+ "ListSSHPublicKeys": {
142
142
  "input_token": "Marker",
143
143
  "limit_key": "MaxItems",
144
144
  "more_results": "IsTruncated",
145
145
  "output_token": "Marker",
146
- "result_key": "ServerCertificateMetadataList"
146
+ "result_key": "SSHPublicKeys"
147
147
  },
148
- "ListSigningCertificates": {
148
+ "ListServerCertificates": {
149
149
  "input_token": "Marker",
150
150
  "limit_key": "MaxItems",
151
151
  "more_results": "IsTruncated",
152
152
  "output_token": "Marker",
153
- "result_key": "Certificates"
153
+ "result_key": "ServerCertificateMetadataList"
154
154
  },
155
- "ListSSHPublicKeys": {
155
+ "ListSigningCertificates": {
156
156
  "input_token": "Marker",
157
157
  "limit_key": "MaxItems",
158
158
  "more_results": "IsTruncated",
159
159
  "output_token": "Marker",
160
- "result_key": "SSHPublicKeys"
160
+ "result_key": "Certificates"
161
161
  },
162
162
  "ListUserPolicies": {
163
163
  "input_token": "Marker",
@@ -0,0 +1,1664 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2017-01-17",
5
+ "endpointPrefix":"mturk-requester",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"json",
8
+ "serviceFullName":"Amazon Mechanical Turk Requester Service",
9
+ "signatureVersion":"v4",
10
+ "targetPrefix":"MTurkRequesterServiceV20170117",
11
+ "uid":"mturk-requester-2017-01-17"
12
+ },
13
+ "operations":{
14
+ "AcceptQualificationRequest":{
15
+ "name":"AcceptQualificationRequest",
16
+ "http":{
17
+ "method":"POST",
18
+ "requestUri":"/"
19
+ },
20
+ "input":{"shape":"AcceptQualificationRequestRequest"},
21
+ "output":{"shape":"AcceptQualificationRequestResponse"},
22
+ "errors":[
23
+ {"shape":"ServiceFault"},
24
+ {"shape":"RequestError"}
25
+ ]
26
+ },
27
+ "ApproveAssignment":{
28
+ "name":"ApproveAssignment",
29
+ "http":{
30
+ "method":"POST",
31
+ "requestUri":"/"
32
+ },
33
+ "input":{"shape":"ApproveAssignmentRequest"},
34
+ "output":{"shape":"ApproveAssignmentResponse"},
35
+ "errors":[
36
+ {"shape":"ServiceFault"},
37
+ {"shape":"RequestError"}
38
+ ],
39
+ "idempotent":true
40
+ },
41
+ "AssociateQualificationWithWorker":{
42
+ "name":"AssociateQualificationWithWorker",
43
+ "http":{
44
+ "method":"POST",
45
+ "requestUri":"/"
46
+ },
47
+ "input":{"shape":"AssociateQualificationWithWorkerRequest"},
48
+ "output":{"shape":"AssociateQualificationWithWorkerResponse"},
49
+ "errors":[
50
+ {"shape":"ServiceFault"},
51
+ {"shape":"RequestError"}
52
+ ]
53
+ },
54
+ "CreateAdditionalAssignmentsForHIT":{
55
+ "name":"CreateAdditionalAssignmentsForHIT",
56
+ "http":{
57
+ "method":"POST",
58
+ "requestUri":"/"
59
+ },
60
+ "input":{"shape":"CreateAdditionalAssignmentsForHITRequest"},
61
+ "output":{"shape":"CreateAdditionalAssignmentsForHITResponse"},
62
+ "errors":[
63
+ {"shape":"ServiceFault"},
64
+ {"shape":"RequestError"}
65
+ ]
66
+ },
67
+ "CreateHIT":{
68
+ "name":"CreateHIT",
69
+ "http":{
70
+ "method":"POST",
71
+ "requestUri":"/"
72
+ },
73
+ "input":{"shape":"CreateHITRequest"},
74
+ "output":{"shape":"CreateHITResponse"},
75
+ "errors":[
76
+ {"shape":"ServiceFault"},
77
+ {"shape":"RequestError"}
78
+ ]
79
+ },
80
+ "CreateHITType":{
81
+ "name":"CreateHITType",
82
+ "http":{
83
+ "method":"POST",
84
+ "requestUri":"/"
85
+ },
86
+ "input":{"shape":"CreateHITTypeRequest"},
87
+ "output":{"shape":"CreateHITTypeResponse"},
88
+ "errors":[
89
+ {"shape":"ServiceFault"},
90
+ {"shape":"RequestError"}
91
+ ],
92
+ "idempotent":true
93
+ },
94
+ "CreateHITWithHITType":{
95
+ "name":"CreateHITWithHITType",
96
+ "http":{
97
+ "method":"POST",
98
+ "requestUri":"/"
99
+ },
100
+ "input":{"shape":"CreateHITWithHITTypeRequest"},
101
+ "output":{"shape":"CreateHITWithHITTypeResponse"},
102
+ "errors":[
103
+ {"shape":"ServiceFault"},
104
+ {"shape":"RequestError"}
105
+ ]
106
+ },
107
+ "CreateQualificationType":{
108
+ "name":"CreateQualificationType",
109
+ "http":{
110
+ "method":"POST",
111
+ "requestUri":"/"
112
+ },
113
+ "input":{"shape":"CreateQualificationTypeRequest"},
114
+ "output":{"shape":"CreateQualificationTypeResponse"},
115
+ "errors":[
116
+ {"shape":"ServiceFault"},
117
+ {"shape":"RequestError"}
118
+ ]
119
+ },
120
+ "CreateWorkerBlock":{
121
+ "name":"CreateWorkerBlock",
122
+ "http":{
123
+ "method":"POST",
124
+ "requestUri":"/"
125
+ },
126
+ "input":{"shape":"CreateWorkerBlockRequest"},
127
+ "output":{"shape":"CreateWorkerBlockResponse"},
128
+ "errors":[
129
+ {"shape":"ServiceFault"},
130
+ {"shape":"RequestError"}
131
+ ]
132
+ },
133
+ "DeleteHIT":{
134
+ "name":"DeleteHIT",
135
+ "http":{
136
+ "method":"POST",
137
+ "requestUri":"/"
138
+ },
139
+ "input":{"shape":"DeleteHITRequest"},
140
+ "output":{"shape":"DeleteHITResponse"},
141
+ "errors":[
142
+ {"shape":"ServiceFault"},
143
+ {"shape":"RequestError"}
144
+ ],
145
+ "idempotent":true
146
+ },
147
+ "DeleteQualificationType":{
148
+ "name":"DeleteQualificationType",
149
+ "http":{
150
+ "method":"POST",
151
+ "requestUri":"/"
152
+ },
153
+ "input":{"shape":"DeleteQualificationTypeRequest"},
154
+ "output":{"shape":"DeleteQualificationTypeResponse"},
155
+ "errors":[
156
+ {"shape":"ServiceFault"},
157
+ {"shape":"RequestError"}
158
+ ],
159
+ "idempotent":true
160
+ },
161
+ "DeleteWorkerBlock":{
162
+ "name":"DeleteWorkerBlock",
163
+ "http":{
164
+ "method":"POST",
165
+ "requestUri":"/"
166
+ },
167
+ "input":{"shape":"DeleteWorkerBlockRequest"},
168
+ "output":{"shape":"DeleteWorkerBlockResponse"},
169
+ "errors":[
170
+ {"shape":"ServiceFault"},
171
+ {"shape":"RequestError"}
172
+ ],
173
+ "idempotent":true
174
+ },
175
+ "DisassociateQualificationFromWorker":{
176
+ "name":"DisassociateQualificationFromWorker",
177
+ "http":{
178
+ "method":"POST",
179
+ "requestUri":"/"
180
+ },
181
+ "input":{"shape":"DisassociateQualificationFromWorkerRequest"},
182
+ "output":{"shape":"DisassociateQualificationFromWorkerResponse"},
183
+ "errors":[
184
+ {"shape":"ServiceFault"},
185
+ {"shape":"RequestError"}
186
+ ]
187
+ },
188
+ "GetAccountBalance":{
189
+ "name":"GetAccountBalance",
190
+ "http":{
191
+ "method":"POST",
192
+ "requestUri":"/"
193
+ },
194
+ "input":{"shape":"GetAccountBalanceRequest"},
195
+ "output":{"shape":"GetAccountBalanceResponse"},
196
+ "errors":[
197
+ {"shape":"ServiceFault"},
198
+ {"shape":"RequestError"}
199
+ ],
200
+ "idempotent":true
201
+ },
202
+ "GetAssignment":{
203
+ "name":"GetAssignment",
204
+ "http":{
205
+ "method":"POST",
206
+ "requestUri":"/"
207
+ },
208
+ "input":{"shape":"GetAssignmentRequest"},
209
+ "output":{"shape":"GetAssignmentResponse"},
210
+ "errors":[
211
+ {"shape":"ServiceFault"},
212
+ {"shape":"RequestError"}
213
+ ],
214
+ "idempotent":true
215
+ },
216
+ "GetFileUploadURL":{
217
+ "name":"GetFileUploadURL",
218
+ "http":{
219
+ "method":"POST",
220
+ "requestUri":"/"
221
+ },
222
+ "input":{"shape":"GetFileUploadURLRequest"},
223
+ "output":{"shape":"GetFileUploadURLResponse"},
224
+ "errors":[
225
+ {"shape":"ServiceFault"},
226
+ {"shape":"RequestError"}
227
+ ],
228
+ "idempotent":true
229
+ },
230
+ "GetHIT":{
231
+ "name":"GetHIT",
232
+ "http":{
233
+ "method":"POST",
234
+ "requestUri":"/"
235
+ },
236
+ "input":{"shape":"GetHITRequest"},
237
+ "output":{"shape":"GetHITResponse"},
238
+ "errors":[
239
+ {"shape":"ServiceFault"},
240
+ {"shape":"RequestError"}
241
+ ],
242
+ "idempotent":true
243
+ },
244
+ "GetQualificationScore":{
245
+ "name":"GetQualificationScore",
246
+ "http":{
247
+ "method":"POST",
248
+ "requestUri":"/"
249
+ },
250
+ "input":{"shape":"GetQualificationScoreRequest"},
251
+ "output":{"shape":"GetQualificationScoreResponse"},
252
+ "errors":[
253
+ {"shape":"ServiceFault"},
254
+ {"shape":"RequestError"}
255
+ ],
256
+ "idempotent":true
257
+ },
258
+ "GetQualificationType":{
259
+ "name":"GetQualificationType",
260
+ "http":{
261
+ "method":"POST",
262
+ "requestUri":"/"
263
+ },
264
+ "input":{"shape":"GetQualificationTypeRequest"},
265
+ "output":{"shape":"GetQualificationTypeResponse"},
266
+ "errors":[
267
+ {"shape":"ServiceFault"},
268
+ {"shape":"RequestError"}
269
+ ],
270
+ "idempotent":true
271
+ },
272
+ "ListAssignmentsForHIT":{
273
+ "name":"ListAssignmentsForHIT",
274
+ "http":{
275
+ "method":"POST",
276
+ "requestUri":"/"
277
+ },
278
+ "input":{"shape":"ListAssignmentsForHITRequest"},
279
+ "output":{"shape":"ListAssignmentsForHITResponse"},
280
+ "errors":[
281
+ {"shape":"ServiceFault"},
282
+ {"shape":"RequestError"}
283
+ ],
284
+ "idempotent":true
285
+ },
286
+ "ListBonusPayments":{
287
+ "name":"ListBonusPayments",
288
+ "http":{
289
+ "method":"POST",
290
+ "requestUri":"/"
291
+ },
292
+ "input":{"shape":"ListBonusPaymentsRequest"},
293
+ "output":{"shape":"ListBonusPaymentsResponse"},
294
+ "errors":[
295
+ {"shape":"ServiceFault"},
296
+ {"shape":"RequestError"}
297
+ ],
298
+ "idempotent":true
299
+ },
300
+ "ListHITs":{
301
+ "name":"ListHITs",
302
+ "http":{
303
+ "method":"POST",
304
+ "requestUri":"/"
305
+ },
306
+ "input":{"shape":"ListHITsRequest"},
307
+ "output":{"shape":"ListHITsResponse"},
308
+ "errors":[
309
+ {"shape":"ServiceFault"},
310
+ {"shape":"RequestError"}
311
+ ],
312
+ "idempotent":true
313
+ },
314
+ "ListHITsForQualificationType":{
315
+ "name":"ListHITsForQualificationType",
316
+ "http":{
317
+ "method":"POST",
318
+ "requestUri":"/"
319
+ },
320
+ "input":{"shape":"ListHITsForQualificationTypeRequest"},
321
+ "output":{"shape":"ListHITsForQualificationTypeResponse"},
322
+ "errors":[
323
+ {"shape":"ServiceFault"},
324
+ {"shape":"RequestError"}
325
+ ],
326
+ "idempotent":true
327
+ },
328
+ "ListQualificationRequests":{
329
+ "name":"ListQualificationRequests",
330
+ "http":{
331
+ "method":"POST",
332
+ "requestUri":"/"
333
+ },
334
+ "input":{"shape":"ListQualificationRequestsRequest"},
335
+ "output":{"shape":"ListQualificationRequestsResponse"},
336
+ "errors":[
337
+ {"shape":"ServiceFault"},
338
+ {"shape":"RequestError"}
339
+ ],
340
+ "idempotent":true
341
+ },
342
+ "ListQualificationTypes":{
343
+ "name":"ListQualificationTypes",
344
+ "http":{
345
+ "method":"POST",
346
+ "requestUri":"/"
347
+ },
348
+ "input":{"shape":"ListQualificationTypesRequest"},
349
+ "output":{"shape":"ListQualificationTypesResponse"},
350
+ "errors":[
351
+ {"shape":"ServiceFault"},
352
+ {"shape":"RequestError"}
353
+ ],
354
+ "idempotent":true
355
+ },
356
+ "ListReviewPolicyResultsForHIT":{
357
+ "name":"ListReviewPolicyResultsForHIT",
358
+ "http":{
359
+ "method":"POST",
360
+ "requestUri":"/"
361
+ },
362
+ "input":{"shape":"ListReviewPolicyResultsForHITRequest"},
363
+ "output":{"shape":"ListReviewPolicyResultsForHITResponse"},
364
+ "errors":[
365
+ {"shape":"ServiceFault"},
366
+ {"shape":"RequestError"}
367
+ ],
368
+ "idempotent":true
369
+ },
370
+ "ListReviewableHITs":{
371
+ "name":"ListReviewableHITs",
372
+ "http":{
373
+ "method":"POST",
374
+ "requestUri":"/"
375
+ },
376
+ "input":{"shape":"ListReviewableHITsRequest"},
377
+ "output":{"shape":"ListReviewableHITsResponse"},
378
+ "errors":[
379
+ {"shape":"ServiceFault"},
380
+ {"shape":"RequestError"}
381
+ ],
382
+ "idempotent":true
383
+ },
384
+ "ListWorkerBlocks":{
385
+ "name":"ListWorkerBlocks",
386
+ "http":{
387
+ "method":"POST",
388
+ "requestUri":"/"
389
+ },
390
+ "input":{"shape":"ListWorkerBlocksRequest"},
391
+ "output":{"shape":"ListWorkerBlocksResponse"},
392
+ "errors":[
393
+ {"shape":"ServiceFault"},
394
+ {"shape":"RequestError"}
395
+ ],
396
+ "idempotent":true
397
+ },
398
+ "ListWorkersWithQualificationType":{
399
+ "name":"ListWorkersWithQualificationType",
400
+ "http":{
401
+ "method":"POST",
402
+ "requestUri":"/"
403
+ },
404
+ "input":{"shape":"ListWorkersWithQualificationTypeRequest"},
405
+ "output":{"shape":"ListWorkersWithQualificationTypeResponse"},
406
+ "errors":[
407
+ {"shape":"ServiceFault"},
408
+ {"shape":"RequestError"}
409
+ ],
410
+ "idempotent":true
411
+ },
412
+ "NotifyWorkers":{
413
+ "name":"NotifyWorkers",
414
+ "http":{
415
+ "method":"POST",
416
+ "requestUri":"/"
417
+ },
418
+ "input":{"shape":"NotifyWorkersRequest"},
419
+ "output":{"shape":"NotifyWorkersResponse"},
420
+ "errors":[
421
+ {"shape":"ServiceFault"},
422
+ {"shape":"RequestError"}
423
+ ]
424
+ },
425
+ "RejectAssignment":{
426
+ "name":"RejectAssignment",
427
+ "http":{
428
+ "method":"POST",
429
+ "requestUri":"/"
430
+ },
431
+ "input":{"shape":"RejectAssignmentRequest"},
432
+ "output":{"shape":"RejectAssignmentResponse"},
433
+ "errors":[
434
+ {"shape":"ServiceFault"},
435
+ {"shape":"RequestError"}
436
+ ],
437
+ "idempotent":true
438
+ },
439
+ "RejectQualificationRequest":{
440
+ "name":"RejectQualificationRequest",
441
+ "http":{
442
+ "method":"POST",
443
+ "requestUri":"/"
444
+ },
445
+ "input":{"shape":"RejectQualificationRequestRequest"},
446
+ "output":{"shape":"RejectQualificationRequestResponse"},
447
+ "errors":[
448
+ {"shape":"ServiceFault"},
449
+ {"shape":"RequestError"}
450
+ ]
451
+ },
452
+ "SendBonus":{
453
+ "name":"SendBonus",
454
+ "http":{
455
+ "method":"POST",
456
+ "requestUri":"/"
457
+ },
458
+ "input":{"shape":"SendBonusRequest"},
459
+ "output":{"shape":"SendBonusResponse"},
460
+ "errors":[
461
+ {"shape":"ServiceFault"},
462
+ {"shape":"RequestError"}
463
+ ]
464
+ },
465
+ "SendTestEventNotification":{
466
+ "name":"SendTestEventNotification",
467
+ "http":{
468
+ "method":"POST",
469
+ "requestUri":"/"
470
+ },
471
+ "input":{"shape":"SendTestEventNotificationRequest"},
472
+ "output":{"shape":"SendTestEventNotificationResponse"},
473
+ "errors":[
474
+ {"shape":"ServiceFault"},
475
+ {"shape":"RequestError"}
476
+ ]
477
+ },
478
+ "UpdateExpirationForHIT":{
479
+ "name":"UpdateExpirationForHIT",
480
+ "http":{
481
+ "method":"POST",
482
+ "requestUri":"/"
483
+ },
484
+ "input":{"shape":"UpdateExpirationForHITRequest"},
485
+ "output":{"shape":"UpdateExpirationForHITResponse"},
486
+ "errors":[
487
+ {"shape":"ServiceFault"},
488
+ {"shape":"RequestError"}
489
+ ],
490
+ "idempotent":true
491
+ },
492
+ "UpdateHITReviewStatus":{
493
+ "name":"UpdateHITReviewStatus",
494
+ "http":{
495
+ "method":"POST",
496
+ "requestUri":"/"
497
+ },
498
+ "input":{"shape":"UpdateHITReviewStatusRequest"},
499
+ "output":{"shape":"UpdateHITReviewStatusResponse"},
500
+ "errors":[
501
+ {"shape":"ServiceFault"},
502
+ {"shape":"RequestError"}
503
+ ],
504
+ "idempotent":true
505
+ },
506
+ "UpdateHITTypeOfHIT":{
507
+ "name":"UpdateHITTypeOfHIT",
508
+ "http":{
509
+ "method":"POST",
510
+ "requestUri":"/"
511
+ },
512
+ "input":{"shape":"UpdateHITTypeOfHITRequest"},
513
+ "output":{"shape":"UpdateHITTypeOfHITResponse"},
514
+ "errors":[
515
+ {"shape":"ServiceFault"},
516
+ {"shape":"RequestError"}
517
+ ],
518
+ "idempotent":true
519
+ },
520
+ "UpdateNotificationSettings":{
521
+ "name":"UpdateNotificationSettings",
522
+ "http":{
523
+ "method":"POST",
524
+ "requestUri":"/"
525
+ },
526
+ "input":{"shape":"UpdateNotificationSettingsRequest"},
527
+ "output":{"shape":"UpdateNotificationSettingsResponse"},
528
+ "errors":[
529
+ {"shape":"ServiceFault"},
530
+ {"shape":"RequestError"}
531
+ ],
532
+ "idempotent":true
533
+ },
534
+ "UpdateQualificationType":{
535
+ "name":"UpdateQualificationType",
536
+ "http":{
537
+ "method":"POST",
538
+ "requestUri":"/"
539
+ },
540
+ "input":{"shape":"UpdateQualificationTypeRequest"},
541
+ "output":{"shape":"UpdateQualificationTypeResponse"},
542
+ "errors":[
543
+ {"shape":"ServiceFault"},
544
+ {"shape":"RequestError"}
545
+ ]
546
+ }
547
+ },
548
+ "shapes":{
549
+ "AcceptQualificationRequestRequest":{
550
+ "type":"structure",
551
+ "required":["QualificationRequestId"],
552
+ "members":{
553
+ "QualificationRequestId":{"shape":"String"},
554
+ "IntegerValue":{"shape":"Integer"}
555
+ }
556
+ },
557
+ "AcceptQualificationRequestResponse":{
558
+ "type":"structure",
559
+ "members":{
560
+ }
561
+ },
562
+ "ApproveAssignmentRequest":{
563
+ "type":"structure",
564
+ "required":["AssignmentId"],
565
+ "members":{
566
+ "AssignmentId":{"shape":"EntityId"},
567
+ "RequesterFeedback":{"shape":"String"},
568
+ "OverrideRejection":{"shape":"Boolean"}
569
+ }
570
+ },
571
+ "ApproveAssignmentResponse":{
572
+ "type":"structure",
573
+ "members":{
574
+ }
575
+ },
576
+ "Assignment":{
577
+ "type":"structure",
578
+ "members":{
579
+ "AssignmentId":{"shape":"EntityId"},
580
+ "WorkerId":{"shape":"CustomerId"},
581
+ "HITId":{"shape":"EntityId"},
582
+ "AssignmentStatus":{"shape":"AssignmentStatus"},
583
+ "AutoApprovalTime":{"shape":"Timestamp"},
584
+ "AcceptTime":{"shape":"Timestamp"},
585
+ "SubmitTime":{"shape":"Timestamp"},
586
+ "ApprovalTime":{"shape":"Timestamp"},
587
+ "RejectionTime":{"shape":"Timestamp"},
588
+ "Deadline":{"shape":"Timestamp"},
589
+ "Answer":{"shape":"String"},
590
+ "RequesterFeedback":{"shape":"String"}
591
+ }
592
+ },
593
+ "AssignmentList":{
594
+ "type":"list",
595
+ "member":{"shape":"Assignment"}
596
+ },
597
+ "AssignmentStatus":{
598
+ "type":"string",
599
+ "enum":[
600
+ "Submitted",
601
+ "Approved",
602
+ "Rejected"
603
+ ]
604
+ },
605
+ "AssignmentStatusList":{
606
+ "type":"list",
607
+ "member":{"shape":"AssignmentStatus"}
608
+ },
609
+ "AssociateQualificationWithWorkerRequest":{
610
+ "type":"structure",
611
+ "required":[
612
+ "QualificationTypeId",
613
+ "WorkerId"
614
+ ],
615
+ "members":{
616
+ "QualificationTypeId":{"shape":"EntityId"},
617
+ "WorkerId":{"shape":"CustomerId"},
618
+ "IntegerValue":{"shape":"Integer"},
619
+ "SendNotification":{"shape":"Boolean"}
620
+ }
621
+ },
622
+ "AssociateQualificationWithWorkerResponse":{
623
+ "type":"structure",
624
+ "members":{
625
+ }
626
+ },
627
+ "BonusPayment":{
628
+ "type":"structure",
629
+ "members":{
630
+ "WorkerId":{"shape":"CustomerId"},
631
+ "BonusAmount":{"shape":"NumericValue"},
632
+ "AssignmentId":{"shape":"EntityId"},
633
+ "Reason":{"shape":"String"},
634
+ "GrantTime":{"shape":"Timestamp"}
635
+ }
636
+ },
637
+ "BonusPaymentList":{
638
+ "type":"list",
639
+ "member":{"shape":"BonusPayment"}
640
+ },
641
+ "Boolean":{"type":"boolean"},
642
+ "Comparator":{
643
+ "type":"string",
644
+ "enum":[
645
+ "LessThan",
646
+ "LessThanOrEqualTo",
647
+ "GreaterThan",
648
+ "GreaterThanOrEqualTo",
649
+ "EqualTo",
650
+ "NotEqualTo",
651
+ "Exists",
652
+ "DoesNotExist",
653
+ "In",
654
+ "NotIn"
655
+ ]
656
+ },
657
+ "CountryParameters":{
658
+ "type":"string",
659
+ "max":2,
660
+ "min":2
661
+ },
662
+ "CreateAdditionalAssignmentsForHITRequest":{
663
+ "type":"structure",
664
+ "required":["HITId"],
665
+ "members":{
666
+ "HITId":{"shape":"EntityId"},
667
+ "NumberOfAdditionalAssignments":{"shape":"Integer"},
668
+ "UniqueRequestToken":{"shape":"IdempotencyToken"}
669
+ }
670
+ },
671
+ "CreateAdditionalAssignmentsForHITResponse":{
672
+ "type":"structure",
673
+ "members":{
674
+ }
675
+ },
676
+ "CreateHITRequest":{
677
+ "type":"structure",
678
+ "required":[
679
+ "LifetimeInSeconds",
680
+ "AssignmentDurationInSeconds",
681
+ "Reward",
682
+ "Title",
683
+ "Description"
684
+ ],
685
+ "members":{
686
+ "MaxAssignments":{"shape":"Integer"},
687
+ "AutoApprovalDelayInSeconds":{"shape":"Long"},
688
+ "LifetimeInSeconds":{"shape":"Long"},
689
+ "AssignmentDurationInSeconds":{"shape":"Long"},
690
+ "Reward":{"shape":"NumericValue"},
691
+ "Title":{"shape":"String"},
692
+ "Keywords":{"shape":"String"},
693
+ "Description":{"shape":"String"},
694
+ "Question":{"shape":"String"},
695
+ "RequesterAnnotation":{"shape":"String"},
696
+ "QualificationRequirements":{"shape":"QualificationRequirementList"},
697
+ "UniqueRequestToken":{"shape":"IdempotencyToken"},
698
+ "AssignmentReviewPolicy":{"shape":"ReviewPolicy"},
699
+ "HITReviewPolicy":{"shape":"ReviewPolicy"},
700
+ "HITLayoutId":{"shape":"EntityId"},
701
+ "HITLayoutParameters":{"shape":"HITLayoutParameterList"}
702
+ }
703
+ },
704
+ "CreateHITResponse":{
705
+ "type":"structure",
706
+ "members":{
707
+ "HIT":{"shape":"HIT"}
708
+ }
709
+ },
710
+ "CreateHITTypeRequest":{
711
+ "type":"structure",
712
+ "required":[
713
+ "AssignmentDurationInSeconds",
714
+ "Reward",
715
+ "Title",
716
+ "Description"
717
+ ],
718
+ "members":{
719
+ "AutoApprovalDelayInSeconds":{"shape":"Long"},
720
+ "AssignmentDurationInSeconds":{"shape":"Long"},
721
+ "Reward":{"shape":"NumericValue"},
722
+ "Title":{"shape":"String"},
723
+ "Keywords":{"shape":"String"},
724
+ "Description":{"shape":"String"},
725
+ "QualificationRequirements":{"shape":"QualificationRequirementList"}
726
+ }
727
+ },
728
+ "CreateHITTypeResponse":{
729
+ "type":"structure",
730
+ "members":{
731
+ "HITTypeId":{"shape":"EntityId"}
732
+ }
733
+ },
734
+ "CreateHITWithHITTypeRequest":{
735
+ "type":"structure",
736
+ "required":[
737
+ "HITTypeId",
738
+ "LifetimeInSeconds"
739
+ ],
740
+ "members":{
741
+ "HITTypeId":{"shape":"EntityId"},
742
+ "MaxAssignments":{"shape":"Integer"},
743
+ "LifetimeInSeconds":{"shape":"Long"},
744
+ "Question":{"shape":"String"},
745
+ "RequesterAnnotation":{"shape":"String"},
746
+ "UniqueRequestToken":{"shape":"IdempotencyToken"},
747
+ "AssignmentReviewPolicy":{"shape":"ReviewPolicy"},
748
+ "HITReviewPolicy":{"shape":"ReviewPolicy"},
749
+ "HITLayoutId":{"shape":"EntityId"},
750
+ "HITLayoutParameters":{"shape":"HITLayoutParameterList"}
751
+ }
752
+ },
753
+ "CreateHITWithHITTypeResponse":{
754
+ "type":"structure",
755
+ "members":{
756
+ "HIT":{"shape":"HIT"}
757
+ }
758
+ },
759
+ "CreateQualificationTypeRequest":{
760
+ "type":"structure",
761
+ "required":[
762
+ "Name",
763
+ "Description",
764
+ "QualificationTypeStatus"
765
+ ],
766
+ "members":{
767
+ "Name":{"shape":"String"},
768
+ "Keywords":{"shape":"String"},
769
+ "Description":{"shape":"String"},
770
+ "QualificationTypeStatus":{"shape":"QualificationTypeStatus"},
771
+ "RetryDelayInSeconds":{"shape":"Long"},
772
+ "Test":{"shape":"String"},
773
+ "AnswerKey":{"shape":"String"},
774
+ "TestDurationInSeconds":{"shape":"Long"},
775
+ "AutoGranted":{"shape":"Boolean"},
776
+ "AutoGrantedValue":{"shape":"Integer"}
777
+ }
778
+ },
779
+ "CreateQualificationTypeResponse":{
780
+ "type":"structure",
781
+ "members":{
782
+ "QualificationType":{"shape":"QualificationType"}
783
+ }
784
+ },
785
+ "CreateWorkerBlockRequest":{
786
+ "type":"structure",
787
+ "required":[
788
+ "WorkerId",
789
+ "Reason"
790
+ ],
791
+ "members":{
792
+ "WorkerId":{"shape":"CustomerId"},
793
+ "Reason":{"shape":"String"}
794
+ }
795
+ },
796
+ "CreateWorkerBlockResponse":{
797
+ "type":"structure",
798
+ "members":{
799
+ }
800
+ },
801
+ "CustomerId":{
802
+ "type":"string",
803
+ "max":64,
804
+ "min":1,
805
+ "pattern":"^A[A-Z0-9]+$"
806
+ },
807
+ "CustomerIdList":{
808
+ "type":"list",
809
+ "member":{"shape":"CustomerId"}
810
+ },
811
+ "DeleteHITRequest":{
812
+ "type":"structure",
813
+ "required":["HITId"],
814
+ "members":{
815
+ "HITId":{"shape":"EntityId"}
816
+ }
817
+ },
818
+ "DeleteHITResponse":{
819
+ "type":"structure",
820
+ "members":{
821
+ }
822
+ },
823
+ "DeleteQualificationTypeRequest":{
824
+ "type":"structure",
825
+ "required":["QualificationTypeId"],
826
+ "members":{
827
+ "QualificationTypeId":{"shape":"EntityId"}
828
+ }
829
+ },
830
+ "DeleteQualificationTypeResponse":{
831
+ "type":"structure",
832
+ "members":{
833
+ }
834
+ },
835
+ "DeleteWorkerBlockRequest":{
836
+ "type":"structure",
837
+ "required":["WorkerId"],
838
+ "members":{
839
+ "WorkerId":{"shape":"CustomerId"},
840
+ "Reason":{"shape":"String"}
841
+ }
842
+ },
843
+ "DeleteWorkerBlockResponse":{
844
+ "type":"structure",
845
+ "members":{
846
+ }
847
+ },
848
+ "DisassociateQualificationFromWorkerRequest":{
849
+ "type":"structure",
850
+ "required":[
851
+ "WorkerId",
852
+ "QualificationTypeId"
853
+ ],
854
+ "members":{
855
+ "WorkerId":{"shape":"CustomerId"},
856
+ "QualificationTypeId":{"shape":"EntityId"},
857
+ "Reason":{"shape":"String"}
858
+ }
859
+ },
860
+ "DisassociateQualificationFromWorkerResponse":{
861
+ "type":"structure",
862
+ "members":{
863
+ }
864
+ },
865
+ "EntityId":{
866
+ "type":"string",
867
+ "max":64,
868
+ "min":1,
869
+ "pattern":"^[A-Z0-9]+$"
870
+ },
871
+ "EventType":{
872
+ "type":"string",
873
+ "enum":[
874
+ "AssignmentAccepted",
875
+ "AssignmentAbandoned",
876
+ "AssignmentReturned",
877
+ "AssignmentSubmitted",
878
+ "AssignmentRejected",
879
+ "AssignmentApproved",
880
+ "HITCreated",
881
+ "HITExpired",
882
+ "HITReviewable",
883
+ "HITExtended",
884
+ "HITDisposed",
885
+ "Ping"
886
+ ]
887
+ },
888
+ "EventTypeList":{
889
+ "type":"list",
890
+ "member":{"shape":"EventType"}
891
+ },
892
+ "ExceptionMessage":{"type":"string"},
893
+ "GetAccountBalanceRequest":{
894
+ "type":"structure",
895
+ "members":{
896
+ }
897
+ },
898
+ "GetAccountBalanceResponse":{
899
+ "type":"structure",
900
+ "members":{
901
+ "AvailableBalance":{"shape":"NumericValue"},
902
+ "OnHoldBalance":{"shape":"NumericValue"}
903
+ }
904
+ },
905
+ "GetAssignmentRequest":{
906
+ "type":"structure",
907
+ "required":["AssignmentId"],
908
+ "members":{
909
+ "AssignmentId":{"shape":"EntityId"}
910
+ }
911
+ },
912
+ "GetAssignmentResponse":{
913
+ "type":"structure",
914
+ "members":{
915
+ "Assignment":{"shape":"Assignment"},
916
+ "HIT":{"shape":"HIT"}
917
+ }
918
+ },
919
+ "GetFileUploadURLRequest":{
920
+ "type":"structure",
921
+ "required":[
922
+ "AssignmentId",
923
+ "QuestionIdentifier"
924
+ ],
925
+ "members":{
926
+ "AssignmentId":{"shape":"EntityId"},
927
+ "QuestionIdentifier":{"shape":"String"}
928
+ }
929
+ },
930
+ "GetFileUploadURLResponse":{
931
+ "type":"structure",
932
+ "members":{
933
+ "FileUploadURL":{"shape":"String"}
934
+ }
935
+ },
936
+ "GetHITRequest":{
937
+ "type":"structure",
938
+ "required":["HITId"],
939
+ "members":{
940
+ "HITId":{"shape":"EntityId"}
941
+ }
942
+ },
943
+ "GetHITResponse":{
944
+ "type":"structure",
945
+ "members":{
946
+ "HIT":{"shape":"HIT"}
947
+ }
948
+ },
949
+ "GetQualificationScoreRequest":{
950
+ "type":"structure",
951
+ "required":[
952
+ "QualificationTypeId",
953
+ "WorkerId"
954
+ ],
955
+ "members":{
956
+ "QualificationTypeId":{"shape":"EntityId"},
957
+ "WorkerId":{"shape":"CustomerId"}
958
+ }
959
+ },
960
+ "GetQualificationScoreResponse":{
961
+ "type":"structure",
962
+ "members":{
963
+ "Qualification":{"shape":"Qualification"}
964
+ }
965
+ },
966
+ "GetQualificationTypeRequest":{
967
+ "type":"structure",
968
+ "required":["QualificationTypeId"],
969
+ "members":{
970
+ "QualificationTypeId":{"shape":"EntityId"}
971
+ }
972
+ },
973
+ "GetQualificationTypeResponse":{
974
+ "type":"structure",
975
+ "members":{
976
+ "QualificationType":{"shape":"QualificationType"}
977
+ }
978
+ },
979
+ "HIT":{
980
+ "type":"structure",
981
+ "members":{
982
+ "HITId":{"shape":"EntityId"},
983
+ "HITTypeId":{"shape":"EntityId"},
984
+ "HITGroupId":{"shape":"EntityId"},
985
+ "HITLayoutId":{"shape":"EntityId"},
986
+ "CreationTime":{"shape":"Timestamp"},
987
+ "Title":{"shape":"String"},
988
+ "Description":{"shape":"String"},
989
+ "Question":{"shape":"String"},
990
+ "Keywords":{"shape":"String"},
991
+ "HITStatus":{"shape":"HITStatus"},
992
+ "MaxAssignments":{"shape":"Integer"},
993
+ "Reward":{"shape":"NumericValue"},
994
+ "AutoApprovalDelayInSeconds":{"shape":"Long"},
995
+ "Expiration":{"shape":"Timestamp"},
996
+ "AssignmentDurationInSeconds":{"shape":"Long"},
997
+ "RequesterAnnotation":{"shape":"String"},
998
+ "QualificationRequirements":{"shape":"QualificationRequirementList"},
999
+ "HITReviewStatus":{"shape":"HITReviewStatus"},
1000
+ "NumberOfAssignmentsPending":{"shape":"Integer"},
1001
+ "NumberOfAssignmentsAvailable":{"shape":"Integer"},
1002
+ "NumberOfAssignmentsCompleted":{"shape":"Integer"}
1003
+ }
1004
+ },
1005
+ "HITLayoutParameter":{
1006
+ "type":"structure",
1007
+ "members":{
1008
+ "Name":{"shape":"String"},
1009
+ "Value":{"shape":"String"}
1010
+ }
1011
+ },
1012
+ "HITLayoutParameterList":{
1013
+ "type":"list",
1014
+ "member":{"shape":"HITLayoutParameter"}
1015
+ },
1016
+ "HITList":{
1017
+ "type":"list",
1018
+ "member":{"shape":"HIT"}
1019
+ },
1020
+ "HITReviewStatus":{
1021
+ "type":"string",
1022
+ "enum":[
1023
+ "NotReviewed",
1024
+ "MarkedForReview",
1025
+ "ReviewedAppropriate",
1026
+ "ReviewedInappropriate"
1027
+ ]
1028
+ },
1029
+ "HITStatus":{
1030
+ "type":"string",
1031
+ "enum":[
1032
+ "Assignable",
1033
+ "Unassignable",
1034
+ "Reviewable",
1035
+ "Reviewing",
1036
+ "Disposed"
1037
+ ]
1038
+ },
1039
+ "IdempotencyToken":{
1040
+ "type":"string",
1041
+ "max":64,
1042
+ "min":1
1043
+ },
1044
+ "Integer":{"type":"integer"},
1045
+ "IntegerList":{
1046
+ "type":"list",
1047
+ "member":{"shape":"Integer"}
1048
+ },
1049
+ "ListAssignmentsForHITRequest":{
1050
+ "type":"structure",
1051
+ "required":["HITId"],
1052
+ "members":{
1053
+ "HITId":{"shape":"EntityId"},
1054
+ "NextToken":{"shape":"PaginationToken"},
1055
+ "MaxResults":{"shape":"ResultSize"},
1056
+ "AssignmentStatuses":{"shape":"AssignmentStatusList"}
1057
+ }
1058
+ },
1059
+ "ListAssignmentsForHITResponse":{
1060
+ "type":"structure",
1061
+ "members":{
1062
+ "NextToken":{"shape":"PaginationToken"},
1063
+ "NumResults":{"shape":"Integer"},
1064
+ "Assignments":{"shape":"AssignmentList"}
1065
+ }
1066
+ },
1067
+ "ListBonusPaymentsRequest":{
1068
+ "type":"structure",
1069
+ "members":{
1070
+ "HITId":{"shape":"EntityId"},
1071
+ "AssignmentId":{"shape":"EntityId"},
1072
+ "NextToken":{"shape":"PaginationToken"},
1073
+ "MaxResults":{"shape":"ResultSize"}
1074
+ }
1075
+ },
1076
+ "ListBonusPaymentsResponse":{
1077
+ "type":"structure",
1078
+ "members":{
1079
+ "NumResults":{"shape":"Integer"},
1080
+ "NextToken":{"shape":"PaginationToken"},
1081
+ "BonusPayments":{"shape":"BonusPaymentList"}
1082
+ }
1083
+ },
1084
+ "ListHITsForQualificationTypeRequest":{
1085
+ "type":"structure",
1086
+ "required":["QualificationTypeId"],
1087
+ "members":{
1088
+ "QualificationTypeId":{"shape":"EntityId"},
1089
+ "NextToken":{"shape":"PaginationToken"},
1090
+ "MaxResults":{"shape":"ResultSize"}
1091
+ }
1092
+ },
1093
+ "ListHITsForQualificationTypeResponse":{
1094
+ "type":"structure",
1095
+ "members":{
1096
+ "NextToken":{"shape":"PaginationToken"},
1097
+ "NumResults":{"shape":"Integer"},
1098
+ "HITs":{"shape":"HITList"}
1099
+ }
1100
+ },
1101
+ "ListHITsRequest":{
1102
+ "type":"structure",
1103
+ "members":{
1104
+ "NextToken":{"shape":"PaginationToken"},
1105
+ "MaxResults":{"shape":"ResultSize"}
1106
+ }
1107
+ },
1108
+ "ListHITsResponse":{
1109
+ "type":"structure",
1110
+ "members":{
1111
+ "NextToken":{"shape":"PaginationToken"},
1112
+ "NumResults":{"shape":"Integer"},
1113
+ "HITs":{"shape":"HITList"}
1114
+ }
1115
+ },
1116
+ "ListQualificationRequestsRequest":{
1117
+ "type":"structure",
1118
+ "members":{
1119
+ "QualificationTypeId":{"shape":"EntityId"},
1120
+ "NextToken":{"shape":"PaginationToken"},
1121
+ "MaxResults":{"shape":"ResultSize"}
1122
+ }
1123
+ },
1124
+ "ListQualificationRequestsResponse":{
1125
+ "type":"structure",
1126
+ "members":{
1127
+ "NumResults":{"shape":"Integer"},
1128
+ "NextToken":{"shape":"PaginationToken"},
1129
+ "QualificationRequests":{"shape":"QualificationRequestList"}
1130
+ }
1131
+ },
1132
+ "ListQualificationTypesRequest":{
1133
+ "type":"structure",
1134
+ "required":["MustBeRequestable"],
1135
+ "members":{
1136
+ "Query":{"shape":"String"},
1137
+ "MustBeRequestable":{"shape":"Boolean"},
1138
+ "MustBeOwnedByCaller":{"shape":"Boolean"},
1139
+ "NextToken":{"shape":"PaginationToken"},
1140
+ "MaxResults":{"shape":"ResultSize"}
1141
+ }
1142
+ },
1143
+ "ListQualificationTypesResponse":{
1144
+ "type":"structure",
1145
+ "members":{
1146
+ "NumResults":{"shape":"Integer"},
1147
+ "NextToken":{"shape":"PaginationToken"},
1148
+ "QualificationTypes":{"shape":"QualificationTypeList"}
1149
+ }
1150
+ },
1151
+ "ListReviewPolicyResultsForHITRequest":{
1152
+ "type":"structure",
1153
+ "required":["HITId"],
1154
+ "members":{
1155
+ "HITId":{"shape":"EntityId"},
1156
+ "PolicyLevels":{"shape":"ReviewPolicyLevelList"},
1157
+ "RetrieveActions":{"shape":"Boolean"},
1158
+ "RetrieveResults":{"shape":"Boolean"},
1159
+ "NextToken":{"shape":"PaginationToken"},
1160
+ "MaxResults":{"shape":"ResultSize"}
1161
+ }
1162
+ },
1163
+ "ListReviewPolicyResultsForHITResponse":{
1164
+ "type":"structure",
1165
+ "members":{
1166
+ "HITId":{"shape":"EntityId"},
1167
+ "AssignmentReviewPolicy":{"shape":"ReviewPolicy"},
1168
+ "HITReviewPolicy":{"shape":"ReviewPolicy"},
1169
+ "AssignmentReviewReport":{"shape":"ReviewReport"},
1170
+ "HITReviewReport":{"shape":"ReviewReport"},
1171
+ "NextToken":{"shape":"PaginationToken"}
1172
+ }
1173
+ },
1174
+ "ListReviewableHITsRequest":{
1175
+ "type":"structure",
1176
+ "members":{
1177
+ "HITTypeId":{"shape":"EntityId"},
1178
+ "Status":{"shape":"ReviewableHITStatus"},
1179
+ "NextToken":{"shape":"PaginationToken"},
1180
+ "MaxResults":{"shape":"ResultSize"}
1181
+ }
1182
+ },
1183
+ "ListReviewableHITsResponse":{
1184
+ "type":"structure",
1185
+ "members":{
1186
+ "NextToken":{"shape":"PaginationToken"},
1187
+ "NumResults":{"shape":"Integer"},
1188
+ "HITs":{"shape":"HITList"}
1189
+ }
1190
+ },
1191
+ "ListWorkerBlocksRequest":{
1192
+ "type":"structure",
1193
+ "members":{
1194
+ "NextToken":{"shape":"PaginationToken"},
1195
+ "MaxResults":{"shape":"ResultSize"}
1196
+ }
1197
+ },
1198
+ "ListWorkerBlocksResponse":{
1199
+ "type":"structure",
1200
+ "members":{
1201
+ "NextToken":{"shape":"PaginationToken"},
1202
+ "NumResults":{"shape":"Integer"},
1203
+ "WorkerBlocks":{"shape":"WorkerBlockList"}
1204
+ }
1205
+ },
1206
+ "ListWorkersWithQualificationTypeRequest":{
1207
+ "type":"structure",
1208
+ "required":["QualificationTypeId"],
1209
+ "members":{
1210
+ "QualificationTypeId":{"shape":"EntityId"},
1211
+ "Status":{"shape":"QualificationStatus"},
1212
+ "NextToken":{"shape":"PaginationToken"},
1213
+ "MaxResults":{"shape":"ResultSize"}
1214
+ }
1215
+ },
1216
+ "ListWorkersWithQualificationTypeResponse":{
1217
+ "type":"structure",
1218
+ "members":{
1219
+ "NextToken":{"shape":"PaginationToken"},
1220
+ "NumResults":{"shape":"Integer"},
1221
+ "Qualifications":{"shape":"QualificationList"}
1222
+ }
1223
+ },
1224
+ "Locale":{
1225
+ "type":"structure",
1226
+ "required":["Country"],
1227
+ "members":{
1228
+ "Country":{"shape":"CountryParameters"},
1229
+ "Subdivision":{"shape":"CountryParameters"}
1230
+ }
1231
+ },
1232
+ "LocaleList":{
1233
+ "type":"list",
1234
+ "member":{"shape":"Locale"}
1235
+ },
1236
+ "Long":{"type":"long"},
1237
+ "NotificationSpecification":{
1238
+ "type":"structure",
1239
+ "required":[
1240
+ "Destination",
1241
+ "Transport"
1242
+ ],
1243
+ "members":{
1244
+ "Destination":{"shape":"String"},
1245
+ "Transport":{"shape":"NotificationTransport"},
1246
+ "Version":{"shape":"String"},
1247
+ "EventTypes":{"shape":"EventTypeList"}
1248
+ }
1249
+ },
1250
+ "NotificationTransport":{
1251
+ "type":"string",
1252
+ "enum":[
1253
+ "Email",
1254
+ "SQS"
1255
+ ]
1256
+ },
1257
+ "NotifyWorkersFailureCode":{
1258
+ "type":"string",
1259
+ "enum":[
1260
+ "SoftFailure",
1261
+ "HardFailure"
1262
+ ]
1263
+ },
1264
+ "NotifyWorkersFailureStatus":{
1265
+ "type":"structure",
1266
+ "members":{
1267
+ "NotifyWorkersFailureCode":{"shape":"NotifyWorkersFailureCode"},
1268
+ "NotifyWorkersFailureMessage":{"shape":"String"},
1269
+ "WorkerId":{"shape":"CustomerId"}
1270
+ }
1271
+ },
1272
+ "NotifyWorkersFailureStatusList":{
1273
+ "type":"list",
1274
+ "member":{"shape":"NotifyWorkersFailureStatus"}
1275
+ },
1276
+ "NotifyWorkersRequest":{
1277
+ "type":"structure",
1278
+ "required":[
1279
+ "Subject",
1280
+ "MessageText",
1281
+ "WorkerIds"
1282
+ ],
1283
+ "members":{
1284
+ "Subject":{"shape":"String"},
1285
+ "MessageText":{"shape":"String"},
1286
+ "WorkerIds":{"shape":"CustomerIdList"}
1287
+ }
1288
+ },
1289
+ "NotifyWorkersResponse":{
1290
+ "type":"structure",
1291
+ "members":{
1292
+ "NotifyWorkersFailureStatuses":{"shape":"NotifyWorkersFailureStatusList"}
1293
+ }
1294
+ },
1295
+ "NumericValue":{
1296
+ "type":"string",
1297
+ "pattern":"^[0-9]+(\\.)?[0-9]*$"
1298
+ },
1299
+ "PaginationToken":{
1300
+ "type":"string",
1301
+ "max":255,
1302
+ "min":1
1303
+ },
1304
+ "ParameterMapEntry":{
1305
+ "type":"structure",
1306
+ "members":{
1307
+ "Key":{"shape":"String"},
1308
+ "Values":{"shape":"StringList"}
1309
+ }
1310
+ },
1311
+ "ParameterMapEntryList":{
1312
+ "type":"list",
1313
+ "member":{"shape":"ParameterMapEntry"}
1314
+ },
1315
+ "PolicyParameter":{
1316
+ "type":"structure",
1317
+ "members":{
1318
+ "Key":{"shape":"String"},
1319
+ "Values":{"shape":"StringList"},
1320
+ "MapEntries":{"shape":"ParameterMapEntryList"}
1321
+ }
1322
+ },
1323
+ "PolicyParameterList":{
1324
+ "type":"list",
1325
+ "member":{"shape":"PolicyParameter"}
1326
+ },
1327
+ "Qualification":{
1328
+ "type":"structure",
1329
+ "members":{
1330
+ "QualificationTypeId":{"shape":"EntityId"},
1331
+ "WorkerId":{"shape":"CustomerId"},
1332
+ "GrantTime":{"shape":"Timestamp"},
1333
+ "IntegerValue":{"shape":"Integer"},
1334
+ "LocaleValue":{"shape":"Locale"},
1335
+ "Status":{"shape":"QualificationStatus"}
1336
+ }
1337
+ },
1338
+ "QualificationList":{
1339
+ "type":"list",
1340
+ "member":{"shape":"Qualification"}
1341
+ },
1342
+ "QualificationRequest":{
1343
+ "type":"structure",
1344
+ "members":{
1345
+ "QualificationRequestId":{"shape":"String"},
1346
+ "QualificationTypeId":{"shape":"EntityId"},
1347
+ "WorkerId":{"shape":"CustomerId"},
1348
+ "Test":{"shape":"String"},
1349
+ "Answer":{"shape":"String"},
1350
+ "SubmitTime":{"shape":"Timestamp"}
1351
+ }
1352
+ },
1353
+ "QualificationRequestList":{
1354
+ "type":"list",
1355
+ "member":{"shape":"QualificationRequest"}
1356
+ },
1357
+ "QualificationRequirement":{
1358
+ "type":"structure",
1359
+ "required":[
1360
+ "QualificationTypeId",
1361
+ "Comparator"
1362
+ ],
1363
+ "members":{
1364
+ "QualificationTypeId":{"shape":"String"},
1365
+ "Comparator":{"shape":"Comparator"},
1366
+ "IntegerValues":{"shape":"IntegerList"},
1367
+ "LocaleValues":{"shape":"LocaleList"},
1368
+ "RequiredToPreview":{"shape":"Boolean"}
1369
+ }
1370
+ },
1371
+ "QualificationRequirementList":{
1372
+ "type":"list",
1373
+ "member":{"shape":"QualificationRequirement"}
1374
+ },
1375
+ "QualificationStatus":{
1376
+ "type":"string",
1377
+ "enum":[
1378
+ "Granted",
1379
+ "Revoked"
1380
+ ]
1381
+ },
1382
+ "QualificationType":{
1383
+ "type":"structure",
1384
+ "members":{
1385
+ "QualificationTypeId":{"shape":"EntityId"},
1386
+ "CreationTime":{"shape":"Timestamp"},
1387
+ "Name":{"shape":"String"},
1388
+ "Description":{"shape":"String"},
1389
+ "Keywords":{"shape":"String"},
1390
+ "QualificationTypeStatus":{"shape":"QualificationTypeStatus"},
1391
+ "Test":{"shape":"String"},
1392
+ "TestDurationInSeconds":{"shape":"Long"},
1393
+ "AnswerKey":{"shape":"String"},
1394
+ "RetryDelayInSeconds":{"shape":"Long"},
1395
+ "IsRequestable":{"shape":"Boolean"},
1396
+ "AutoGranted":{"shape":"Boolean"},
1397
+ "AutoGrantedValue":{"shape":"Integer"}
1398
+ }
1399
+ },
1400
+ "QualificationTypeList":{
1401
+ "type":"list",
1402
+ "member":{"shape":"QualificationType"}
1403
+ },
1404
+ "QualificationTypeStatus":{
1405
+ "type":"string",
1406
+ "enum":[
1407
+ "Active",
1408
+ "Inactive"
1409
+ ]
1410
+ },
1411
+ "RejectAssignmentRequest":{
1412
+ "type":"structure",
1413
+ "required":["AssignmentId"],
1414
+ "members":{
1415
+ "AssignmentId":{"shape":"EntityId"},
1416
+ "RequesterFeedback":{"shape":"String"}
1417
+ }
1418
+ },
1419
+ "RejectAssignmentResponse":{
1420
+ "type":"structure",
1421
+ "members":{
1422
+ }
1423
+ },
1424
+ "RejectQualificationRequestRequest":{
1425
+ "type":"structure",
1426
+ "required":["QualificationRequestId"],
1427
+ "members":{
1428
+ "QualificationRequestId":{"shape":"String"},
1429
+ "Reason":{"shape":"String"}
1430
+ }
1431
+ },
1432
+ "RejectQualificationRequestResponse":{
1433
+ "type":"structure",
1434
+ "members":{
1435
+ }
1436
+ },
1437
+ "RequestError":{
1438
+ "type":"structure",
1439
+ "members":{
1440
+ "Message":{"shape":"ExceptionMessage"},
1441
+ "TurkErrorCode":{"shape":"TurkErrorCode"}
1442
+ },
1443
+ "exception":true
1444
+ },
1445
+ "ResultSize":{
1446
+ "type":"integer",
1447
+ "max":100,
1448
+ "min":1
1449
+ },
1450
+ "ReviewActionDetail":{
1451
+ "type":"structure",
1452
+ "members":{
1453
+ "ActionId":{"shape":"EntityId"},
1454
+ "ActionName":{"shape":"String"},
1455
+ "TargetId":{"shape":"EntityId"},
1456
+ "TargetType":{"shape":"String"},
1457
+ "Status":{"shape":"ReviewActionStatus"},
1458
+ "CompleteTime":{"shape":"Timestamp"},
1459
+ "Result":{"shape":"String"},
1460
+ "ErrorCode":{"shape":"String"}
1461
+ }
1462
+ },
1463
+ "ReviewActionDetailList":{
1464
+ "type":"list",
1465
+ "member":{"shape":"ReviewActionDetail"}
1466
+ },
1467
+ "ReviewActionStatus":{
1468
+ "type":"string",
1469
+ "enum":[
1470
+ "Intended",
1471
+ "Succeeded",
1472
+ "Failed",
1473
+ "Cancelled"
1474
+ ]
1475
+ },
1476
+ "ReviewPolicy":{
1477
+ "type":"structure",
1478
+ "members":{
1479
+ "PolicyName":{"shape":"String"},
1480
+ "Parameters":{"shape":"PolicyParameterList"}
1481
+ }
1482
+ },
1483
+ "ReviewPolicyLevel":{
1484
+ "type":"string",
1485
+ "enum":[
1486
+ "Assignment",
1487
+ "HIT"
1488
+ ]
1489
+ },
1490
+ "ReviewPolicyLevelList":{
1491
+ "type":"list",
1492
+ "member":{"shape":"ReviewPolicyLevel"}
1493
+ },
1494
+ "ReviewReport":{
1495
+ "type":"structure",
1496
+ "members":{
1497
+ "ReviewResults":{"shape":"ReviewResultDetailList"},
1498
+ "ReviewActions":{"shape":"ReviewActionDetailList"}
1499
+ }
1500
+ },
1501
+ "ReviewResultDetail":{
1502
+ "type":"structure",
1503
+ "members":{
1504
+ "ActionId":{"shape":"EntityId"},
1505
+ "SubjectId":{"shape":"EntityId"},
1506
+ "SubjectType":{"shape":"String"},
1507
+ "QuestionId":{"shape":"EntityId"},
1508
+ "Key":{"shape":"String"},
1509
+ "Value":{"shape":"String"}
1510
+ }
1511
+ },
1512
+ "ReviewResultDetailList":{
1513
+ "type":"list",
1514
+ "member":{"shape":"ReviewResultDetail"}
1515
+ },
1516
+ "ReviewableHITStatus":{
1517
+ "type":"string",
1518
+ "enum":[
1519
+ "Reviewable",
1520
+ "Reviewing"
1521
+ ]
1522
+ },
1523
+ "SendBonusRequest":{
1524
+ "type":"structure",
1525
+ "required":[
1526
+ "WorkerId",
1527
+ "BonusAmount",
1528
+ "AssignmentId"
1529
+ ],
1530
+ "members":{
1531
+ "WorkerId":{"shape":"CustomerId"},
1532
+ "BonusAmount":{"shape":"NumericValue"},
1533
+ "AssignmentId":{"shape":"EntityId"},
1534
+ "Reason":{"shape":"String"},
1535
+ "UniqueRequestToken":{"shape":"IdempotencyToken"}
1536
+ }
1537
+ },
1538
+ "SendBonusResponse":{
1539
+ "type":"structure",
1540
+ "members":{
1541
+ }
1542
+ },
1543
+ "SendTestEventNotificationRequest":{
1544
+ "type":"structure",
1545
+ "required":[
1546
+ "Notification",
1547
+ "TestEventType"
1548
+ ],
1549
+ "members":{
1550
+ "Notification":{"shape":"NotificationSpecification"},
1551
+ "TestEventType":{"shape":"EventType"}
1552
+ }
1553
+ },
1554
+ "SendTestEventNotificationResponse":{
1555
+ "type":"structure",
1556
+ "members":{
1557
+ }
1558
+ },
1559
+ "ServiceFault":{
1560
+ "type":"structure",
1561
+ "members":{
1562
+ "Message":{"shape":"ExceptionMessage"},
1563
+ "TurkErrorCode":{"shape":"TurkErrorCode"}
1564
+ },
1565
+ "exception":true,
1566
+ "fault":true
1567
+ },
1568
+ "String":{"type":"string"},
1569
+ "StringList":{
1570
+ "type":"list",
1571
+ "member":{"shape":"String"}
1572
+ },
1573
+ "Timestamp":{"type":"timestamp"},
1574
+ "TurkErrorCode":{"type":"string"},
1575
+ "UpdateExpirationForHITRequest":{
1576
+ "type":"structure",
1577
+ "required":["HITId"],
1578
+ "members":{
1579
+ "HITId":{"shape":"EntityId"},
1580
+ "ExpireAt":{"shape":"Timestamp"}
1581
+ }
1582
+ },
1583
+ "UpdateExpirationForHITResponse":{
1584
+ "type":"structure",
1585
+ "members":{
1586
+ }
1587
+ },
1588
+ "UpdateHITReviewStatusRequest":{
1589
+ "type":"structure",
1590
+ "required":["HITId"],
1591
+ "members":{
1592
+ "HITId":{"shape":"EntityId"},
1593
+ "Revert":{"shape":"Boolean"}
1594
+ }
1595
+ },
1596
+ "UpdateHITReviewStatusResponse":{
1597
+ "type":"structure",
1598
+ "members":{
1599
+ }
1600
+ },
1601
+ "UpdateHITTypeOfHITRequest":{
1602
+ "type":"structure",
1603
+ "required":[
1604
+ "HITId",
1605
+ "HITTypeId"
1606
+ ],
1607
+ "members":{
1608
+ "HITId":{"shape":"EntityId"},
1609
+ "HITTypeId":{"shape":"EntityId"}
1610
+ }
1611
+ },
1612
+ "UpdateHITTypeOfHITResponse":{
1613
+ "type":"structure",
1614
+ "members":{
1615
+ }
1616
+ },
1617
+ "UpdateNotificationSettingsRequest":{
1618
+ "type":"structure",
1619
+ "required":["HITTypeId"],
1620
+ "members":{
1621
+ "HITTypeId":{"shape":"EntityId"},
1622
+ "Notification":{"shape":"NotificationSpecification"},
1623
+ "Active":{"shape":"Boolean"}
1624
+ }
1625
+ },
1626
+ "UpdateNotificationSettingsResponse":{
1627
+ "type":"structure",
1628
+ "members":{
1629
+ }
1630
+ },
1631
+ "UpdateQualificationTypeRequest":{
1632
+ "type":"structure",
1633
+ "required":["QualificationTypeId"],
1634
+ "members":{
1635
+ "QualificationTypeId":{"shape":"EntityId"},
1636
+ "Description":{"shape":"String"},
1637
+ "QualificationTypeStatus":{"shape":"QualificationTypeStatus"},
1638
+ "Test":{"shape":"String"},
1639
+ "AnswerKey":{"shape":"String"},
1640
+ "TestDurationInSeconds":{"shape":"Long"},
1641
+ "RetryDelayInSeconds":{"shape":"Long"},
1642
+ "AutoGranted":{"shape":"Boolean"},
1643
+ "AutoGrantedValue":{"shape":"Integer"}
1644
+ }
1645
+ },
1646
+ "UpdateQualificationTypeResponse":{
1647
+ "type":"structure",
1648
+ "members":{
1649
+ "QualificationType":{"shape":"QualificationType"}
1650
+ }
1651
+ },
1652
+ "WorkerBlock":{
1653
+ "type":"structure",
1654
+ "members":{
1655
+ "WorkerId":{"shape":"CustomerId"},
1656
+ "Reason":{"shape":"String"}
1657
+ }
1658
+ },
1659
+ "WorkerBlockList":{
1660
+ "type":"list",
1661
+ "member":{"shape":"WorkerBlock"}
1662
+ }
1663
+ }
1664
+ }