1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[derive(Debug)]
pub(crate) struct Handle {
    pub(crate) client: aws_smithy_client::Client<
        aws_smithy_client::erase::DynConnector,
        aws_smithy_client::erase::DynMiddleware<aws_smithy_client::erase::DynConnector>,
    >,
    pub(crate) conf: crate::Config,
}

/// Client for Amazon Mechanical Turk
///
/// Client for invoking operations on Amazon Mechanical Turk. Each operation on Amazon Mechanical Turk is a method on this
/// this struct. `.send()` MUST be invoked on the generated operations to dispatch the request to the service.
///
/// # Examples
/// **Constructing a client and invoking an operation**
/// ```rust,no_run
/// # async fn docs() {
///     // create a shared configuration. This can be used & shared between multiple service clients.
///     let shared_config = aws_config::load_from_env().await;
///     let client = aws_sdk_mturk::Client::new(&shared_config);
///     // invoke an operation
///     /* let rsp = client
///         .<operation_name>().
///         .<param>("some value")
///         .send().await; */
/// # }
/// ```
/// **Constructing a client with custom configuration**
/// ```rust,no_run
/// use aws_config::RetryConfig;
/// # async fn docs() {
/// let shared_config = aws_config::load_from_env().await;
/// let config = aws_sdk_mturk::config::Builder::from(&shared_config)
///   .retry_config(RetryConfig::disabled())
///   .build();
/// let client = aws_sdk_mturk::Client::from_conf(config);
/// # }
#[derive(std::fmt::Debug)]
pub struct Client {
    handle: std::sync::Arc<Handle>,
}

impl std::clone::Clone for Client {
    fn clone(&self) -> Self {
        Self {
            handle: self.handle.clone(),
        }
    }
}

#[doc(inline)]
pub use aws_smithy_client::Builder;

impl
    From<
        aws_smithy_client::Client<
            aws_smithy_client::erase::DynConnector,
            aws_smithy_client::erase::DynMiddleware<aws_smithy_client::erase::DynConnector>,
        >,
    > for Client
{
    fn from(
        client: aws_smithy_client::Client<
            aws_smithy_client::erase::DynConnector,
            aws_smithy_client::erase::DynMiddleware<aws_smithy_client::erase::DynConnector>,
        >,
    ) -> Self {
        Self::with_config(client, crate::Config::builder().build())
    }
}

impl Client {
    /// Creates a client with the given service configuration.
    pub fn with_config(
        client: aws_smithy_client::Client<
            aws_smithy_client::erase::DynConnector,
            aws_smithy_client::erase::DynMiddleware<aws_smithy_client::erase::DynConnector>,
        >,
        conf: crate::Config,
    ) -> Self {
        Self {
            handle: std::sync::Arc::new(Handle { client, conf }),
        }
    }

    /// Returns the client's configuration.
    pub fn conf(&self) -> &crate::Config {
        &self.handle.conf
    }
}
impl Client {
    /// Constructs a fluent builder for the [`AcceptQualificationRequest`](crate::client::fluent_builders::AcceptQualificationRequest) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`qualification_request_id(impl Into<String>)`](crate::client::fluent_builders::AcceptQualificationRequest::qualification_request_id) / [`set_qualification_request_id(Option<String>)`](crate::client::fluent_builders::AcceptQualificationRequest::set_qualification_request_id): <p>The ID of the Qualification request, as returned by the <code>GetQualificationRequests</code> operation.</p>
    ///   - [`integer_value(i32)`](crate::client::fluent_builders::AcceptQualificationRequest::integer_value) / [`set_integer_value(Option<i32>)`](crate::client::fluent_builders::AcceptQualificationRequest::set_integer_value): <p> The value of the Qualification. You can omit this value if you are using the presence or absence of the Qualification as the basis for a HIT requirement. </p>
    /// - On success, responds with [`AcceptQualificationRequestOutput`](crate::output::AcceptQualificationRequestOutput)

    /// - On failure, responds with [`SdkError<AcceptQualificationRequestError>`](crate::error::AcceptQualificationRequestError)
    pub fn accept_qualification_request(&self) -> fluent_builders::AcceptQualificationRequest {
        fluent_builders::AcceptQualificationRequest::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ApproveAssignment`](crate::client::fluent_builders::ApproveAssignment) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`assignment_id(impl Into<String>)`](crate::client::fluent_builders::ApproveAssignment::assignment_id) / [`set_assignment_id(Option<String>)`](crate::client::fluent_builders::ApproveAssignment::set_assignment_id): <p> The ID of the assignment. The assignment must correspond to a HIT created by the Requester. </p>
    ///   - [`requester_feedback(impl Into<String>)`](crate::client::fluent_builders::ApproveAssignment::requester_feedback) / [`set_requester_feedback(Option<String>)`](crate::client::fluent_builders::ApproveAssignment::set_requester_feedback): <p> A message for the Worker, which the Worker can see in the Status section of the web site. </p>
    ///   - [`override_rejection(bool)`](crate::client::fluent_builders::ApproveAssignment::override_rejection) / [`set_override_rejection(Option<bool>)`](crate::client::fluent_builders::ApproveAssignment::set_override_rejection): <p> A flag indicating that an assignment should be approved even if it was previously rejected. Defaults to <code>False</code>. </p>
    /// - On success, responds with [`ApproveAssignmentOutput`](crate::output::ApproveAssignmentOutput)

    /// - On failure, responds with [`SdkError<ApproveAssignmentError>`](crate::error::ApproveAssignmentError)
    pub fn approve_assignment(&self) -> fluent_builders::ApproveAssignment {
        fluent_builders::ApproveAssignment::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`AssociateQualificationWithWorker`](crate::client::fluent_builders::AssociateQualificationWithWorker) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`qualification_type_id(impl Into<String>)`](crate::client::fluent_builders::AssociateQualificationWithWorker::qualification_type_id) / [`set_qualification_type_id(Option<String>)`](crate::client::fluent_builders::AssociateQualificationWithWorker::set_qualification_type_id): <p>The ID of the Qualification type to use for the assigned Qualification.</p>
    ///   - [`worker_id(impl Into<String>)`](crate::client::fluent_builders::AssociateQualificationWithWorker::worker_id) / [`set_worker_id(Option<String>)`](crate::client::fluent_builders::AssociateQualificationWithWorker::set_worker_id): <p> The ID of the Worker to whom the Qualification is being assigned. Worker IDs are included with submitted HIT assignments and Qualification requests. </p>
    ///   - [`integer_value(i32)`](crate::client::fluent_builders::AssociateQualificationWithWorker::integer_value) / [`set_integer_value(Option<i32>)`](crate::client::fluent_builders::AssociateQualificationWithWorker::set_integer_value): <p>The value of the Qualification to assign.</p>
    ///   - [`send_notification(bool)`](crate::client::fluent_builders::AssociateQualificationWithWorker::send_notification) / [`set_send_notification(Option<bool>)`](crate::client::fluent_builders::AssociateQualificationWithWorker::set_send_notification): <p> Specifies whether to send a notification email message to the Worker saying that the qualification was assigned to the Worker. Note: this is true by default. </p>
    /// - On success, responds with [`AssociateQualificationWithWorkerOutput`](crate::output::AssociateQualificationWithWorkerOutput)

    /// - On failure, responds with [`SdkError<AssociateQualificationWithWorkerError>`](crate::error::AssociateQualificationWithWorkerError)
    pub fn associate_qualification_with_worker(
        &self,
    ) -> fluent_builders::AssociateQualificationWithWorker {
        fluent_builders::AssociateQualificationWithWorker::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`CreateAdditionalAssignmentsForHIT`](crate::client::fluent_builders::CreateAdditionalAssignmentsForHIT) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_id(impl Into<String>)`](crate::client::fluent_builders::CreateAdditionalAssignmentsForHIT::hit_id) / [`set_hit_id(Option<String>)`](crate::client::fluent_builders::CreateAdditionalAssignmentsForHIT::set_hit_id): <p>The ID of the HIT to extend.</p>
    ///   - [`number_of_additional_assignments(i32)`](crate::client::fluent_builders::CreateAdditionalAssignmentsForHIT::number_of_additional_assignments) / [`set_number_of_additional_assignments(Option<i32>)`](crate::client::fluent_builders::CreateAdditionalAssignmentsForHIT::set_number_of_additional_assignments): <p>The number of additional assignments to request for this HIT.</p>
    ///   - [`unique_request_token(impl Into<String>)`](crate::client::fluent_builders::CreateAdditionalAssignmentsForHIT::unique_request_token) / [`set_unique_request_token(Option<String>)`](crate::client::fluent_builders::CreateAdditionalAssignmentsForHIT::set_unique_request_token): <p> A unique identifier for this request, which allows you to retry the call on error without extending the HIT multiple times. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the extend HIT already exists in the system from a previous call using the same <code>UniqueRequestToken</code>, subsequent calls will return an error with a message containing the request ID. </p>
    /// - On success, responds with [`CreateAdditionalAssignmentsForHitOutput`](crate::output::CreateAdditionalAssignmentsForHitOutput)

    /// - On failure, responds with [`SdkError<CreateAdditionalAssignmentsForHITError>`](crate::error::CreateAdditionalAssignmentsForHITError)
    pub fn create_additional_assignments_for_hit(
        &self,
    ) -> fluent_builders::CreateAdditionalAssignmentsForHIT {
        fluent_builders::CreateAdditionalAssignmentsForHIT::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`CreateHIT`](crate::client::fluent_builders::CreateHIT) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_assignments(i32)`](crate::client::fluent_builders::CreateHIT::max_assignments) / [`set_max_assignments(Option<i32>)`](crate::client::fluent_builders::CreateHIT::set_max_assignments): <p> The number of times the HIT can be accepted and completed before the HIT becomes unavailable. </p>
    ///   - [`auto_approval_delay_in_seconds(i64)`](crate::client::fluent_builders::CreateHIT::auto_approval_delay_in_seconds) / [`set_auto_approval_delay_in_seconds(Option<i64>)`](crate::client::fluent_builders::CreateHIT::set_auto_approval_delay_in_seconds): <p> The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it. </p>
    ///   - [`lifetime_in_seconds(i64)`](crate::client::fluent_builders::CreateHIT::lifetime_in_seconds) / [`set_lifetime_in_seconds(Option<i64>)`](crate::client::fluent_builders::CreateHIT::set_lifetime_in_seconds): <p> An amount of time, in seconds, after which the HIT is no longer available for users to accept. After the lifetime of the HIT elapses, the HIT no longer appears in HIT searches, even if not all of the assignments for the HIT have been accepted. </p>
    ///   - [`assignment_duration_in_seconds(i64)`](crate::client::fluent_builders::CreateHIT::assignment_duration_in_seconds) / [`set_assignment_duration_in_seconds(Option<i64>)`](crate::client::fluent_builders::CreateHIT::set_assignment_duration_in_seconds): <p> The amount of time, in seconds, that a Worker has to complete the HIT after accepting it. If a Worker does not complete the assignment within the specified duration, the assignment is considered abandoned. If the HIT is still active (that is, its lifetime has not elapsed), the assignment becomes available for other users to find and accept. </p>
    ///   - [`reward(impl Into<String>)`](crate::client::fluent_builders::CreateHIT::reward) / [`set_reward(Option<String>)`](crate::client::fluent_builders::CreateHIT::set_reward): <p> The amount of money the Requester will pay a Worker for successfully completing the HIT. </p>
    ///   - [`title(impl Into<String>)`](crate::client::fluent_builders::CreateHIT::title) / [`set_title(Option<String>)`](crate::client::fluent_builders::CreateHIT::set_title): <p> The title of the HIT. A title should be short and descriptive about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT title appears in search results, and everywhere the HIT is mentioned. </p>
    ///   - [`keywords(impl Into<String>)`](crate::client::fluent_builders::CreateHIT::keywords) / [`set_keywords(Option<String>)`](crate::client::fluent_builders::CreateHIT::set_keywords): <p> One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs. </p>
    ///   - [`description(impl Into<String>)`](crate::client::fluent_builders::CreateHIT::description) / [`set_description(Option<String>)`](crate::client::fluent_builders::CreateHIT::set_description): <p> A general description of the HIT. A description includes detailed information about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT description appears in the expanded view of search results, and in the HIT and assignment screens. A good description gives the user enough information to evaluate the HIT before accepting it. </p>
    ///   - [`question(impl Into<String>)`](crate::client::fluent_builders::CreateHIT::question) / [`set_question(Option<String>)`](crate::client::fluent_builders::CreateHIT::set_question): <p> The data the person completing the HIT uses to produce the results. </p>  <p> Constraints: Must be a QuestionForm data structure, an ExternalQuestion data structure, or an HTMLQuestion data structure. The XML question data must not be larger than 64 kilobytes (65,535 bytes) in size, including whitespace. </p>  <p>Either a Question parameter or a HITLayoutId parameter must be provided.</p>
    ///   - [`requester_annotation(impl Into<String>)`](crate::client::fluent_builders::CreateHIT::requester_annotation) / [`set_requester_annotation(Option<String>)`](crate::client::fluent_builders::CreateHIT::set_requester_annotation): <p> An arbitrary data field. The RequesterAnnotation parameter lets your application attach arbitrary data to the HIT for tracking purposes. For example, this parameter could be an identifier internal to the Requester's application that corresponds with the HIT. </p>  <p> The RequesterAnnotation parameter for a HIT is only visible to the Requester who created the HIT. It is not shown to the Worker, or any other Requester. </p>  <p> The RequesterAnnotation parameter may be different for each HIT you submit. It does not affect how your HITs are grouped. </p>
    ///   - [`qualification_requirements(Vec<QualificationRequirement>)`](crate::client::fluent_builders::CreateHIT::qualification_requirements) / [`set_qualification_requirements(Option<Vec<QualificationRequirement>>)`](crate::client::fluent_builders::CreateHIT::set_qualification_requirements): <p> Conditions that a Worker's Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the <code>ActionsGuarded</code> field on each <code>QualificationRequirement</code> structure. </p>
    ///   - [`unique_request_token(impl Into<String>)`](crate::client::fluent_builders::CreateHIT::unique_request_token) / [`set_unique_request_token(Option<String>)`](crate::client::fluent_builders::CreateHIT::set_unique_request_token): <p> A unique identifier for this request which allows you to retry the call on error without creating duplicate HITs. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the HIT already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return a AWS.MechanicalTurk.HitAlreadyExists error with a message containing the HITId. </p> <note>   <p> Note: It is your responsibility to ensure uniqueness of the token. The unique token expires after 24 hours. Subsequent calls using the same UniqueRequestToken made after the 24 hour limit could create duplicate HITs. </p>  </note>
    ///   - [`assignment_review_policy(ReviewPolicy)`](crate::client::fluent_builders::CreateHIT::assignment_review_policy) / [`set_assignment_review_policy(Option<ReviewPolicy>)`](crate::client::fluent_builders::CreateHIT::set_assignment_review_policy): <p> The Assignment-level Review Policy applies to the assignments under the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
    ///   - [`hit_review_policy(ReviewPolicy)`](crate::client::fluent_builders::CreateHIT::hit_review_policy) / [`set_hit_review_policy(Option<ReviewPolicy>)`](crate::client::fluent_builders::CreateHIT::set_hit_review_policy): <p> The HIT-level Review Policy applies to the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
    ///   - [`hit_layout_id(impl Into<String>)`](crate::client::fluent_builders::CreateHIT::hit_layout_id) / [`set_hit_layout_id(Option<String>)`](crate::client::fluent_builders::CreateHIT::set_hit_layout_id): <p> The HITLayoutId allows you to use a pre-existing HIT design with placeholder values and create an additional HIT by providing those values as HITLayoutParameters. </p>  <p> Constraints: Either a Question parameter or a HITLayoutId parameter must be provided. </p>
    ///   - [`hit_layout_parameters(Vec<HitLayoutParameter>)`](crate::client::fluent_builders::CreateHIT::hit_layout_parameters) / [`set_hit_layout_parameters(Option<Vec<HitLayoutParameter>>)`](crate::client::fluent_builders::CreateHIT::set_hit_layout_parameters): <p> If the HITLayoutId is provided, any placeholder values must be filled in with values using the HITLayoutParameter structure. For more information, see HITLayout. </p>
    /// - On success, responds with [`CreateHitOutput`](crate::output::CreateHitOutput) with field(s):
    ///   - [`hit(Option<Hit>)`](crate::output::CreateHitOutput::hit): <p> Contains the newly created HIT data. For a description of the HIT data structure as it appears in responses, see the HIT Data Structure documentation. </p>
    /// - On failure, responds with [`SdkError<CreateHITError>`](crate::error::CreateHITError)
    pub fn create_hit(&self) -> fluent_builders::CreateHIT {
        fluent_builders::CreateHIT::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`CreateHITType`](crate::client::fluent_builders::CreateHITType) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`auto_approval_delay_in_seconds(i64)`](crate::client::fluent_builders::CreateHITType::auto_approval_delay_in_seconds) / [`set_auto_approval_delay_in_seconds(Option<i64>)`](crate::client::fluent_builders::CreateHITType::set_auto_approval_delay_in_seconds): <p> The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it. </p>
    ///   - [`assignment_duration_in_seconds(i64)`](crate::client::fluent_builders::CreateHITType::assignment_duration_in_seconds) / [`set_assignment_duration_in_seconds(Option<i64>)`](crate::client::fluent_builders::CreateHITType::set_assignment_duration_in_seconds): <p> The amount of time, in seconds, that a Worker has to complete the HIT after accepting it. If a Worker does not complete the assignment within the specified duration, the assignment is considered abandoned. If the HIT is still active (that is, its lifetime has not elapsed), the assignment becomes available for other users to find and accept. </p>
    ///   - [`reward(impl Into<String>)`](crate::client::fluent_builders::CreateHITType::reward) / [`set_reward(Option<String>)`](crate::client::fluent_builders::CreateHITType::set_reward): <p> The amount of money the Requester will pay a Worker for successfully completing the HIT. </p>
    ///   - [`title(impl Into<String>)`](crate::client::fluent_builders::CreateHITType::title) / [`set_title(Option<String>)`](crate::client::fluent_builders::CreateHITType::set_title): <p> The title of the HIT. A title should be short and descriptive about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT title appears in search results, and everywhere the HIT is mentioned. </p>
    ///   - [`keywords(impl Into<String>)`](crate::client::fluent_builders::CreateHITType::keywords) / [`set_keywords(Option<String>)`](crate::client::fluent_builders::CreateHITType::set_keywords): <p> One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs. </p>
    ///   - [`description(impl Into<String>)`](crate::client::fluent_builders::CreateHITType::description) / [`set_description(Option<String>)`](crate::client::fluent_builders::CreateHITType::set_description): <p> A general description of the HIT. A description includes detailed information about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT description appears in the expanded view of search results, and in the HIT and assignment screens. A good description gives the user enough information to evaluate the HIT before accepting it. </p>
    ///   - [`qualification_requirements(Vec<QualificationRequirement>)`](crate::client::fluent_builders::CreateHITType::qualification_requirements) / [`set_qualification_requirements(Option<Vec<QualificationRequirement>>)`](crate::client::fluent_builders::CreateHITType::set_qualification_requirements): <p> Conditions that a Worker's Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the <code>ActionsGuarded</code> field on each <code>QualificationRequirement</code> structure. </p>
    /// - On success, responds with [`CreateHitTypeOutput`](crate::output::CreateHitTypeOutput) with field(s):
    ///   - [`hit_type_id(Option<String>)`](crate::output::CreateHitTypeOutput::hit_type_id): <p> The ID of the newly registered HIT type.</p>
    /// - On failure, responds with [`SdkError<CreateHITTypeError>`](crate::error::CreateHITTypeError)
    pub fn create_hit_type(&self) -> fluent_builders::CreateHITType {
        fluent_builders::CreateHITType::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`CreateHITWithHITType`](crate::client::fluent_builders::CreateHITWithHITType) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_type_id(impl Into<String>)`](crate::client::fluent_builders::CreateHITWithHITType::hit_type_id) / [`set_hit_type_id(Option<String>)`](crate::client::fluent_builders::CreateHITWithHITType::set_hit_type_id): <p>The HIT type ID you want to create this HIT with.</p>
    ///   - [`max_assignments(i32)`](crate::client::fluent_builders::CreateHITWithHITType::max_assignments) / [`set_max_assignments(Option<i32>)`](crate::client::fluent_builders::CreateHITWithHITType::set_max_assignments): <p> The number of times the HIT can be accepted and completed before the HIT becomes unavailable. </p>
    ///   - [`lifetime_in_seconds(i64)`](crate::client::fluent_builders::CreateHITWithHITType::lifetime_in_seconds) / [`set_lifetime_in_seconds(Option<i64>)`](crate::client::fluent_builders::CreateHITWithHITType::set_lifetime_in_seconds): <p> An amount of time, in seconds, after which the HIT is no longer available for users to accept. After the lifetime of the HIT elapses, the HIT no longer appears in HIT searches, even if not all of the assignments for the HIT have been accepted. </p>
    ///   - [`question(impl Into<String>)`](crate::client::fluent_builders::CreateHITWithHITType::question) / [`set_question(Option<String>)`](crate::client::fluent_builders::CreateHITWithHITType::set_question): <p> The data the person completing the HIT uses to produce the results. </p>  <p> Constraints: Must be a QuestionForm data structure, an ExternalQuestion data structure, or an HTMLQuestion data structure. The XML question data must not be larger than 64 kilobytes (65,535 bytes) in size, including whitespace. </p>  <p>Either a Question parameter or a HITLayoutId parameter must be provided.</p>
    ///   - [`requester_annotation(impl Into<String>)`](crate::client::fluent_builders::CreateHITWithHITType::requester_annotation) / [`set_requester_annotation(Option<String>)`](crate::client::fluent_builders::CreateHITWithHITType::set_requester_annotation): <p> An arbitrary data field. The RequesterAnnotation parameter lets your application attach arbitrary data to the HIT for tracking purposes. For example, this parameter could be an identifier internal to the Requester's application that corresponds with the HIT. </p>  <p> The RequesterAnnotation parameter for a HIT is only visible to the Requester who created the HIT. It is not shown to the Worker, or any other Requester. </p>  <p> The RequesterAnnotation parameter may be different for each HIT you submit. It does not affect how your HITs are grouped. </p>
    ///   - [`unique_request_token(impl Into<String>)`](crate::client::fluent_builders::CreateHITWithHITType::unique_request_token) / [`set_unique_request_token(Option<String>)`](crate::client::fluent_builders::CreateHITWithHITType::set_unique_request_token): <p> A unique identifier for this request which allows you to retry the call on error without creating duplicate HITs. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the HIT already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return a AWS.MechanicalTurk.HitAlreadyExists error with a message containing the HITId. </p> <note>   <p> Note: It is your responsibility to ensure uniqueness of the token. The unique token expires after 24 hours. Subsequent calls using the same UniqueRequestToken made after the 24 hour limit could create duplicate HITs. </p>  </note>
    ///   - [`assignment_review_policy(ReviewPolicy)`](crate::client::fluent_builders::CreateHITWithHITType::assignment_review_policy) / [`set_assignment_review_policy(Option<ReviewPolicy>)`](crate::client::fluent_builders::CreateHITWithHITType::set_assignment_review_policy): <p> The Assignment-level Review Policy applies to the assignments under the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
    ///   - [`hit_review_policy(ReviewPolicy)`](crate::client::fluent_builders::CreateHITWithHITType::hit_review_policy) / [`set_hit_review_policy(Option<ReviewPolicy>)`](crate::client::fluent_builders::CreateHITWithHITType::set_hit_review_policy): <p> The HIT-level Review Policy applies to the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
    ///   - [`hit_layout_id(impl Into<String>)`](crate::client::fluent_builders::CreateHITWithHITType::hit_layout_id) / [`set_hit_layout_id(Option<String>)`](crate::client::fluent_builders::CreateHITWithHITType::set_hit_layout_id): <p> The HITLayoutId allows you to use a pre-existing HIT design with placeholder values and create an additional HIT by providing those values as HITLayoutParameters. </p>  <p> Constraints: Either a Question parameter or a HITLayoutId parameter must be provided. </p>
    ///   - [`hit_layout_parameters(Vec<HitLayoutParameter>)`](crate::client::fluent_builders::CreateHITWithHITType::hit_layout_parameters) / [`set_hit_layout_parameters(Option<Vec<HitLayoutParameter>>)`](crate::client::fluent_builders::CreateHITWithHITType::set_hit_layout_parameters): <p> If the HITLayoutId is provided, any placeholder values must be filled in with values using the HITLayoutParameter structure. For more information, see HITLayout. </p>
    /// - On success, responds with [`CreateHitWithHitTypeOutput`](crate::output::CreateHitWithHitTypeOutput) with field(s):
    ///   - [`hit(Option<Hit>)`](crate::output::CreateHitWithHitTypeOutput::hit): <p> Contains the newly created HIT data. For a description of the HIT data structure as it appears in responses, see the HIT Data Structure documentation. </p>
    /// - On failure, responds with [`SdkError<CreateHITWithHITTypeError>`](crate::error::CreateHITWithHITTypeError)
    pub fn create_hit_with_hit_type(&self) -> fluent_builders::CreateHITWithHITType {
        fluent_builders::CreateHITWithHITType::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`CreateQualificationType`](crate::client::fluent_builders::CreateQualificationType) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::client::fluent_builders::CreateQualificationType::name) / [`set_name(Option<String>)`](crate::client::fluent_builders::CreateQualificationType::set_name): <p> The name you give to the Qualification type. The type name is used to represent the Qualification to Workers, and to find the type using a Qualification type search. It must be unique across all of your Qualification types.</p>
    ///   - [`keywords(impl Into<String>)`](crate::client::fluent_builders::CreateQualificationType::keywords) / [`set_keywords(Option<String>)`](crate::client::fluent_builders::CreateQualificationType::set_keywords): <p>One or more words or phrases that describe the Qualification type, separated by commas. The keywords of a type make the type easier to find during a search.</p>
    ///   - [`description(impl Into<String>)`](crate::client::fluent_builders::CreateQualificationType::description) / [`set_description(Option<String>)`](crate::client::fluent_builders::CreateQualificationType::set_description): <p>A long description for the Qualification type. On the Amazon Mechanical Turk website, the long description is displayed when a Worker examines a Qualification type.</p>
    ///   - [`qualification_type_status(QualificationTypeStatus)`](crate::client::fluent_builders::CreateQualificationType::qualification_type_status) / [`set_qualification_type_status(Option<QualificationTypeStatus>)`](crate::client::fluent_builders::CreateQualificationType::set_qualification_type_status): <p>The initial status of the Qualification type.</p>  <p>Constraints: Valid values are: Active | Inactive</p>
    ///   - [`retry_delay_in_seconds(i64)`](crate::client::fluent_builders::CreateQualificationType::retry_delay_in_seconds) / [`set_retry_delay_in_seconds(Option<i64>)`](crate::client::fluent_builders::CreateQualificationType::set_retry_delay_in_seconds): <p>The number of seconds that a Worker must wait after requesting a Qualification of the Qualification type before the worker can retry the Qualification request.</p>  <p>Constraints: None. If not specified, retries are disabled and Workers can request a Qualification of this type only once, even if the Worker has not been granted the Qualification. It is not possible to disable retries for a Qualification type after it has been created with retries enabled. If you want to disable retries, you must delete existing retry-enabled Qualification type and then create a new Qualification type with retries disabled.</p>
    ///   - [`test(impl Into<String>)`](crate::client::fluent_builders::CreateQualificationType::test) / [`set_test(Option<String>)`](crate::client::fluent_builders::CreateQualificationType::set_test): <p> The questions for the Qualification test a Worker must answer correctly to obtain a Qualification of this type. If this parameter is specified, <code>TestDurationInSeconds</code> must also be specified. </p>  <p>Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm data structure. This parameter cannot be specified if AutoGranted is true.</p>  <p>Constraints: None. If not specified, the Worker may request the Qualification without answering any questions.</p>
    ///   - [`answer_key(impl Into<String>)`](crate::client::fluent_builders::CreateQualificationType::answer_key) / [`set_answer_key(Option<String>)`](crate::client::fluent_builders::CreateQualificationType::set_answer_key): <p>The answers to the Qualification test specified in the Test parameter, in the form of an AnswerKey data structure.</p>  <p>Constraints: Must not be longer than 65535 bytes.</p>  <p>Constraints: None. If not specified, you must process Qualification requests manually.</p>
    ///   - [`test_duration_in_seconds(i64)`](crate::client::fluent_builders::CreateQualificationType::test_duration_in_seconds) / [`set_test_duration_in_seconds(Option<i64>)`](crate::client::fluent_builders::CreateQualificationType::set_test_duration_in_seconds): <p>The number of seconds the Worker has to complete the Qualification test, starting from the time the Worker requests the Qualification.</p>
    ///   - [`auto_granted(bool)`](crate::client::fluent_builders::CreateQualificationType::auto_granted) / [`set_auto_granted(Option<bool>)`](crate::client::fluent_builders::CreateQualificationType::set_auto_granted): <p>Specifies whether requests for the Qualification type are granted immediately, without prompting the Worker with a Qualification test.</p>  <p>Constraints: If the Test parameter is specified, this parameter cannot be true.</p>
    ///   - [`auto_granted_value(i32)`](crate::client::fluent_builders::CreateQualificationType::auto_granted_value) / [`set_auto_granted_value(Option<i32>)`](crate::client::fluent_builders::CreateQualificationType::set_auto_granted_value): <p>The Qualification value to use for automatically granted Qualifications. This parameter is used only if the AutoGranted parameter is true.</p>
    /// - On success, responds with [`CreateQualificationTypeOutput`](crate::output::CreateQualificationTypeOutput) with field(s):
    ///   - [`qualification_type(Option<QualificationType>)`](crate::output::CreateQualificationTypeOutput::qualification_type): <p>The created Qualification type, returned as a QualificationType data structure.</p>
    /// - On failure, responds with [`SdkError<CreateQualificationTypeError>`](crate::error::CreateQualificationTypeError)
    pub fn create_qualification_type(&self) -> fluent_builders::CreateQualificationType {
        fluent_builders::CreateQualificationType::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`CreateWorkerBlock`](crate::client::fluent_builders::CreateWorkerBlock) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`worker_id(impl Into<String>)`](crate::client::fluent_builders::CreateWorkerBlock::worker_id) / [`set_worker_id(Option<String>)`](crate::client::fluent_builders::CreateWorkerBlock::set_worker_id): <p>The ID of the Worker to block.</p>
    ///   - [`reason(impl Into<String>)`](crate::client::fluent_builders::CreateWorkerBlock::reason) / [`set_reason(Option<String>)`](crate::client::fluent_builders::CreateWorkerBlock::set_reason): <p>A message explaining the reason for blocking the Worker. This parameter enables you to keep track of your Workers. The Worker does not see this message.</p>
    /// - On success, responds with [`CreateWorkerBlockOutput`](crate::output::CreateWorkerBlockOutput)

    /// - On failure, responds with [`SdkError<CreateWorkerBlockError>`](crate::error::CreateWorkerBlockError)
    pub fn create_worker_block(&self) -> fluent_builders::CreateWorkerBlock {
        fluent_builders::CreateWorkerBlock::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`DeleteHIT`](crate::client::fluent_builders::DeleteHIT) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_id(impl Into<String>)`](crate::client::fluent_builders::DeleteHIT::hit_id) / [`set_hit_id(Option<String>)`](crate::client::fluent_builders::DeleteHIT::set_hit_id): <p>The ID of the HIT to be deleted.</p>
    /// - On success, responds with [`DeleteHitOutput`](crate::output::DeleteHitOutput)

    /// - On failure, responds with [`SdkError<DeleteHITError>`](crate::error::DeleteHITError)
    pub fn delete_hit(&self) -> fluent_builders::DeleteHIT {
        fluent_builders::DeleteHIT::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`DeleteQualificationType`](crate::client::fluent_builders::DeleteQualificationType) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`qualification_type_id(impl Into<String>)`](crate::client::fluent_builders::DeleteQualificationType::qualification_type_id) / [`set_qualification_type_id(Option<String>)`](crate::client::fluent_builders::DeleteQualificationType::set_qualification_type_id): <p>The ID of the QualificationType to dispose.</p>
    /// - On success, responds with [`DeleteQualificationTypeOutput`](crate::output::DeleteQualificationTypeOutput)

    /// - On failure, responds with [`SdkError<DeleteQualificationTypeError>`](crate::error::DeleteQualificationTypeError)
    pub fn delete_qualification_type(&self) -> fluent_builders::DeleteQualificationType {
        fluent_builders::DeleteQualificationType::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`DeleteWorkerBlock`](crate::client::fluent_builders::DeleteWorkerBlock) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`worker_id(impl Into<String>)`](crate::client::fluent_builders::DeleteWorkerBlock::worker_id) / [`set_worker_id(Option<String>)`](crate::client::fluent_builders::DeleteWorkerBlock::set_worker_id): <p>The ID of the Worker to unblock.</p>
    ///   - [`reason(impl Into<String>)`](crate::client::fluent_builders::DeleteWorkerBlock::reason) / [`set_reason(Option<String>)`](crate::client::fluent_builders::DeleteWorkerBlock::set_reason): <p>A message that explains the reason for unblocking the Worker. The Worker does not see this message.</p>
    /// - On success, responds with [`DeleteWorkerBlockOutput`](crate::output::DeleteWorkerBlockOutput)

    /// - On failure, responds with [`SdkError<DeleteWorkerBlockError>`](crate::error::DeleteWorkerBlockError)
    pub fn delete_worker_block(&self) -> fluent_builders::DeleteWorkerBlock {
        fluent_builders::DeleteWorkerBlock::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`DisassociateQualificationFromWorker`](crate::client::fluent_builders::DisassociateQualificationFromWorker) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`worker_id(impl Into<String>)`](crate::client::fluent_builders::DisassociateQualificationFromWorker::worker_id) / [`set_worker_id(Option<String>)`](crate::client::fluent_builders::DisassociateQualificationFromWorker::set_worker_id): <p>The ID of the Worker who possesses the Qualification to be revoked.</p>
    ///   - [`qualification_type_id(impl Into<String>)`](crate::client::fluent_builders::DisassociateQualificationFromWorker::qualification_type_id) / [`set_qualification_type_id(Option<String>)`](crate::client::fluent_builders::DisassociateQualificationFromWorker::set_qualification_type_id): <p>The ID of the Qualification type of the Qualification to be revoked.</p>
    ///   - [`reason(impl Into<String>)`](crate::client::fluent_builders::DisassociateQualificationFromWorker::reason) / [`set_reason(Option<String>)`](crate::client::fluent_builders::DisassociateQualificationFromWorker::set_reason): <p>A text message that explains why the Qualification was revoked. The user who had the Qualification sees this message.</p>
    /// - On success, responds with [`DisassociateQualificationFromWorkerOutput`](crate::output::DisassociateQualificationFromWorkerOutput)

    /// - On failure, responds with [`SdkError<DisassociateQualificationFromWorkerError>`](crate::error::DisassociateQualificationFromWorkerError)
    pub fn disassociate_qualification_from_worker(
        &self,
    ) -> fluent_builders::DisassociateQualificationFromWorker {
        fluent_builders::DisassociateQualificationFromWorker::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`GetAccountBalance`](crate::client::fluent_builders::GetAccountBalance) operation.
    ///
    /// - The fluent builder takes no input, just [`send`](crate::client::fluent_builders::GetAccountBalance::send) it.

    /// - On success, responds with [`GetAccountBalanceOutput`](crate::output::GetAccountBalanceOutput) with field(s):
    ///   - [`available_balance(Option<String>)`](crate::output::GetAccountBalanceOutput::available_balance): <p>A string representing a currency amount.</p>
    ///   - [`on_hold_balance(Option<String>)`](crate::output::GetAccountBalanceOutput::on_hold_balance): <p>A string representing a currency amount.</p>
    /// - On failure, responds with [`SdkError<GetAccountBalanceError>`](crate::error::GetAccountBalanceError)
    pub fn get_account_balance(&self) -> fluent_builders::GetAccountBalance {
        fluent_builders::GetAccountBalance::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`GetAssignment`](crate::client::fluent_builders::GetAssignment) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`assignment_id(impl Into<String>)`](crate::client::fluent_builders::GetAssignment::assignment_id) / [`set_assignment_id(Option<String>)`](crate::client::fluent_builders::GetAssignment::set_assignment_id): <p>The ID of the Assignment to be retrieved.</p>
    /// - On success, responds with [`GetAssignmentOutput`](crate::output::GetAssignmentOutput) with field(s):
    ///   - [`assignment(Option<Assignment>)`](crate::output::GetAssignmentOutput::assignment): <p> The assignment. The response includes one Assignment element. </p>
    ///   - [`hit(Option<Hit>)`](crate::output::GetAssignmentOutput::hit): <p> The HIT associated with this assignment. The response includes one HIT element.</p>
    /// - On failure, responds with [`SdkError<GetAssignmentError>`](crate::error::GetAssignmentError)
    pub fn get_assignment(&self) -> fluent_builders::GetAssignment {
        fluent_builders::GetAssignment::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`GetFileUploadURL`](crate::client::fluent_builders::GetFileUploadURL) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`assignment_id(impl Into<String>)`](crate::client::fluent_builders::GetFileUploadURL::assignment_id) / [`set_assignment_id(Option<String>)`](crate::client::fluent_builders::GetFileUploadURL::set_assignment_id): <p>The ID of the assignment that contains the question with a FileUploadAnswer.</p>
    ///   - [`question_identifier(impl Into<String>)`](crate::client::fluent_builders::GetFileUploadURL::question_identifier) / [`set_question_identifier(Option<String>)`](crate::client::fluent_builders::GetFileUploadURL::set_question_identifier): <p>The identifier of the question with a FileUploadAnswer, as specified in the QuestionForm of the HIT.</p>
    /// - On success, responds with [`GetFileUploadUrlOutput`](crate::output::GetFileUploadUrlOutput) with field(s):
    ///   - [`file_upload_url(Option<String>)`](crate::output::GetFileUploadUrlOutput::file_upload_url): <p> A temporary URL for the file that the Worker uploaded for the answer. </p>
    /// - On failure, responds with [`SdkError<GetFileUploadURLError>`](crate::error::GetFileUploadURLError)
    pub fn get_file_upload_url(&self) -> fluent_builders::GetFileUploadURL {
        fluent_builders::GetFileUploadURL::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`GetHIT`](crate::client::fluent_builders::GetHIT) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_id(impl Into<String>)`](crate::client::fluent_builders::GetHIT::hit_id) / [`set_hit_id(Option<String>)`](crate::client::fluent_builders::GetHIT::set_hit_id): <p>The ID of the HIT to be retrieved.</p>
    /// - On success, responds with [`GetHitOutput`](crate::output::GetHitOutput) with field(s):
    ///   - [`hit(Option<Hit>)`](crate::output::GetHitOutput::hit): <p> Contains the requested HIT data.</p>
    /// - On failure, responds with [`SdkError<GetHITError>`](crate::error::GetHITError)
    pub fn get_hit(&self) -> fluent_builders::GetHIT {
        fluent_builders::GetHIT::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`GetQualificationScore`](crate::client::fluent_builders::GetQualificationScore) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`qualification_type_id(impl Into<String>)`](crate::client::fluent_builders::GetQualificationScore::qualification_type_id) / [`set_qualification_type_id(Option<String>)`](crate::client::fluent_builders::GetQualificationScore::set_qualification_type_id): <p>The ID of the QualificationType.</p>
    ///   - [`worker_id(impl Into<String>)`](crate::client::fluent_builders::GetQualificationScore::worker_id) / [`set_worker_id(Option<String>)`](crate::client::fluent_builders::GetQualificationScore::set_worker_id): <p>The ID of the Worker whose Qualification is being updated.</p>
    /// - On success, responds with [`GetQualificationScoreOutput`](crate::output::GetQualificationScoreOutput) with field(s):
    ///   - [`qualification(Option<Qualification>)`](crate::output::GetQualificationScoreOutput::qualification): <p> The Qualification data structure of the Qualification assigned to a user, including the Qualification type and the value (score). </p>
    /// - On failure, responds with [`SdkError<GetQualificationScoreError>`](crate::error::GetQualificationScoreError)
    pub fn get_qualification_score(&self) -> fluent_builders::GetQualificationScore {
        fluent_builders::GetQualificationScore::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`GetQualificationType`](crate::client::fluent_builders::GetQualificationType) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`qualification_type_id(impl Into<String>)`](crate::client::fluent_builders::GetQualificationType::qualification_type_id) / [`set_qualification_type_id(Option<String>)`](crate::client::fluent_builders::GetQualificationType::set_qualification_type_id): <p>The ID of the QualificationType.</p>
    /// - On success, responds with [`GetQualificationTypeOutput`](crate::output::GetQualificationTypeOutput) with field(s):
    ///   - [`qualification_type(Option<QualificationType>)`](crate::output::GetQualificationTypeOutput::qualification_type): <p> The returned Qualification Type</p>
    /// - On failure, responds with [`SdkError<GetQualificationTypeError>`](crate::error::GetQualificationTypeError)
    pub fn get_qualification_type(&self) -> fluent_builders::GetQualificationType {
        fluent_builders::GetQualificationType::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ListAssignmentsForHIT`](crate::client::fluent_builders::ListAssignmentsForHIT) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::client::fluent_builders::ListAssignmentsForHIT::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_id(impl Into<String>)`](crate::client::fluent_builders::ListAssignmentsForHIT::hit_id) / [`set_hit_id(Option<String>)`](crate::client::fluent_builders::ListAssignmentsForHIT::set_hit_id): <p>The ID of the HIT.</p>
    ///   - [`next_token(impl Into<String>)`](crate::client::fluent_builders::ListAssignmentsForHIT::next_token) / [`set_next_token(Option<String>)`](crate::client::fluent_builders::ListAssignmentsForHIT::set_next_token): <p>Pagination token</p>
    ///   - [`max_results(i32)`](crate::client::fluent_builders::ListAssignmentsForHIT::max_results) / [`set_max_results(Option<i32>)`](crate::client::fluent_builders::ListAssignmentsForHIT::set_max_results): (undocumented)
    ///   - [`assignment_statuses(Vec<AssignmentStatus>)`](crate::client::fluent_builders::ListAssignmentsForHIT::assignment_statuses) / [`set_assignment_statuses(Option<Vec<AssignmentStatus>>)`](crate::client::fluent_builders::ListAssignmentsForHIT::set_assignment_statuses): <p>The status of the assignments to return: Submitted | Approved | Rejected</p>
    /// - On success, responds with [`ListAssignmentsForHitOutput`](crate::output::ListAssignmentsForHitOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::output::ListAssignmentsForHitOutput::next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`num_results(Option<i32>)`](crate::output::ListAssignmentsForHitOutput::num_results): <p> The number of assignments on the page in the filtered results list, equivalent to the number of assignments returned by this call.</p>
    ///   - [`assignments(Option<Vec<Assignment>>)`](crate::output::ListAssignmentsForHitOutput::assignments): <p> The collection of Assignment data structures returned by this call.</p>
    /// - On failure, responds with [`SdkError<ListAssignmentsForHITError>`](crate::error::ListAssignmentsForHITError)
    pub fn list_assignments_for_hit(&self) -> fluent_builders::ListAssignmentsForHIT {
        fluent_builders::ListAssignmentsForHIT::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ListBonusPayments`](crate::client::fluent_builders::ListBonusPayments) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::client::fluent_builders::ListBonusPayments::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_id(impl Into<String>)`](crate::client::fluent_builders::ListBonusPayments::hit_id) / [`set_hit_id(Option<String>)`](crate::client::fluent_builders::ListBonusPayments::set_hit_id): <p>The ID of the HIT associated with the bonus payments to retrieve. If not specified, all bonus payments for all assignments for the given HIT are returned. Either the HITId parameter or the AssignmentId parameter must be specified</p>
    ///   - [`assignment_id(impl Into<String>)`](crate::client::fluent_builders::ListBonusPayments::assignment_id) / [`set_assignment_id(Option<String>)`](crate::client::fluent_builders::ListBonusPayments::set_assignment_id): <p>The ID of the assignment associated with the bonus payments to retrieve. If specified, only bonus payments for the given assignment are returned. Either the HITId parameter or the AssignmentId parameter must be specified</p>
    ///   - [`next_token(impl Into<String>)`](crate::client::fluent_builders::ListBonusPayments::next_token) / [`set_next_token(Option<String>)`](crate::client::fluent_builders::ListBonusPayments::set_next_token): <p>Pagination token</p>
    ///   - [`max_results(i32)`](crate::client::fluent_builders::ListBonusPayments::max_results) / [`set_max_results(Option<i32>)`](crate::client::fluent_builders::ListBonusPayments::set_max_results): (undocumented)
    /// - On success, responds with [`ListBonusPaymentsOutput`](crate::output::ListBonusPaymentsOutput) with field(s):
    ///   - [`num_results(Option<i32>)`](crate::output::ListBonusPaymentsOutput::num_results): <p>The number of bonus payments on this page in the filtered results list, equivalent to the number of bonus payments being returned by this call. </p>
    ///   - [`next_token(Option<String>)`](crate::output::ListBonusPaymentsOutput::next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`bonus_payments(Option<Vec<BonusPayment>>)`](crate::output::ListBonusPaymentsOutput::bonus_payments): <p>A successful request to the ListBonusPayments operation returns a list of BonusPayment objects. </p>
    /// - On failure, responds with [`SdkError<ListBonusPaymentsError>`](crate::error::ListBonusPaymentsError)
    pub fn list_bonus_payments(&self) -> fluent_builders::ListBonusPayments {
        fluent_builders::ListBonusPayments::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ListHITs`](crate::client::fluent_builders::ListHITs) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::client::fluent_builders::ListHITs::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::client::fluent_builders::ListHITs::next_token) / [`set_next_token(Option<String>)`](crate::client::fluent_builders::ListHITs::set_next_token): <p>Pagination token</p>
    ///   - [`max_results(i32)`](crate::client::fluent_builders::ListHITs::max_results) / [`set_max_results(Option<i32>)`](crate::client::fluent_builders::ListHITs::set_max_results): (undocumented)
    /// - On success, responds with [`ListHiTsOutput`](crate::output::ListHiTsOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::output::ListHiTsOutput::next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`num_results(Option<i32>)`](crate::output::ListHiTsOutput::num_results): <p>The number of HITs on this page in the filtered results list, equivalent to the number of HITs being returned by this call.</p>
    ///   - [`hi_ts(Option<Vec<Hit>>)`](crate::output::ListHiTsOutput::hi_ts): <p> The list of HIT elements returned by the query.</p>
    /// - On failure, responds with [`SdkError<ListHITsError>`](crate::error::ListHITsError)
    pub fn list_hi_ts(&self) -> fluent_builders::ListHITs {
        fluent_builders::ListHITs::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ListHITsForQualificationType`](crate::client::fluent_builders::ListHITsForQualificationType) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::client::fluent_builders::ListHITsForQualificationType::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`qualification_type_id(impl Into<String>)`](crate::client::fluent_builders::ListHITsForQualificationType::qualification_type_id) / [`set_qualification_type_id(Option<String>)`](crate::client::fluent_builders::ListHITsForQualificationType::set_qualification_type_id): <p> The ID of the Qualification type to use when querying HITs. </p>
    ///   - [`next_token(impl Into<String>)`](crate::client::fluent_builders::ListHITsForQualificationType::next_token) / [`set_next_token(Option<String>)`](crate::client::fluent_builders::ListHITsForQualificationType::set_next_token): <p>Pagination Token</p>
    ///   - [`max_results(i32)`](crate::client::fluent_builders::ListHITsForQualificationType::max_results) / [`set_max_results(Option<i32>)`](crate::client::fluent_builders::ListHITsForQualificationType::set_max_results): <p> Limit the number of results returned. </p>
    /// - On success, responds with [`ListHiTsForQualificationTypeOutput`](crate::output::ListHiTsForQualificationTypeOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::output::ListHiTsForQualificationTypeOutput::next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`num_results(Option<i32>)`](crate::output::ListHiTsForQualificationTypeOutput::num_results): <p> The number of HITs on this page in the filtered results list, equivalent to the number of HITs being returned by this call. </p>
    ///   - [`hi_ts(Option<Vec<Hit>>)`](crate::output::ListHiTsForQualificationTypeOutput::hi_ts): <p> The list of HIT elements returned by the query.</p>
    /// - On failure, responds with [`SdkError<ListHITsForQualificationTypeError>`](crate::error::ListHITsForQualificationTypeError)
    pub fn list_hi_ts_for_qualification_type(
        &self,
    ) -> fluent_builders::ListHITsForQualificationType {
        fluent_builders::ListHITsForQualificationType::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ListQualificationRequests`](crate::client::fluent_builders::ListQualificationRequests) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::client::fluent_builders::ListQualificationRequests::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`qualification_type_id(impl Into<String>)`](crate::client::fluent_builders::ListQualificationRequests::qualification_type_id) / [`set_qualification_type_id(Option<String>)`](crate::client::fluent_builders::ListQualificationRequests::set_qualification_type_id): <p>The ID of the QualificationType.</p>
    ///   - [`next_token(impl Into<String>)`](crate::client::fluent_builders::ListQualificationRequests::next_token) / [`set_next_token(Option<String>)`](crate::client::fluent_builders::ListQualificationRequests::set_next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`max_results(i32)`](crate::client::fluent_builders::ListQualificationRequests::max_results) / [`set_max_results(Option<i32>)`](crate::client::fluent_builders::ListQualificationRequests::set_max_results): <p> The maximum number of results to return in a single call. </p>
    /// - On success, responds with [`ListQualificationRequestsOutput`](crate::output::ListQualificationRequestsOutput) with field(s):
    ///   - [`num_results(Option<i32>)`](crate::output::ListQualificationRequestsOutput::num_results): <p>The number of Qualification requests on this page in the filtered results list, equivalent to the number of Qualification requests being returned by this call.</p>
    ///   - [`next_token(Option<String>)`](crate::output::ListQualificationRequestsOutput::next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`qualification_requests(Option<Vec<QualificationRequest>>)`](crate::output::ListQualificationRequestsOutput::qualification_requests): <p>The Qualification request. The response includes one QualificationRequest element for each Qualification request returned by the query.</p>
    /// - On failure, responds with [`SdkError<ListQualificationRequestsError>`](crate::error::ListQualificationRequestsError)
    pub fn list_qualification_requests(&self) -> fluent_builders::ListQualificationRequests {
        fluent_builders::ListQualificationRequests::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ListQualificationTypes`](crate::client::fluent_builders::ListQualificationTypes) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::client::fluent_builders::ListQualificationTypes::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`query(impl Into<String>)`](crate::client::fluent_builders::ListQualificationTypes::query) / [`set_query(Option<String>)`](crate::client::fluent_builders::ListQualificationTypes::set_query): <p> A text query against all of the searchable attributes of Qualification types. </p>
    ///   - [`must_be_requestable(bool)`](crate::client::fluent_builders::ListQualificationTypes::must_be_requestable) / [`set_must_be_requestable(Option<bool>)`](crate::client::fluent_builders::ListQualificationTypes::set_must_be_requestable): <p>Specifies that only Qualification types that a user can request through the Amazon Mechanical Turk web site, such as by taking a Qualification test, are returned as results of the search. Some Qualification types, such as those assigned automatically by the system, cannot be requested directly by users. If false, all Qualification types, including those managed by the system, are considered. Valid values are True | False. </p>
    ///   - [`must_be_owned_by_caller(bool)`](crate::client::fluent_builders::ListQualificationTypes::must_be_owned_by_caller) / [`set_must_be_owned_by_caller(Option<bool>)`](crate::client::fluent_builders::ListQualificationTypes::set_must_be_owned_by_caller): <p> Specifies that only Qualification types that the Requester created are returned. If false, the operation returns all Qualification types. </p>
    ///   - [`next_token(impl Into<String>)`](crate::client::fluent_builders::ListQualificationTypes::next_token) / [`set_next_token(Option<String>)`](crate::client::fluent_builders::ListQualificationTypes::set_next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`max_results(i32)`](crate::client::fluent_builders::ListQualificationTypes::max_results) / [`set_max_results(Option<i32>)`](crate::client::fluent_builders::ListQualificationTypes::set_max_results): <p> The maximum number of results to return in a single call. </p>
    /// - On success, responds with [`ListQualificationTypesOutput`](crate::output::ListQualificationTypesOutput) with field(s):
    ///   - [`num_results(Option<i32>)`](crate::output::ListQualificationTypesOutput::num_results): <p> The number of Qualification types on this page in the filtered results list, equivalent to the number of types this operation returns. </p>
    ///   - [`next_token(Option<String>)`](crate::output::ListQualificationTypesOutput::next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`qualification_types(Option<Vec<QualificationType>>)`](crate::output::ListQualificationTypesOutput::qualification_types): <p> The list of QualificationType elements returned by the query. </p>
    /// - On failure, responds with [`SdkError<ListQualificationTypesError>`](crate::error::ListQualificationTypesError)
    pub fn list_qualification_types(&self) -> fluent_builders::ListQualificationTypes {
        fluent_builders::ListQualificationTypes::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ListReviewableHITs`](crate::client::fluent_builders::ListReviewableHITs) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::client::fluent_builders::ListReviewableHITs::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_type_id(impl Into<String>)`](crate::client::fluent_builders::ListReviewableHITs::hit_type_id) / [`set_hit_type_id(Option<String>)`](crate::client::fluent_builders::ListReviewableHITs::set_hit_type_id): <p> The ID of the HIT type of the HITs to consider for the query. If not specified, all HITs for the Reviewer are considered </p>
    ///   - [`status(ReviewableHitStatus)`](crate::client::fluent_builders::ListReviewableHITs::status) / [`set_status(Option<ReviewableHitStatus>)`](crate::client::fluent_builders::ListReviewableHITs::set_status): <p> Can be either <code>Reviewable</code> or <code>Reviewing</code>. Reviewable is the default value. </p>
    ///   - [`next_token(impl Into<String>)`](crate::client::fluent_builders::ListReviewableHITs::next_token) / [`set_next_token(Option<String>)`](crate::client::fluent_builders::ListReviewableHITs::set_next_token): <p>Pagination Token</p>
    ///   - [`max_results(i32)`](crate::client::fluent_builders::ListReviewableHITs::max_results) / [`set_max_results(Option<i32>)`](crate::client::fluent_builders::ListReviewableHITs::set_max_results): <p> Limit the number of results returned. </p>
    /// - On success, responds with [`ListReviewableHiTsOutput`](crate::output::ListReviewableHiTsOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::output::ListReviewableHiTsOutput::next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`num_results(Option<i32>)`](crate::output::ListReviewableHiTsOutput::num_results): <p> The number of HITs on this page in the filtered results list, equivalent to the number of HITs being returned by this call. </p>
    ///   - [`hi_ts(Option<Vec<Hit>>)`](crate::output::ListReviewableHiTsOutput::hi_ts): <p> The list of HIT elements returned by the query.</p>
    /// - On failure, responds with [`SdkError<ListReviewableHITsError>`](crate::error::ListReviewableHITsError)
    pub fn list_reviewable_hi_ts(&self) -> fluent_builders::ListReviewableHITs {
        fluent_builders::ListReviewableHITs::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ListReviewPolicyResultsForHIT`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_id(impl Into<String>)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::hit_id) / [`set_hit_id(Option<String>)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::set_hit_id): <p>The unique identifier of the HIT to retrieve review results for.</p>
    ///   - [`policy_levels(Vec<ReviewPolicyLevel>)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::policy_levels) / [`set_policy_levels(Option<Vec<ReviewPolicyLevel>>)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::set_policy_levels): <p> The Policy Level(s) to retrieve review results for - HIT or Assignment. If omitted, the default behavior is to retrieve all data for both policy levels. For a list of all the described policies, see Review Policies. </p>
    ///   - [`retrieve_actions(bool)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::retrieve_actions) / [`set_retrieve_actions(Option<bool>)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::set_retrieve_actions): <p> Specify if the operation should retrieve a list of the actions taken executing the Review Policies and their outcomes. </p>
    ///   - [`retrieve_results(bool)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::retrieve_results) / [`set_retrieve_results(Option<bool>)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::set_retrieve_results): <p> Specify if the operation should retrieve a list of the results computed by the Review Policies. </p>
    ///   - [`next_token(impl Into<String>)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::next_token) / [`set_next_token(Option<String>)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::set_next_token): <p>Pagination token</p>
    ///   - [`max_results(i32)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::max_results) / [`set_max_results(Option<i32>)`](crate::client::fluent_builders::ListReviewPolicyResultsForHIT::set_max_results): <p>Limit the number of results returned.</p>
    /// - On success, responds with [`ListReviewPolicyResultsForHitOutput`](crate::output::ListReviewPolicyResultsForHitOutput) with field(s):
    ///   - [`hit_id(Option<String>)`](crate::output::ListReviewPolicyResultsForHitOutput::hit_id): <p>The HITId of the HIT for which results have been returned.</p>
    ///   - [`assignment_review_policy(Option<ReviewPolicy>)`](crate::output::ListReviewPolicyResultsForHitOutput::assignment_review_policy): <p> The name of the Assignment-level Review Policy. This contains only the PolicyName element. </p>
    ///   - [`hit_review_policy(Option<ReviewPolicy>)`](crate::output::ListReviewPolicyResultsForHitOutput::hit_review_policy): <p>The name of the HIT-level Review Policy. This contains only the PolicyName element.</p>
    ///   - [`assignment_review_report(Option<ReviewReport>)`](crate::output::ListReviewPolicyResultsForHitOutput::assignment_review_report): <p> Contains both ReviewResult and ReviewAction elements for an Assignment. </p>
    ///   - [`hit_review_report(Option<ReviewReport>)`](crate::output::ListReviewPolicyResultsForHitOutput::hit_review_report): <p>Contains both ReviewResult and ReviewAction elements for a particular HIT. </p>
    ///   - [`next_token(Option<String>)`](crate::output::ListReviewPolicyResultsForHitOutput::next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    /// - On failure, responds with [`SdkError<ListReviewPolicyResultsForHITError>`](crate::error::ListReviewPolicyResultsForHITError)
    pub fn list_review_policy_results_for_hit(
        &self,
    ) -> fluent_builders::ListReviewPolicyResultsForHIT {
        fluent_builders::ListReviewPolicyResultsForHIT::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ListWorkerBlocks`](crate::client::fluent_builders::ListWorkerBlocks) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::client::fluent_builders::ListWorkerBlocks::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::client::fluent_builders::ListWorkerBlocks::next_token) / [`set_next_token(Option<String>)`](crate::client::fluent_builders::ListWorkerBlocks::set_next_token): <p>Pagination token</p>
    ///   - [`max_results(i32)`](crate::client::fluent_builders::ListWorkerBlocks::max_results) / [`set_max_results(Option<i32>)`](crate::client::fluent_builders::ListWorkerBlocks::set_max_results): (undocumented)
    /// - On success, responds with [`ListWorkerBlocksOutput`](crate::output::ListWorkerBlocksOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::output::ListWorkerBlocksOutput::next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`num_results(Option<i32>)`](crate::output::ListWorkerBlocksOutput::num_results): <p> The number of assignments on the page in the filtered results list, equivalent to the number of assignments returned by this call.</p>
    ///   - [`worker_blocks(Option<Vec<WorkerBlock>>)`](crate::output::ListWorkerBlocksOutput::worker_blocks): <p> The list of WorkerBlocks, containing the collection of Worker IDs and reasons for blocking.</p>
    /// - On failure, responds with [`SdkError<ListWorkerBlocksError>`](crate::error::ListWorkerBlocksError)
    pub fn list_worker_blocks(&self) -> fluent_builders::ListWorkerBlocks {
        fluent_builders::ListWorkerBlocks::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`ListWorkersWithQualificationType`](crate::client::fluent_builders::ListWorkersWithQualificationType) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::client::fluent_builders::ListWorkersWithQualificationType::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`qualification_type_id(impl Into<String>)`](crate::client::fluent_builders::ListWorkersWithQualificationType::qualification_type_id) / [`set_qualification_type_id(Option<String>)`](crate::client::fluent_builders::ListWorkersWithQualificationType::set_qualification_type_id): <p>The ID of the Qualification type of the Qualifications to return.</p>
    ///   - [`status(QualificationStatus)`](crate::client::fluent_builders::ListWorkersWithQualificationType::status) / [`set_status(Option<QualificationStatus>)`](crate::client::fluent_builders::ListWorkersWithQualificationType::set_status): <p> The status of the Qualifications to return. Can be <code>Granted | Revoked</code>. </p>
    ///   - [`next_token(impl Into<String>)`](crate::client::fluent_builders::ListWorkersWithQualificationType::next_token) / [`set_next_token(Option<String>)`](crate::client::fluent_builders::ListWorkersWithQualificationType::set_next_token): <p>Pagination Token</p>
    ///   - [`max_results(i32)`](crate::client::fluent_builders::ListWorkersWithQualificationType::max_results) / [`set_max_results(Option<i32>)`](crate::client::fluent_builders::ListWorkersWithQualificationType::set_max_results): <p> Limit the number of results returned. </p>
    /// - On success, responds with [`ListWorkersWithQualificationTypeOutput`](crate::output::ListWorkersWithQualificationTypeOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::output::ListWorkersWithQualificationTypeOutput::next_token): <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
    ///   - [`num_results(Option<i32>)`](crate::output::ListWorkersWithQualificationTypeOutput::num_results): <p> The number of Qualifications on this page in the filtered results list, equivalent to the number of Qualifications being returned by this call.</p>
    ///   - [`qualifications(Option<Vec<Qualification>>)`](crate::output::ListWorkersWithQualificationTypeOutput::qualifications): <p> The list of Qualification elements returned by this call. </p>
    /// - On failure, responds with [`SdkError<ListWorkersWithQualificationTypeError>`](crate::error::ListWorkersWithQualificationTypeError)
    pub fn list_workers_with_qualification_type(
        &self,
    ) -> fluent_builders::ListWorkersWithQualificationType {
        fluent_builders::ListWorkersWithQualificationType::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`NotifyWorkers`](crate::client::fluent_builders::NotifyWorkers) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`subject(impl Into<String>)`](crate::client::fluent_builders::NotifyWorkers::subject) / [`set_subject(Option<String>)`](crate::client::fluent_builders::NotifyWorkers::set_subject): <p>The subject line of the email message to send. Can include up to 200 characters.</p>
    ///   - [`message_text(impl Into<String>)`](crate::client::fluent_builders::NotifyWorkers::message_text) / [`set_message_text(Option<String>)`](crate::client::fluent_builders::NotifyWorkers::set_message_text): <p>The text of the email message to send. Can include up to 4,096 characters</p>
    ///   - [`worker_ids(Vec<String>)`](crate::client::fluent_builders::NotifyWorkers::worker_ids) / [`set_worker_ids(Option<Vec<String>>)`](crate::client::fluent_builders::NotifyWorkers::set_worker_ids): <p>A list of Worker IDs you wish to notify. You can notify upto 100 Workers at a time.</p>
    /// - On success, responds with [`NotifyWorkersOutput`](crate::output::NotifyWorkersOutput) with field(s):
    ///   - [`notify_workers_failure_statuses(Option<Vec<NotifyWorkersFailureStatus>>)`](crate::output::NotifyWorkersOutput::notify_workers_failure_statuses): <p> When MTurk sends notifications to the list of Workers, it returns back any failures it encounters in this list of NotifyWorkersFailureStatus objects. </p>
    /// - On failure, responds with [`SdkError<NotifyWorkersError>`](crate::error::NotifyWorkersError)
    pub fn notify_workers(&self) -> fluent_builders::NotifyWorkers {
        fluent_builders::NotifyWorkers::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`RejectAssignment`](crate::client::fluent_builders::RejectAssignment) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`assignment_id(impl Into<String>)`](crate::client::fluent_builders::RejectAssignment::assignment_id) / [`set_assignment_id(Option<String>)`](crate::client::fluent_builders::RejectAssignment::set_assignment_id): <p> The ID of the assignment. The assignment must correspond to a HIT created by the Requester. </p>
    ///   - [`requester_feedback(impl Into<String>)`](crate::client::fluent_builders::RejectAssignment::requester_feedback) / [`set_requester_feedback(Option<String>)`](crate::client::fluent_builders::RejectAssignment::set_requester_feedback): <p> A message for the Worker, which the Worker can see in the Status section of the web site. </p>
    /// - On success, responds with [`RejectAssignmentOutput`](crate::output::RejectAssignmentOutput)

    /// - On failure, responds with [`SdkError<RejectAssignmentError>`](crate::error::RejectAssignmentError)
    pub fn reject_assignment(&self) -> fluent_builders::RejectAssignment {
        fluent_builders::RejectAssignment::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`RejectQualificationRequest`](crate::client::fluent_builders::RejectQualificationRequest) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`qualification_request_id(impl Into<String>)`](crate::client::fluent_builders::RejectQualificationRequest::qualification_request_id) / [`set_qualification_request_id(Option<String>)`](crate::client::fluent_builders::RejectQualificationRequest::set_qualification_request_id): <p> The ID of the Qualification request, as returned by the <code>ListQualificationRequests</code> operation. </p>
    ///   - [`reason(impl Into<String>)`](crate::client::fluent_builders::RejectQualificationRequest::reason) / [`set_reason(Option<String>)`](crate::client::fluent_builders::RejectQualificationRequest::set_reason): <p>A text message explaining why the request was rejected, to be shown to the Worker who made the request.</p>
    /// - On success, responds with [`RejectQualificationRequestOutput`](crate::output::RejectQualificationRequestOutput)

    /// - On failure, responds with [`SdkError<RejectQualificationRequestError>`](crate::error::RejectQualificationRequestError)
    pub fn reject_qualification_request(&self) -> fluent_builders::RejectQualificationRequest {
        fluent_builders::RejectQualificationRequest::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`SendBonus`](crate::client::fluent_builders::SendBonus) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`worker_id(impl Into<String>)`](crate::client::fluent_builders::SendBonus::worker_id) / [`set_worker_id(Option<String>)`](crate::client::fluent_builders::SendBonus::set_worker_id): <p>The ID of the Worker being paid the bonus.</p>
    ///   - [`bonus_amount(impl Into<String>)`](crate::client::fluent_builders::SendBonus::bonus_amount) / [`set_bonus_amount(Option<String>)`](crate::client::fluent_builders::SendBonus::set_bonus_amount): <p> The Bonus amount is a US Dollar amount specified using a string (for example, "5" represents $5.00 USD and "101.42" represents $101.42 USD). Do not include currency symbols or currency codes. </p>
    ///   - [`assignment_id(impl Into<String>)`](crate::client::fluent_builders::SendBonus::assignment_id) / [`set_assignment_id(Option<String>)`](crate::client::fluent_builders::SendBonus::set_assignment_id): <p>The ID of the assignment for which this bonus is paid.</p>
    ///   - [`reason(impl Into<String>)`](crate::client::fluent_builders::SendBonus::reason) / [`set_reason(Option<String>)`](crate::client::fluent_builders::SendBonus::set_reason): <p>A message that explains the reason for the bonus payment. The Worker receiving the bonus can see this message.</p>
    ///   - [`unique_request_token(impl Into<String>)`](crate::client::fluent_builders::SendBonus::unique_request_token) / [`set_unique_request_token(Option<String>)`](crate::client::fluent_builders::SendBonus::set_unique_request_token): <p>A unique identifier for this request, which allows you to retry the call on error without granting multiple bonuses. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the bonus already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return an error with a message containing the request ID.</p>
    /// - On success, responds with [`SendBonusOutput`](crate::output::SendBonusOutput)

    /// - On failure, responds with [`SdkError<SendBonusError>`](crate::error::SendBonusError)
    pub fn send_bonus(&self) -> fluent_builders::SendBonus {
        fluent_builders::SendBonus::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`SendTestEventNotification`](crate::client::fluent_builders::SendTestEventNotification) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`notification(NotificationSpecification)`](crate::client::fluent_builders::SendTestEventNotification::notification) / [`set_notification(Option<NotificationSpecification>)`](crate::client::fluent_builders::SendTestEventNotification::set_notification): <p> The notification specification to test. This value is identical to the value you would provide to the UpdateNotificationSettings operation when you establish the notification specification for a HIT type. </p>
    ///   - [`test_event_type(EventType)`](crate::client::fluent_builders::SendTestEventNotification::test_event_type) / [`set_test_event_type(Option<EventType>)`](crate::client::fluent_builders::SendTestEventNotification::set_test_event_type): <p> The event to simulate to test the notification specification. This event is included in the test message even if the notification specification does not include the event type. The notification specification does not filter out the test event. </p>
    /// - On success, responds with [`SendTestEventNotificationOutput`](crate::output::SendTestEventNotificationOutput)

    /// - On failure, responds with [`SdkError<SendTestEventNotificationError>`](crate::error::SendTestEventNotificationError)
    pub fn send_test_event_notification(&self) -> fluent_builders::SendTestEventNotification {
        fluent_builders::SendTestEventNotification::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`UpdateExpirationForHIT`](crate::client::fluent_builders::UpdateExpirationForHIT) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_id(impl Into<String>)`](crate::client::fluent_builders::UpdateExpirationForHIT::hit_id) / [`set_hit_id(Option<String>)`](crate::client::fluent_builders::UpdateExpirationForHIT::set_hit_id): <p> The HIT to update. </p>
    ///   - [`expire_at(DateTime)`](crate::client::fluent_builders::UpdateExpirationForHIT::expire_at) / [`set_expire_at(Option<DateTime>)`](crate::client::fluent_builders::UpdateExpirationForHIT::set_expire_at): <p> The date and time at which you want the HIT to expire </p>
    /// - On success, responds with [`UpdateExpirationForHitOutput`](crate::output::UpdateExpirationForHitOutput)

    /// - On failure, responds with [`SdkError<UpdateExpirationForHITError>`](crate::error::UpdateExpirationForHITError)
    pub fn update_expiration_for_hit(&self) -> fluent_builders::UpdateExpirationForHIT {
        fluent_builders::UpdateExpirationForHIT::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`UpdateHITReviewStatus`](crate::client::fluent_builders::UpdateHITReviewStatus) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_id(impl Into<String>)`](crate::client::fluent_builders::UpdateHITReviewStatus::hit_id) / [`set_hit_id(Option<String>)`](crate::client::fluent_builders::UpdateHITReviewStatus::set_hit_id): <p> The ID of the HIT to update. </p>
    ///   - [`revert(bool)`](crate::client::fluent_builders::UpdateHITReviewStatus::revert) / [`set_revert(Option<bool>)`](crate::client::fluent_builders::UpdateHITReviewStatus::set_revert): <p> Specifies how to update the HIT status. Default is <code>False</code>. </p>  <ul>   <li> <p> Setting this to false will only transition a HIT from <code>Reviewable</code> to <code>Reviewing</code> </p> </li>   <li> <p> Setting this to true will only transition a HIT from <code>Reviewing</code> to <code>Reviewable</code> </p> </li>  </ul>
    /// - On success, responds with [`UpdateHitReviewStatusOutput`](crate::output::UpdateHitReviewStatusOutput)

    /// - On failure, responds with [`SdkError<UpdateHITReviewStatusError>`](crate::error::UpdateHITReviewStatusError)
    pub fn update_hit_review_status(&self) -> fluent_builders::UpdateHITReviewStatus {
        fluent_builders::UpdateHITReviewStatus::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`UpdateHITTypeOfHIT`](crate::client::fluent_builders::UpdateHITTypeOfHIT) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_id(impl Into<String>)`](crate::client::fluent_builders::UpdateHITTypeOfHIT::hit_id) / [`set_hit_id(Option<String>)`](crate::client::fluent_builders::UpdateHITTypeOfHIT::set_hit_id): <p>The HIT to update.</p>
    ///   - [`hit_type_id(impl Into<String>)`](crate::client::fluent_builders::UpdateHITTypeOfHIT::hit_type_id) / [`set_hit_type_id(Option<String>)`](crate::client::fluent_builders::UpdateHITTypeOfHIT::set_hit_type_id): <p>The ID of the new HIT type.</p>
    /// - On success, responds with [`UpdateHitTypeOfHitOutput`](crate::output::UpdateHitTypeOfHitOutput)

    /// - On failure, responds with [`SdkError<UpdateHITTypeOfHITError>`](crate::error::UpdateHITTypeOfHITError)
    pub fn update_hit_type_of_hit(&self) -> fluent_builders::UpdateHITTypeOfHIT {
        fluent_builders::UpdateHITTypeOfHIT::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`UpdateNotificationSettings`](crate::client::fluent_builders::UpdateNotificationSettings) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hit_type_id(impl Into<String>)`](crate::client::fluent_builders::UpdateNotificationSettings::hit_type_id) / [`set_hit_type_id(Option<String>)`](crate::client::fluent_builders::UpdateNotificationSettings::set_hit_type_id): <p> The ID of the HIT type whose notification specification is being updated. </p>
    ///   - [`notification(NotificationSpecification)`](crate::client::fluent_builders::UpdateNotificationSettings::notification) / [`set_notification(Option<NotificationSpecification>)`](crate::client::fluent_builders::UpdateNotificationSettings::set_notification): <p> The notification specification for the HIT type. </p>
    ///   - [`active(bool)`](crate::client::fluent_builders::UpdateNotificationSettings::active) / [`set_active(Option<bool>)`](crate::client::fluent_builders::UpdateNotificationSettings::set_active): <p> Specifies whether notifications are sent for HITs of this HIT type, according to the notification specification. You must specify either the Notification parameter or the Active parameter for the call to UpdateNotificationSettings to succeed. </p>
    /// - On success, responds with [`UpdateNotificationSettingsOutput`](crate::output::UpdateNotificationSettingsOutput)

    /// - On failure, responds with [`SdkError<UpdateNotificationSettingsError>`](crate::error::UpdateNotificationSettingsError)
    pub fn update_notification_settings(&self) -> fluent_builders::UpdateNotificationSettings {
        fluent_builders::UpdateNotificationSettings::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the [`UpdateQualificationType`](crate::client::fluent_builders::UpdateQualificationType) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`qualification_type_id(impl Into<String>)`](crate::client::fluent_builders::UpdateQualificationType::qualification_type_id) / [`set_qualification_type_id(Option<String>)`](crate::client::fluent_builders::UpdateQualificationType::set_qualification_type_id): <p>The ID of the Qualification type to update.</p>
    ///   - [`description(impl Into<String>)`](crate::client::fluent_builders::UpdateQualificationType::description) / [`set_description(Option<String>)`](crate::client::fluent_builders::UpdateQualificationType::set_description): <p>The new description of the Qualification type.</p>
    ///   - [`qualification_type_status(QualificationTypeStatus)`](crate::client::fluent_builders::UpdateQualificationType::qualification_type_status) / [`set_qualification_type_status(Option<QualificationTypeStatus>)`](crate::client::fluent_builders::UpdateQualificationType::set_qualification_type_status): <p>The new status of the Qualification type - Active | Inactive</p>
    ///   - [`test(impl Into<String>)`](crate::client::fluent_builders::UpdateQualificationType::test) / [`set_test(Option<String>)`](crate::client::fluent_builders::UpdateQualificationType::set_test): <p>The questions for the Qualification test a Worker must answer correctly to obtain a Qualification of this type. If this parameter is specified, <code>TestDurationInSeconds</code> must also be specified.</p>  <p>Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm data structure. This parameter cannot be specified if AutoGranted is true.</p>  <p>Constraints: None. If not specified, the Worker may request the Qualification without answering any questions.</p>
    ///   - [`answer_key(impl Into<String>)`](crate::client::fluent_builders::UpdateQualificationType::answer_key) / [`set_answer_key(Option<String>)`](crate::client::fluent_builders::UpdateQualificationType::set_answer_key): <p>The answers to the Qualification test specified in the Test parameter, in the form of an AnswerKey data structure.</p>
    ///   - [`test_duration_in_seconds(i64)`](crate::client::fluent_builders::UpdateQualificationType::test_duration_in_seconds) / [`set_test_duration_in_seconds(Option<i64>)`](crate::client::fluent_builders::UpdateQualificationType::set_test_duration_in_seconds): <p>The number of seconds the Worker has to complete the Qualification test, starting from the time the Worker requests the Qualification.</p>
    ///   - [`retry_delay_in_seconds(i64)`](crate::client::fluent_builders::UpdateQualificationType::retry_delay_in_seconds) / [`set_retry_delay_in_seconds(Option<i64>)`](crate::client::fluent_builders::UpdateQualificationType::set_retry_delay_in_seconds): <p>The amount of time, in seconds, that Workers must wait after requesting a Qualification of the specified Qualification type before they can retry the Qualification request. It is not possible to disable retries for a Qualification type after it has been created with retries enabled. If you want to disable retries, you must dispose of the existing retry-enabled Qualification type using DisposeQualificationType and then create a new Qualification type with retries disabled using CreateQualificationType.</p>
    ///   - [`auto_granted(bool)`](crate::client::fluent_builders::UpdateQualificationType::auto_granted) / [`set_auto_granted(Option<bool>)`](crate::client::fluent_builders::UpdateQualificationType::set_auto_granted): <p>Specifies whether requests for the Qualification type are granted immediately, without prompting the Worker with a Qualification test.</p>  <p>Constraints: If the Test parameter is specified, this parameter cannot be true.</p>
    ///   - [`auto_granted_value(i32)`](crate::client::fluent_builders::UpdateQualificationType::auto_granted_value) / [`set_auto_granted_value(Option<i32>)`](crate::client::fluent_builders::UpdateQualificationType::set_auto_granted_value): <p>The Qualification value to use for automatically granted Qualifications. This parameter is used only if the AutoGranted parameter is true.</p>
    /// - On success, responds with [`UpdateQualificationTypeOutput`](crate::output::UpdateQualificationTypeOutput) with field(s):
    ///   - [`qualification_type(Option<QualificationType>)`](crate::output::UpdateQualificationTypeOutput::qualification_type): <p> Contains a QualificationType data structure.</p>
    /// - On failure, responds with [`SdkError<UpdateQualificationTypeError>`](crate::error::UpdateQualificationTypeError)
    pub fn update_qualification_type(&self) -> fluent_builders::UpdateQualificationType {
        fluent_builders::UpdateQualificationType::new(self.handle.clone())
    }
}
pub mod fluent_builders {
    //!
    //! Utilities to ergonomically construct a request to the service.
    //!
    //! Fluent builders are created through the [`Client`](crate::client::Client) by calling
    //! one if its operation methods. After parameters are set using the builder methods,
    //! the `send` method can be called to initiate the request.
    //!
    /// Fluent builder constructing a request to `AcceptQualificationRequest`.
    ///
    /// <p> The <code>AcceptQualificationRequest</code> operation approves a Worker's request for a Qualification. </p>
    /// <p> Only the owner of the Qualification type can grant a Qualification request for that type. </p>
    /// <p> A successful request for the <code>AcceptQualificationRequest</code> operation returns with no errors and an empty body. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct AcceptQualificationRequest {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::accept_qualification_request_input::Builder,
    }
    impl AcceptQualificationRequest {
        /// Creates a new `AcceptQualificationRequest`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::AcceptQualificationRequestOutput,
            aws_smithy_http::result::SdkError<crate::error::AcceptQualificationRequestError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the Qualification request, as returned by the <code>GetQualificationRequests</code> operation.</p>
        pub fn qualification_request_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_request_id(input.into());
            self
        }
        /// <p>The ID of the Qualification request, as returned by the <code>GetQualificationRequests</code> operation.</p>
        pub fn set_qualification_request_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_request_id(input);
            self
        }
        /// <p> The value of the Qualification. You can omit this value if you are using the presence or absence of the Qualification as the basis for a HIT requirement. </p>
        pub fn integer_value(mut self, input: i32) -> Self {
            self.inner = self.inner.integer_value(input);
            self
        }
        /// <p> The value of the Qualification. You can omit this value if you are using the presence or absence of the Qualification as the basis for a HIT requirement. </p>
        pub fn set_integer_value(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_integer_value(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ApproveAssignment`.
    ///
    /// <p> The <code>ApproveAssignment</code> operation approves the results of a completed assignment. </p>
    /// <p> Approving an assignment initiates two payments from the Requester's Amazon.com account </p>
    /// <ul>
    /// <li> <p> The Worker who submitted the results is paid the reward specified in the HIT. </p> </li>
    /// <li> <p> Amazon Mechanical Turk fees are debited. </p> </li>
    /// </ul>
    /// <p> If the Requester's account does not have adequate funds for these payments, the call to ApproveAssignment returns an exception, and the approval is not processed. You can include an optional feedback message with the approval, which the Worker can see in the Status section of the web site. </p>
    /// <p> You can also call this operation for assignments that were previous rejected and approve them by explicitly overriding the previous rejection. This only works on rejected assignments that were submitted within the previous 30 days and only if the assignment's related HIT has not been deleted. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ApproveAssignment {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::approve_assignment_input::Builder,
    }
    impl ApproveAssignment {
        /// Creates a new `ApproveAssignment`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ApproveAssignmentOutput,
            aws_smithy_http::result::SdkError<crate::error::ApproveAssignmentError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p> The ID of the assignment. The assignment must correspond to a HIT created by the Requester. </p>
        pub fn assignment_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.assignment_id(input.into());
            self
        }
        /// <p> The ID of the assignment. The assignment must correspond to a HIT created by the Requester. </p>
        pub fn set_assignment_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_assignment_id(input);
            self
        }
        /// <p> A message for the Worker, which the Worker can see in the Status section of the web site. </p>
        pub fn requester_feedback(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.requester_feedback(input.into());
            self
        }
        /// <p> A message for the Worker, which the Worker can see in the Status section of the web site. </p>
        pub fn set_requester_feedback(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_requester_feedback(input);
            self
        }
        /// <p> A flag indicating that an assignment should be approved even if it was previously rejected. Defaults to <code>False</code>. </p>
        pub fn override_rejection(mut self, input: bool) -> Self {
            self.inner = self.inner.override_rejection(input);
            self
        }
        /// <p> A flag indicating that an assignment should be approved even if it was previously rejected. Defaults to <code>False</code>. </p>
        pub fn set_override_rejection(mut self, input: std::option::Option<bool>) -> Self {
            self.inner = self.inner.set_override_rejection(input);
            self
        }
    }
    /// Fluent builder constructing a request to `AssociateQualificationWithWorker`.
    ///
    /// <p> The <code>AssociateQualificationWithWorker</code> operation gives a Worker a Qualification. <code>AssociateQualificationWithWorker</code> does not require that the Worker submit a Qualification request. It gives the Qualification directly to the Worker. </p>
    /// <p> You can only assign a Qualification of a Qualification type that you created (using the <code>CreateQualificationType</code> operation). </p> <note>
    /// <p> Note: <code>AssociateQualificationWithWorker</code> does not affect any pending Qualification requests for the Qualification by the Worker. If you assign a Qualification to a Worker, then later grant a Qualification request made by the Worker, the granting of the request may modify the Qualification score. To resolve a pending Qualification request without affecting the Qualification the Worker already has, reject the request with the <code>RejectQualificationRequest</code> operation. </p>
    /// </note>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct AssociateQualificationWithWorker {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::associate_qualification_with_worker_input::Builder,
    }
    impl AssociateQualificationWithWorker {
        /// Creates a new `AssociateQualificationWithWorker`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::AssociateQualificationWithWorkerOutput,
            aws_smithy_http::result::SdkError<crate::error::AssociateQualificationWithWorkerError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the Qualification type to use for the assigned Qualification.</p>
        pub fn qualification_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_type_id(input.into());
            self
        }
        /// <p>The ID of the Qualification type to use for the assigned Qualification.</p>
        pub fn set_qualification_type_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_id(input);
            self
        }
        /// <p> The ID of the Worker to whom the Qualification is being assigned. Worker IDs are included with submitted HIT assignments and Qualification requests. </p>
        pub fn worker_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.worker_id(input.into());
            self
        }
        /// <p> The ID of the Worker to whom the Qualification is being assigned. Worker IDs are included with submitted HIT assignments and Qualification requests. </p>
        pub fn set_worker_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_worker_id(input);
            self
        }
        /// <p>The value of the Qualification to assign.</p>
        pub fn integer_value(mut self, input: i32) -> Self {
            self.inner = self.inner.integer_value(input);
            self
        }
        /// <p>The value of the Qualification to assign.</p>
        pub fn set_integer_value(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_integer_value(input);
            self
        }
        /// <p> Specifies whether to send a notification email message to the Worker saying that the qualification was assigned to the Worker. Note: this is true by default. </p>
        pub fn send_notification(mut self, input: bool) -> Self {
            self.inner = self.inner.send_notification(input);
            self
        }
        /// <p> Specifies whether to send a notification email message to the Worker saying that the qualification was assigned to the Worker. Note: this is true by default. </p>
        pub fn set_send_notification(mut self, input: std::option::Option<bool>) -> Self {
            self.inner = self.inner.set_send_notification(input);
            self
        }
    }
    /// Fluent builder constructing a request to `CreateAdditionalAssignmentsForHIT`.
    ///
    /// <p> The <code>CreateAdditionalAssignmentsForHIT</code> operation increases the maximum number of assignments of an existing HIT. </p>
    /// <p> To extend the maximum number of assignments, specify the number of additional assignments.</p> <note>
    /// <ul>
    /// <li> <p>HITs created with fewer than 10 assignments cannot be extended to have 10 or more assignments. Attempting to add assignments in a way that brings the total number of assignments for a HIT from fewer than 10 assignments to 10 or more assignments will result in an <code>AWS.MechanicalTurk.InvalidMaximumAssignmentsIncrease</code> exception.</p> </li>
    /// <li> <p>HITs that were created before July 22, 2015 cannot be extended. Attempting to extend HITs that were created before July 22, 2015 will result in an <code>AWS.MechanicalTurk.HITTooOldForExtension</code> exception. </p> </li>
    /// </ul>
    /// </note>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct CreateAdditionalAssignmentsForHIT {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::create_additional_assignments_for_hit_input::Builder,
    }
    impl CreateAdditionalAssignmentsForHIT {
        /// Creates a new `CreateAdditionalAssignmentsForHIT`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::CreateAdditionalAssignmentsForHitOutput,
            aws_smithy_http::result::SdkError<crate::error::CreateAdditionalAssignmentsForHITError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the HIT to extend.</p>
        pub fn hit_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_id(input.into());
            self
        }
        /// <p>The ID of the HIT to extend.</p>
        pub fn set_hit_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_id(input);
            self
        }
        /// <p>The number of additional assignments to request for this HIT.</p>
        pub fn number_of_additional_assignments(mut self, input: i32) -> Self {
            self.inner = self.inner.number_of_additional_assignments(input);
            self
        }
        /// <p>The number of additional assignments to request for this HIT.</p>
        pub fn set_number_of_additional_assignments(
            mut self,
            input: std::option::Option<i32>,
        ) -> Self {
            self.inner = self.inner.set_number_of_additional_assignments(input);
            self
        }
        /// <p> A unique identifier for this request, which allows you to retry the call on error without extending the HIT multiple times. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the extend HIT already exists in the system from a previous call using the same <code>UniqueRequestToken</code>, subsequent calls will return an error with a message containing the request ID. </p>
        pub fn unique_request_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.unique_request_token(input.into());
            self
        }
        /// <p> A unique identifier for this request, which allows you to retry the call on error without extending the HIT multiple times. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the extend HIT already exists in the system from a previous call using the same <code>UniqueRequestToken</code>, subsequent calls will return an error with a message containing the request ID. </p>
        pub fn set_unique_request_token(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_unique_request_token(input);
            self
        }
    }
    /// Fluent builder constructing a request to `CreateHIT`.
    ///
    /// <p>The <code>CreateHIT</code> operation creates a new Human Intelligence Task (HIT). The new HIT is made available for Workers to find and accept on the Amazon Mechanical Turk website. </p>
    /// <p> This operation allows you to specify a new HIT by passing in values for the properties of the HIT, such as its title, reward amount and number of assignments. When you pass these values to <code>CreateHIT</code>, a new HIT is created for you, with a new <code>HITTypeID</code>. The HITTypeID can be used to create additional HITs in the future without needing to specify common parameters such as the title, description and reward amount each time.</p>
    /// <p> An alternative way to create HITs is to first generate a HITTypeID using the <code>CreateHITType</code> operation and then call the <code>CreateHITWithHITType</code> operation. This is the recommended best practice for Requesters who are creating large numbers of HITs. </p>
    /// <p>CreateHIT also supports several ways to provide question data: by providing a value for the <code>Question</code> parameter that fully specifies the contents of the HIT, or by providing a <code>HitLayoutId</code> and associated <code>HitLayoutParameters</code>. </p> <note>
    /// <p> If a HIT is created with 10 or more maximum assignments, there is an additional fee. For more information, see <a href="https://requester.mturk.com/pricing">Amazon Mechanical Turk Pricing</a>.</p>
    /// </note>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct CreateHIT {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::create_hit_input::Builder,
    }
    impl CreateHIT {
        /// Creates a new `CreateHIT`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::CreateHitOutput,
            aws_smithy_http::result::SdkError<crate::error::CreateHITError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p> The number of times the HIT can be accepted and completed before the HIT becomes unavailable. </p>
        pub fn max_assignments(mut self, input: i32) -> Self {
            self.inner = self.inner.max_assignments(input);
            self
        }
        /// <p> The number of times the HIT can be accepted and completed before the HIT becomes unavailable. </p>
        pub fn set_max_assignments(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_assignments(input);
            self
        }
        /// <p> The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it. </p>
        pub fn auto_approval_delay_in_seconds(mut self, input: i64) -> Self {
            self.inner = self.inner.auto_approval_delay_in_seconds(input);
            self
        }
        /// <p> The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it. </p>
        pub fn set_auto_approval_delay_in_seconds(
            mut self,
            input: std::option::Option<i64>,
        ) -> Self {
            self.inner = self.inner.set_auto_approval_delay_in_seconds(input);
            self
        }
        /// <p> An amount of time, in seconds, after which the HIT is no longer available for users to accept. After the lifetime of the HIT elapses, the HIT no longer appears in HIT searches, even if not all of the assignments for the HIT have been accepted. </p>
        pub fn lifetime_in_seconds(mut self, input: i64) -> Self {
            self.inner = self.inner.lifetime_in_seconds(input);
            self
        }
        /// <p> An amount of time, in seconds, after which the HIT is no longer available for users to accept. After the lifetime of the HIT elapses, the HIT no longer appears in HIT searches, even if not all of the assignments for the HIT have been accepted. </p>
        pub fn set_lifetime_in_seconds(mut self, input: std::option::Option<i64>) -> Self {
            self.inner = self.inner.set_lifetime_in_seconds(input);
            self
        }
        /// <p> The amount of time, in seconds, that a Worker has to complete the HIT after accepting it. If a Worker does not complete the assignment within the specified duration, the assignment is considered abandoned. If the HIT is still active (that is, its lifetime has not elapsed), the assignment becomes available for other users to find and accept. </p>
        pub fn assignment_duration_in_seconds(mut self, input: i64) -> Self {
            self.inner = self.inner.assignment_duration_in_seconds(input);
            self
        }
        /// <p> The amount of time, in seconds, that a Worker has to complete the HIT after accepting it. If a Worker does not complete the assignment within the specified duration, the assignment is considered abandoned. If the HIT is still active (that is, its lifetime has not elapsed), the assignment becomes available for other users to find and accept. </p>
        pub fn set_assignment_duration_in_seconds(
            mut self,
            input: std::option::Option<i64>,
        ) -> Self {
            self.inner = self.inner.set_assignment_duration_in_seconds(input);
            self
        }
        /// <p> The amount of money the Requester will pay a Worker for successfully completing the HIT. </p>
        pub fn reward(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.reward(input.into());
            self
        }
        /// <p> The amount of money the Requester will pay a Worker for successfully completing the HIT. </p>
        pub fn set_reward(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_reward(input);
            self
        }
        /// <p> The title of the HIT. A title should be short and descriptive about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT title appears in search results, and everywhere the HIT is mentioned. </p>
        pub fn title(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.title(input.into());
            self
        }
        /// <p> The title of the HIT. A title should be short and descriptive about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT title appears in search results, and everywhere the HIT is mentioned. </p>
        pub fn set_title(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_title(input);
            self
        }
        /// <p> One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs. </p>
        pub fn keywords(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.keywords(input.into());
            self
        }
        /// <p> One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs. </p>
        pub fn set_keywords(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_keywords(input);
            self
        }
        /// <p> A general description of the HIT. A description includes detailed information about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT description appears in the expanded view of search results, and in the HIT and assignment screens. A good description gives the user enough information to evaluate the HIT before accepting it. </p>
        pub fn description(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.description(input.into());
            self
        }
        /// <p> A general description of the HIT. A description includes detailed information about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT description appears in the expanded view of search results, and in the HIT and assignment screens. A good description gives the user enough information to evaluate the HIT before accepting it. </p>
        pub fn set_description(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_description(input);
            self
        }
        /// <p> The data the person completing the HIT uses to produce the results. </p>
        /// <p> Constraints: Must be a QuestionForm data structure, an ExternalQuestion data structure, or an HTMLQuestion data structure. The XML question data must not be larger than 64 kilobytes (65,535 bytes) in size, including whitespace. </p>
        /// <p>Either a Question parameter or a HITLayoutId parameter must be provided.</p>
        pub fn question(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.question(input.into());
            self
        }
        /// <p> The data the person completing the HIT uses to produce the results. </p>
        /// <p> Constraints: Must be a QuestionForm data structure, an ExternalQuestion data structure, or an HTMLQuestion data structure. The XML question data must not be larger than 64 kilobytes (65,535 bytes) in size, including whitespace. </p>
        /// <p>Either a Question parameter or a HITLayoutId parameter must be provided.</p>
        pub fn set_question(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_question(input);
            self
        }
        /// <p> An arbitrary data field. The RequesterAnnotation parameter lets your application attach arbitrary data to the HIT for tracking purposes. For example, this parameter could be an identifier internal to the Requester's application that corresponds with the HIT. </p>
        /// <p> The RequesterAnnotation parameter for a HIT is only visible to the Requester who created the HIT. It is not shown to the Worker, or any other Requester. </p>
        /// <p> The RequesterAnnotation parameter may be different for each HIT you submit. It does not affect how your HITs are grouped. </p>
        pub fn requester_annotation(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.requester_annotation(input.into());
            self
        }
        /// <p> An arbitrary data field. The RequesterAnnotation parameter lets your application attach arbitrary data to the HIT for tracking purposes. For example, this parameter could be an identifier internal to the Requester's application that corresponds with the HIT. </p>
        /// <p> The RequesterAnnotation parameter for a HIT is only visible to the Requester who created the HIT. It is not shown to the Worker, or any other Requester. </p>
        /// <p> The RequesterAnnotation parameter may be different for each HIT you submit. It does not affect how your HITs are grouped. </p>
        pub fn set_requester_annotation(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_requester_annotation(input);
            self
        }
        /// Appends an item to `QualificationRequirements`.
        ///
        /// To override the contents of this collection use [`set_qualification_requirements`](Self::set_qualification_requirements).
        ///
        /// <p> Conditions that a Worker's Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the <code>ActionsGuarded</code> field on each <code>QualificationRequirement</code> structure. </p>
        pub fn qualification_requirements(
            mut self,
            input: crate::model::QualificationRequirement,
        ) -> Self {
            self.inner = self.inner.qualification_requirements(input);
            self
        }
        /// <p> Conditions that a Worker's Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the <code>ActionsGuarded</code> field on each <code>QualificationRequirement</code> structure. </p>
        pub fn set_qualification_requirements(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::QualificationRequirement>>,
        ) -> Self {
            self.inner = self.inner.set_qualification_requirements(input);
            self
        }
        /// <p> A unique identifier for this request which allows you to retry the call on error without creating duplicate HITs. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the HIT already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return a AWS.MechanicalTurk.HitAlreadyExists error with a message containing the HITId. </p> <note>
        /// <p> Note: It is your responsibility to ensure uniqueness of the token. The unique token expires after 24 hours. Subsequent calls using the same UniqueRequestToken made after the 24 hour limit could create duplicate HITs. </p>
        /// </note>
        pub fn unique_request_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.unique_request_token(input.into());
            self
        }
        /// <p> A unique identifier for this request which allows you to retry the call on error without creating duplicate HITs. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the HIT already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return a AWS.MechanicalTurk.HitAlreadyExists error with a message containing the HITId. </p> <note>
        /// <p> Note: It is your responsibility to ensure uniqueness of the token. The unique token expires after 24 hours. Subsequent calls using the same UniqueRequestToken made after the 24 hour limit could create duplicate HITs. </p>
        /// </note>
        pub fn set_unique_request_token(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_unique_request_token(input);
            self
        }
        /// <p> The Assignment-level Review Policy applies to the assignments under the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
        pub fn assignment_review_policy(mut self, input: crate::model::ReviewPolicy) -> Self {
            self.inner = self.inner.assignment_review_policy(input);
            self
        }
        /// <p> The Assignment-level Review Policy applies to the assignments under the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
        pub fn set_assignment_review_policy(
            mut self,
            input: std::option::Option<crate::model::ReviewPolicy>,
        ) -> Self {
            self.inner = self.inner.set_assignment_review_policy(input);
            self
        }
        /// <p> The HIT-level Review Policy applies to the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
        pub fn hit_review_policy(mut self, input: crate::model::ReviewPolicy) -> Self {
            self.inner = self.inner.hit_review_policy(input);
            self
        }
        /// <p> The HIT-level Review Policy applies to the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
        pub fn set_hit_review_policy(
            mut self,
            input: std::option::Option<crate::model::ReviewPolicy>,
        ) -> Self {
            self.inner = self.inner.set_hit_review_policy(input);
            self
        }
        /// <p> The HITLayoutId allows you to use a pre-existing HIT design with placeholder values and create an additional HIT by providing those values as HITLayoutParameters. </p>
        /// <p> Constraints: Either a Question parameter or a HITLayoutId parameter must be provided. </p>
        pub fn hit_layout_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_layout_id(input.into());
            self
        }
        /// <p> The HITLayoutId allows you to use a pre-existing HIT design with placeholder values and create an additional HIT by providing those values as HITLayoutParameters. </p>
        /// <p> Constraints: Either a Question parameter or a HITLayoutId parameter must be provided. </p>
        pub fn set_hit_layout_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_hit_layout_id(input);
            self
        }
        /// Appends an item to `HITLayoutParameters`.
        ///
        /// To override the contents of this collection use [`set_hit_layout_parameters`](Self::set_hit_layout_parameters).
        ///
        /// <p> If the HITLayoutId is provided, any placeholder values must be filled in with values using the HITLayoutParameter structure. For more information, see HITLayout. </p>
        pub fn hit_layout_parameters(mut self, input: crate::model::HitLayoutParameter) -> Self {
            self.inner = self.inner.hit_layout_parameters(input);
            self
        }
        /// <p> If the HITLayoutId is provided, any placeholder values must be filled in with values using the HITLayoutParameter structure. For more information, see HITLayout. </p>
        pub fn set_hit_layout_parameters(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::HitLayoutParameter>>,
        ) -> Self {
            self.inner = self.inner.set_hit_layout_parameters(input);
            self
        }
    }
    /// Fluent builder constructing a request to `CreateHITType`.
    ///
    /// <p> The <code>CreateHITType</code> operation creates a new HIT type. This operation allows you to define a standard set of HIT properties to use when creating HITs. If you register a HIT type with values that match an existing HIT type, the HIT type ID of the existing type will be returned. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct CreateHITType {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::create_hit_type_input::Builder,
    }
    impl CreateHITType {
        /// Creates a new `CreateHITType`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::CreateHitTypeOutput,
            aws_smithy_http::result::SdkError<crate::error::CreateHITTypeError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p> The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it. </p>
        pub fn auto_approval_delay_in_seconds(mut self, input: i64) -> Self {
            self.inner = self.inner.auto_approval_delay_in_seconds(input);
            self
        }
        /// <p> The number of seconds after an assignment for the HIT has been submitted, after which the assignment is considered Approved automatically unless the Requester explicitly rejects it. </p>
        pub fn set_auto_approval_delay_in_seconds(
            mut self,
            input: std::option::Option<i64>,
        ) -> Self {
            self.inner = self.inner.set_auto_approval_delay_in_seconds(input);
            self
        }
        /// <p> The amount of time, in seconds, that a Worker has to complete the HIT after accepting it. If a Worker does not complete the assignment within the specified duration, the assignment is considered abandoned. If the HIT is still active (that is, its lifetime has not elapsed), the assignment becomes available for other users to find and accept. </p>
        pub fn assignment_duration_in_seconds(mut self, input: i64) -> Self {
            self.inner = self.inner.assignment_duration_in_seconds(input);
            self
        }
        /// <p> The amount of time, in seconds, that a Worker has to complete the HIT after accepting it. If a Worker does not complete the assignment within the specified duration, the assignment is considered abandoned. If the HIT is still active (that is, its lifetime has not elapsed), the assignment becomes available for other users to find and accept. </p>
        pub fn set_assignment_duration_in_seconds(
            mut self,
            input: std::option::Option<i64>,
        ) -> Self {
            self.inner = self.inner.set_assignment_duration_in_seconds(input);
            self
        }
        /// <p> The amount of money the Requester will pay a Worker for successfully completing the HIT. </p>
        pub fn reward(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.reward(input.into());
            self
        }
        /// <p> The amount of money the Requester will pay a Worker for successfully completing the HIT. </p>
        pub fn set_reward(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_reward(input);
            self
        }
        /// <p> The title of the HIT. A title should be short and descriptive about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT title appears in search results, and everywhere the HIT is mentioned. </p>
        pub fn title(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.title(input.into());
            self
        }
        /// <p> The title of the HIT. A title should be short and descriptive about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT title appears in search results, and everywhere the HIT is mentioned. </p>
        pub fn set_title(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_title(input);
            self
        }
        /// <p> One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs. </p>
        pub fn keywords(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.keywords(input.into());
            self
        }
        /// <p> One or more words or phrases that describe the HIT, separated by commas. These words are used in searches to find HITs. </p>
        pub fn set_keywords(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_keywords(input);
            self
        }
        /// <p> A general description of the HIT. A description includes detailed information about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT description appears in the expanded view of search results, and in the HIT and assignment screens. A good description gives the user enough information to evaluate the HIT before accepting it. </p>
        pub fn description(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.description(input.into());
            self
        }
        /// <p> A general description of the HIT. A description includes detailed information about the kind of task the HIT contains. On the Amazon Mechanical Turk web site, the HIT description appears in the expanded view of search results, and in the HIT and assignment screens. A good description gives the user enough information to evaluate the HIT before accepting it. </p>
        pub fn set_description(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_description(input);
            self
        }
        /// Appends an item to `QualificationRequirements`.
        ///
        /// To override the contents of this collection use [`set_qualification_requirements`](Self::set_qualification_requirements).
        ///
        /// <p> Conditions that a Worker's Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the <code>ActionsGuarded</code> field on each <code>QualificationRequirement</code> structure. </p>
        pub fn qualification_requirements(
            mut self,
            input: crate::model::QualificationRequirement,
        ) -> Self {
            self.inner = self.inner.qualification_requirements(input);
            self
        }
        /// <p> Conditions that a Worker's Qualifications must meet in order to accept the HIT. A HIT can have between zero and ten Qualification requirements. All requirements must be met in order for a Worker to accept the HIT. Additionally, other actions can be restricted using the <code>ActionsGuarded</code> field on each <code>QualificationRequirement</code> structure. </p>
        pub fn set_qualification_requirements(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::QualificationRequirement>>,
        ) -> Self {
            self.inner = self.inner.set_qualification_requirements(input);
            self
        }
    }
    /// Fluent builder constructing a request to `CreateHITWithHITType`.
    ///
    /// <p> The <code>CreateHITWithHITType</code> operation creates a new Human Intelligence Task (HIT) using an existing HITTypeID generated by the <code>CreateHITType</code> operation. </p>
    /// <p> This is an alternative way to create HITs from the <code>CreateHIT</code> operation. This is the recommended best practice for Requesters who are creating large numbers of HITs. </p>
    /// <p>CreateHITWithHITType also supports several ways to provide question data: by providing a value for the <code>Question</code> parameter that fully specifies the contents of the HIT, or by providing a <code>HitLayoutId</code> and associated <code>HitLayoutParameters</code>. </p> <note>
    /// <p> If a HIT is created with 10 or more maximum assignments, there is an additional fee. For more information, see <a href="https://requester.mturk.com/pricing">Amazon Mechanical Turk Pricing</a>. </p>
    /// </note>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct CreateHITWithHITType {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::create_hit_with_hit_type_input::Builder,
    }
    impl CreateHITWithHITType {
        /// Creates a new `CreateHITWithHITType`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::CreateHitWithHitTypeOutput,
            aws_smithy_http::result::SdkError<crate::error::CreateHITWithHITTypeError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The HIT type ID you want to create this HIT with.</p>
        pub fn hit_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_type_id(input.into());
            self
        }
        /// <p>The HIT type ID you want to create this HIT with.</p>
        pub fn set_hit_type_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_type_id(input);
            self
        }
        /// <p> The number of times the HIT can be accepted and completed before the HIT becomes unavailable. </p>
        pub fn max_assignments(mut self, input: i32) -> Self {
            self.inner = self.inner.max_assignments(input);
            self
        }
        /// <p> The number of times the HIT can be accepted and completed before the HIT becomes unavailable. </p>
        pub fn set_max_assignments(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_assignments(input);
            self
        }
        /// <p> An amount of time, in seconds, after which the HIT is no longer available for users to accept. After the lifetime of the HIT elapses, the HIT no longer appears in HIT searches, even if not all of the assignments for the HIT have been accepted. </p>
        pub fn lifetime_in_seconds(mut self, input: i64) -> Self {
            self.inner = self.inner.lifetime_in_seconds(input);
            self
        }
        /// <p> An amount of time, in seconds, after which the HIT is no longer available for users to accept. After the lifetime of the HIT elapses, the HIT no longer appears in HIT searches, even if not all of the assignments for the HIT have been accepted. </p>
        pub fn set_lifetime_in_seconds(mut self, input: std::option::Option<i64>) -> Self {
            self.inner = self.inner.set_lifetime_in_seconds(input);
            self
        }
        /// <p> The data the person completing the HIT uses to produce the results. </p>
        /// <p> Constraints: Must be a QuestionForm data structure, an ExternalQuestion data structure, or an HTMLQuestion data structure. The XML question data must not be larger than 64 kilobytes (65,535 bytes) in size, including whitespace. </p>
        /// <p>Either a Question parameter or a HITLayoutId parameter must be provided.</p>
        pub fn question(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.question(input.into());
            self
        }
        /// <p> The data the person completing the HIT uses to produce the results. </p>
        /// <p> Constraints: Must be a QuestionForm data structure, an ExternalQuestion data structure, or an HTMLQuestion data structure. The XML question data must not be larger than 64 kilobytes (65,535 bytes) in size, including whitespace. </p>
        /// <p>Either a Question parameter or a HITLayoutId parameter must be provided.</p>
        pub fn set_question(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_question(input);
            self
        }
        /// <p> An arbitrary data field. The RequesterAnnotation parameter lets your application attach arbitrary data to the HIT for tracking purposes. For example, this parameter could be an identifier internal to the Requester's application that corresponds with the HIT. </p>
        /// <p> The RequesterAnnotation parameter for a HIT is only visible to the Requester who created the HIT. It is not shown to the Worker, or any other Requester. </p>
        /// <p> The RequesterAnnotation parameter may be different for each HIT you submit. It does not affect how your HITs are grouped. </p>
        pub fn requester_annotation(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.requester_annotation(input.into());
            self
        }
        /// <p> An arbitrary data field. The RequesterAnnotation parameter lets your application attach arbitrary data to the HIT for tracking purposes. For example, this parameter could be an identifier internal to the Requester's application that corresponds with the HIT. </p>
        /// <p> The RequesterAnnotation parameter for a HIT is only visible to the Requester who created the HIT. It is not shown to the Worker, or any other Requester. </p>
        /// <p> The RequesterAnnotation parameter may be different for each HIT you submit. It does not affect how your HITs are grouped. </p>
        pub fn set_requester_annotation(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_requester_annotation(input);
            self
        }
        /// <p> A unique identifier for this request which allows you to retry the call on error without creating duplicate HITs. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the HIT already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return a AWS.MechanicalTurk.HitAlreadyExists error with a message containing the HITId. </p> <note>
        /// <p> Note: It is your responsibility to ensure uniqueness of the token. The unique token expires after 24 hours. Subsequent calls using the same UniqueRequestToken made after the 24 hour limit could create duplicate HITs. </p>
        /// </note>
        pub fn unique_request_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.unique_request_token(input.into());
            self
        }
        /// <p> A unique identifier for this request which allows you to retry the call on error without creating duplicate HITs. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the HIT already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return a AWS.MechanicalTurk.HitAlreadyExists error with a message containing the HITId. </p> <note>
        /// <p> Note: It is your responsibility to ensure uniqueness of the token. The unique token expires after 24 hours. Subsequent calls using the same UniqueRequestToken made after the 24 hour limit could create duplicate HITs. </p>
        /// </note>
        pub fn set_unique_request_token(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_unique_request_token(input);
            self
        }
        /// <p> The Assignment-level Review Policy applies to the assignments under the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
        pub fn assignment_review_policy(mut self, input: crate::model::ReviewPolicy) -> Self {
            self.inner = self.inner.assignment_review_policy(input);
            self
        }
        /// <p> The Assignment-level Review Policy applies to the assignments under the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
        pub fn set_assignment_review_policy(
            mut self,
            input: std::option::Option<crate::model::ReviewPolicy>,
        ) -> Self {
            self.inner = self.inner.set_assignment_review_policy(input);
            self
        }
        /// <p> The HIT-level Review Policy applies to the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
        pub fn hit_review_policy(mut self, input: crate::model::ReviewPolicy) -> Self {
            self.inner = self.inner.hit_review_policy(input);
            self
        }
        /// <p> The HIT-level Review Policy applies to the HIT. You can specify for Mechanical Turk to take various actions based on the policy. </p>
        pub fn set_hit_review_policy(
            mut self,
            input: std::option::Option<crate::model::ReviewPolicy>,
        ) -> Self {
            self.inner = self.inner.set_hit_review_policy(input);
            self
        }
        /// <p> The HITLayoutId allows you to use a pre-existing HIT design with placeholder values and create an additional HIT by providing those values as HITLayoutParameters. </p>
        /// <p> Constraints: Either a Question parameter or a HITLayoutId parameter must be provided. </p>
        pub fn hit_layout_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_layout_id(input.into());
            self
        }
        /// <p> The HITLayoutId allows you to use a pre-existing HIT design with placeholder values and create an additional HIT by providing those values as HITLayoutParameters. </p>
        /// <p> Constraints: Either a Question parameter or a HITLayoutId parameter must be provided. </p>
        pub fn set_hit_layout_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_hit_layout_id(input);
            self
        }
        /// Appends an item to `HITLayoutParameters`.
        ///
        /// To override the contents of this collection use [`set_hit_layout_parameters`](Self::set_hit_layout_parameters).
        ///
        /// <p> If the HITLayoutId is provided, any placeholder values must be filled in with values using the HITLayoutParameter structure. For more information, see HITLayout. </p>
        pub fn hit_layout_parameters(mut self, input: crate::model::HitLayoutParameter) -> Self {
            self.inner = self.inner.hit_layout_parameters(input);
            self
        }
        /// <p> If the HITLayoutId is provided, any placeholder values must be filled in with values using the HITLayoutParameter structure. For more information, see HITLayout. </p>
        pub fn set_hit_layout_parameters(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::HitLayoutParameter>>,
        ) -> Self {
            self.inner = self.inner.set_hit_layout_parameters(input);
            self
        }
    }
    /// Fluent builder constructing a request to `CreateQualificationType`.
    ///
    /// <p> The <code>CreateQualificationType</code> operation creates a new Qualification type, which is represented by a <code>QualificationType</code> data structure. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct CreateQualificationType {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::create_qualification_type_input::Builder,
    }
    impl CreateQualificationType {
        /// Creates a new `CreateQualificationType`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::CreateQualificationTypeOutput,
            aws_smithy_http::result::SdkError<crate::error::CreateQualificationTypeError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p> The name you give to the Qualification type. The type name is used to represent the Qualification to Workers, and to find the type using a Qualification type search. It must be unique across all of your Qualification types.</p>
        pub fn name(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.name(input.into());
            self
        }
        /// <p> The name you give to the Qualification type. The type name is used to represent the Qualification to Workers, and to find the type using a Qualification type search. It must be unique across all of your Qualification types.</p>
        pub fn set_name(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_name(input);
            self
        }
        /// <p>One or more words or phrases that describe the Qualification type, separated by commas. The keywords of a type make the type easier to find during a search.</p>
        pub fn keywords(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.keywords(input.into());
            self
        }
        /// <p>One or more words or phrases that describe the Qualification type, separated by commas. The keywords of a type make the type easier to find during a search.</p>
        pub fn set_keywords(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_keywords(input);
            self
        }
        /// <p>A long description for the Qualification type. On the Amazon Mechanical Turk website, the long description is displayed when a Worker examines a Qualification type.</p>
        pub fn description(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.description(input.into());
            self
        }
        /// <p>A long description for the Qualification type. On the Amazon Mechanical Turk website, the long description is displayed when a Worker examines a Qualification type.</p>
        pub fn set_description(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_description(input);
            self
        }
        /// <p>The initial status of the Qualification type.</p>
        /// <p>Constraints: Valid values are: Active | Inactive</p>
        pub fn qualification_type_status(
            mut self,
            input: crate::model::QualificationTypeStatus,
        ) -> Self {
            self.inner = self.inner.qualification_type_status(input);
            self
        }
        /// <p>The initial status of the Qualification type.</p>
        /// <p>Constraints: Valid values are: Active | Inactive</p>
        pub fn set_qualification_type_status(
            mut self,
            input: std::option::Option<crate::model::QualificationTypeStatus>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_status(input);
            self
        }
        /// <p>The number of seconds that a Worker must wait after requesting a Qualification of the Qualification type before the worker can retry the Qualification request.</p>
        /// <p>Constraints: None. If not specified, retries are disabled and Workers can request a Qualification of this type only once, even if the Worker has not been granted the Qualification. It is not possible to disable retries for a Qualification type after it has been created with retries enabled. If you want to disable retries, you must delete existing retry-enabled Qualification type and then create a new Qualification type with retries disabled.</p>
        pub fn retry_delay_in_seconds(mut self, input: i64) -> Self {
            self.inner = self.inner.retry_delay_in_seconds(input);
            self
        }
        /// <p>The number of seconds that a Worker must wait after requesting a Qualification of the Qualification type before the worker can retry the Qualification request.</p>
        /// <p>Constraints: None. If not specified, retries are disabled and Workers can request a Qualification of this type only once, even if the Worker has not been granted the Qualification. It is not possible to disable retries for a Qualification type after it has been created with retries enabled. If you want to disable retries, you must delete existing retry-enabled Qualification type and then create a new Qualification type with retries disabled.</p>
        pub fn set_retry_delay_in_seconds(mut self, input: std::option::Option<i64>) -> Self {
            self.inner = self.inner.set_retry_delay_in_seconds(input);
            self
        }
        /// <p> The questions for the Qualification test a Worker must answer correctly to obtain a Qualification of this type. If this parameter is specified, <code>TestDurationInSeconds</code> must also be specified. </p>
        /// <p>Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm data structure. This parameter cannot be specified if AutoGranted is true.</p>
        /// <p>Constraints: None. If not specified, the Worker may request the Qualification without answering any questions.</p>
        pub fn test(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.test(input.into());
            self
        }
        /// <p> The questions for the Qualification test a Worker must answer correctly to obtain a Qualification of this type. If this parameter is specified, <code>TestDurationInSeconds</code> must also be specified. </p>
        /// <p>Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm data structure. This parameter cannot be specified if AutoGranted is true.</p>
        /// <p>Constraints: None. If not specified, the Worker may request the Qualification without answering any questions.</p>
        pub fn set_test(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_test(input);
            self
        }
        /// <p>The answers to the Qualification test specified in the Test parameter, in the form of an AnswerKey data structure.</p>
        /// <p>Constraints: Must not be longer than 65535 bytes.</p>
        /// <p>Constraints: None. If not specified, you must process Qualification requests manually.</p>
        pub fn answer_key(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.answer_key(input.into());
            self
        }
        /// <p>The answers to the Qualification test specified in the Test parameter, in the form of an AnswerKey data structure.</p>
        /// <p>Constraints: Must not be longer than 65535 bytes.</p>
        /// <p>Constraints: None. If not specified, you must process Qualification requests manually.</p>
        pub fn set_answer_key(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_answer_key(input);
            self
        }
        /// <p>The number of seconds the Worker has to complete the Qualification test, starting from the time the Worker requests the Qualification.</p>
        pub fn test_duration_in_seconds(mut self, input: i64) -> Self {
            self.inner = self.inner.test_duration_in_seconds(input);
            self
        }
        /// <p>The number of seconds the Worker has to complete the Qualification test, starting from the time the Worker requests the Qualification.</p>
        pub fn set_test_duration_in_seconds(mut self, input: std::option::Option<i64>) -> Self {
            self.inner = self.inner.set_test_duration_in_seconds(input);
            self
        }
        /// <p>Specifies whether requests for the Qualification type are granted immediately, without prompting the Worker with a Qualification test.</p>
        /// <p>Constraints: If the Test parameter is specified, this parameter cannot be true.</p>
        pub fn auto_granted(mut self, input: bool) -> Self {
            self.inner = self.inner.auto_granted(input);
            self
        }
        /// <p>Specifies whether requests for the Qualification type are granted immediately, without prompting the Worker with a Qualification test.</p>
        /// <p>Constraints: If the Test parameter is specified, this parameter cannot be true.</p>
        pub fn set_auto_granted(mut self, input: std::option::Option<bool>) -> Self {
            self.inner = self.inner.set_auto_granted(input);
            self
        }
        /// <p>The Qualification value to use for automatically granted Qualifications. This parameter is used only if the AutoGranted parameter is true.</p>
        pub fn auto_granted_value(mut self, input: i32) -> Self {
            self.inner = self.inner.auto_granted_value(input);
            self
        }
        /// <p>The Qualification value to use for automatically granted Qualifications. This parameter is used only if the AutoGranted parameter is true.</p>
        pub fn set_auto_granted_value(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_auto_granted_value(input);
            self
        }
    }
    /// Fluent builder constructing a request to `CreateWorkerBlock`.
    ///
    /// <p>The <code>CreateWorkerBlock</code> operation allows you to prevent a Worker from working on your HITs. For example, you can block a Worker who is producing poor quality work. You can block up to 100,000 Workers.</p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct CreateWorkerBlock {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::create_worker_block_input::Builder,
    }
    impl CreateWorkerBlock {
        /// Creates a new `CreateWorkerBlock`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::CreateWorkerBlockOutput,
            aws_smithy_http::result::SdkError<crate::error::CreateWorkerBlockError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the Worker to block.</p>
        pub fn worker_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.worker_id(input.into());
            self
        }
        /// <p>The ID of the Worker to block.</p>
        pub fn set_worker_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_worker_id(input);
            self
        }
        /// <p>A message explaining the reason for blocking the Worker. This parameter enables you to keep track of your Workers. The Worker does not see this message.</p>
        pub fn reason(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.reason(input.into());
            self
        }
        /// <p>A message explaining the reason for blocking the Worker. This parameter enables you to keep track of your Workers. The Worker does not see this message.</p>
        pub fn set_reason(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_reason(input);
            self
        }
    }
    /// Fluent builder constructing a request to `DeleteHIT`.
    ///
    /// <p> The <code>DeleteHIT</code> operation is used to delete HIT that is no longer needed. Only the Requester who created the HIT can delete it. </p>
    /// <p> You can only dispose of HITs that are in the <code>Reviewable</code> state, with all of their submitted assignments already either approved or rejected. If you call the DeleteHIT operation on a HIT that is not in the <code>Reviewable</code> state (for example, that has not expired, or still has active assignments), or on a HIT that is Reviewable but without all of its submitted assignments already approved or rejected, the service will return an error. </p> <note>
    /// <ul>
    /// <li> <p> HITs are automatically disposed of after 120 days. </p> </li>
    /// <li> <p> After you dispose of a HIT, you can no longer approve the HIT's rejected assignments. </p> </li>
    /// <li> <p> Disposed HITs are not returned in results for the ListHITs operation. </p> </li>
    /// <li> <p> Disposing HITs can improve the performance of operations such as ListReviewableHITs and ListHITs. </p> </li>
    /// </ul>
    /// </note>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct DeleteHIT {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::delete_hit_input::Builder,
    }
    impl DeleteHIT {
        /// Creates a new `DeleteHIT`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::DeleteHitOutput,
            aws_smithy_http::result::SdkError<crate::error::DeleteHITError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the HIT to be deleted.</p>
        pub fn hit_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_id(input.into());
            self
        }
        /// <p>The ID of the HIT to be deleted.</p>
        pub fn set_hit_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_id(input);
            self
        }
    }
    /// Fluent builder constructing a request to `DeleteQualificationType`.
    ///
    /// <p> The <code>DeleteQualificationType</code> deletes a Qualification type and deletes any HIT types that are associated with the Qualification type. </p>
    /// <p>This operation does not revoke Qualifications already assigned to Workers because the Qualifications might be needed for active HITs. If there are any pending requests for the Qualification type, Amazon Mechanical Turk rejects those requests. After you delete a Qualification type, you can no longer use it to create HITs or HIT types.</p> <note>
    /// <p>DeleteQualificationType must wait for all the HITs that use the deleted Qualification type to be deleted before completing. It may take up to 48 hours before DeleteQualificationType completes and the unique name of the Qualification type is available for reuse with CreateQualificationType.</p>
    /// </note>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct DeleteQualificationType {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::delete_qualification_type_input::Builder,
    }
    impl DeleteQualificationType {
        /// Creates a new `DeleteQualificationType`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::DeleteQualificationTypeOutput,
            aws_smithy_http::result::SdkError<crate::error::DeleteQualificationTypeError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the QualificationType to dispose.</p>
        pub fn qualification_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_type_id(input.into());
            self
        }
        /// <p>The ID of the QualificationType to dispose.</p>
        pub fn set_qualification_type_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_id(input);
            self
        }
    }
    /// Fluent builder constructing a request to `DeleteWorkerBlock`.
    ///
    /// <p>The <code>DeleteWorkerBlock</code> operation allows you to reinstate a blocked Worker to work on your HITs. This operation reverses the effects of the CreateWorkerBlock operation. You need the Worker ID to use this operation. If the Worker ID is missing or invalid, this operation fails and returns the message “WorkerId is invalid.” If the specified Worker is not blocked, this operation returns successfully.</p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct DeleteWorkerBlock {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::delete_worker_block_input::Builder,
    }
    impl DeleteWorkerBlock {
        /// Creates a new `DeleteWorkerBlock`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::DeleteWorkerBlockOutput,
            aws_smithy_http::result::SdkError<crate::error::DeleteWorkerBlockError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the Worker to unblock.</p>
        pub fn worker_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.worker_id(input.into());
            self
        }
        /// <p>The ID of the Worker to unblock.</p>
        pub fn set_worker_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_worker_id(input);
            self
        }
        /// <p>A message that explains the reason for unblocking the Worker. The Worker does not see this message.</p>
        pub fn reason(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.reason(input.into());
            self
        }
        /// <p>A message that explains the reason for unblocking the Worker. The Worker does not see this message.</p>
        pub fn set_reason(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_reason(input);
            self
        }
    }
    /// Fluent builder constructing a request to `DisassociateQualificationFromWorker`.
    ///
    /// <p> The <code>DisassociateQualificationFromWorker</code> revokes a previously granted Qualification from a user. </p>
    /// <p> You can provide a text message explaining why the Qualification was revoked. The user who had the Qualification can see this message. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct DisassociateQualificationFromWorker {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::disassociate_qualification_from_worker_input::Builder,
    }
    impl DisassociateQualificationFromWorker {
        /// Creates a new `DisassociateQualificationFromWorker`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::DisassociateQualificationFromWorkerOutput,
            aws_smithy_http::result::SdkError<
                crate::error::DisassociateQualificationFromWorkerError,
            >,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the Worker who possesses the Qualification to be revoked.</p>
        pub fn worker_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.worker_id(input.into());
            self
        }
        /// <p>The ID of the Worker who possesses the Qualification to be revoked.</p>
        pub fn set_worker_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_worker_id(input);
            self
        }
        /// <p>The ID of the Qualification type of the Qualification to be revoked.</p>
        pub fn qualification_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_type_id(input.into());
            self
        }
        /// <p>The ID of the Qualification type of the Qualification to be revoked.</p>
        pub fn set_qualification_type_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_id(input);
            self
        }
        /// <p>A text message that explains why the Qualification was revoked. The user who had the Qualification sees this message.</p>
        pub fn reason(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.reason(input.into());
            self
        }
        /// <p>A text message that explains why the Qualification was revoked. The user who had the Qualification sees this message.</p>
        pub fn set_reason(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_reason(input);
            self
        }
    }
    /// Fluent builder constructing a request to `GetAccountBalance`.
    ///
    /// <p>The <code>GetAccountBalance</code> operation retrieves the Prepaid HITs balance in your Amazon Mechanical Turk account if you are a Prepaid Requester. Alternatively, this operation will retrieve the remaining available AWS Billing usage if you have enabled AWS Billing. Note: If you have enabled AWS Billing and still have a remaining Prepaid HITs balance, this balance can be viewed on the My Account page in the Requester console.</p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct GetAccountBalance {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::get_account_balance_input::Builder,
    }
    impl GetAccountBalance {
        /// Creates a new `GetAccountBalance`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::GetAccountBalanceOutput,
            aws_smithy_http::result::SdkError<crate::error::GetAccountBalanceError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
    }
    /// Fluent builder constructing a request to `GetAssignment`.
    ///
    /// <p> The <code>GetAssignment</code> operation retrieves the details of the specified Assignment. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct GetAssignment {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::get_assignment_input::Builder,
    }
    impl GetAssignment {
        /// Creates a new `GetAssignment`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::GetAssignmentOutput,
            aws_smithy_http::result::SdkError<crate::error::GetAssignmentError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the Assignment to be retrieved.</p>
        pub fn assignment_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.assignment_id(input.into());
            self
        }
        /// <p>The ID of the Assignment to be retrieved.</p>
        pub fn set_assignment_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_assignment_id(input);
            self
        }
    }
    /// Fluent builder constructing a request to `GetFileUploadURL`.
    ///
    /// <p> The <code>GetFileUploadURL</code> operation generates and returns a temporary URL. You use the temporary URL to retrieve a file uploaded by a Worker as an answer to a FileUploadAnswer question for a HIT. The temporary URL is generated the instant the GetFileUploadURL operation is called, and is valid for 60 seconds. You can get a temporary file upload URL any time until the HIT is disposed. After the HIT is disposed, any uploaded files are deleted, and cannot be retrieved. Pending Deprecation on December 12, 2017. The Answer Specification structure will no longer support the <code>FileUploadAnswer</code> element to be used for the QuestionForm data structure. Instead, we recommend that Requesters who want to create HITs asking Workers to upload files to use Amazon S3. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct GetFileUploadURL {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::get_file_upload_url_input::Builder,
    }
    impl GetFileUploadURL {
        /// Creates a new `GetFileUploadURL`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::GetFileUploadUrlOutput,
            aws_smithy_http::result::SdkError<crate::error::GetFileUploadURLError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the assignment that contains the question with a FileUploadAnswer.</p>
        pub fn assignment_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.assignment_id(input.into());
            self
        }
        /// <p>The ID of the assignment that contains the question with a FileUploadAnswer.</p>
        pub fn set_assignment_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_assignment_id(input);
            self
        }
        /// <p>The identifier of the question with a FileUploadAnswer, as specified in the QuestionForm of the HIT.</p>
        pub fn question_identifier(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.question_identifier(input.into());
            self
        }
        /// <p>The identifier of the question with a FileUploadAnswer, as specified in the QuestionForm of the HIT.</p>
        pub fn set_question_identifier(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_question_identifier(input);
            self
        }
    }
    /// Fluent builder constructing a request to `GetHIT`.
    ///
    /// <p> The <code>GetHIT</code> operation retrieves the details of the specified HIT. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct GetHIT {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::get_hit_input::Builder,
    }
    impl GetHIT {
        /// Creates a new `GetHIT`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::GetHitOutput,
            aws_smithy_http::result::SdkError<crate::error::GetHITError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the HIT to be retrieved.</p>
        pub fn hit_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_id(input.into());
            self
        }
        /// <p>The ID of the HIT to be retrieved.</p>
        pub fn set_hit_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_id(input);
            self
        }
    }
    /// Fluent builder constructing a request to `GetQualificationScore`.
    ///
    /// <p> The <code>GetQualificationScore</code> operation returns the value of a Worker's Qualification for a given Qualification type. </p>
    /// <p> To get a Worker's Qualification, you must know the Worker's ID. The Worker's ID is included in the assignment data returned by the <code>ListAssignmentsForHIT</code> operation. </p>
    /// <p>Only the owner of a Qualification type can query the value of a Worker's Qualification of that type.</p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct GetQualificationScore {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::get_qualification_score_input::Builder,
    }
    impl GetQualificationScore {
        /// Creates a new `GetQualificationScore`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::GetQualificationScoreOutput,
            aws_smithy_http::result::SdkError<crate::error::GetQualificationScoreError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the QualificationType.</p>
        pub fn qualification_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_type_id(input.into());
            self
        }
        /// <p>The ID of the QualificationType.</p>
        pub fn set_qualification_type_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_id(input);
            self
        }
        /// <p>The ID of the Worker whose Qualification is being updated.</p>
        pub fn worker_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.worker_id(input.into());
            self
        }
        /// <p>The ID of the Worker whose Qualification is being updated.</p>
        pub fn set_worker_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_worker_id(input);
            self
        }
    }
    /// Fluent builder constructing a request to `GetQualificationType`.
    ///
    /// <p> The <code>GetQualificationType</code>operation retrieves information about a Qualification type using its ID. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct GetQualificationType {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::get_qualification_type_input::Builder,
    }
    impl GetQualificationType {
        /// Creates a new `GetQualificationType`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::GetQualificationTypeOutput,
            aws_smithy_http::result::SdkError<crate::error::GetQualificationTypeError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the QualificationType.</p>
        pub fn qualification_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_type_id(input.into());
            self
        }
        /// <p>The ID of the QualificationType.</p>
        pub fn set_qualification_type_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_id(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ListAssignmentsForHIT`.
    ///
    /// <p> The <code>ListAssignmentsForHIT</code> operation retrieves completed assignments for a HIT. You can use this operation to retrieve the results for a HIT. </p>
    /// <p> You can get assignments for a HIT at any time, even if the HIT is not yet Reviewable. If a HIT requested multiple assignments, and has received some results but has not yet become Reviewable, you can still retrieve the partial results with this operation. </p>
    /// <p> Use the AssignmentStatus parameter to control which set of assignments for a HIT are returned. The ListAssignmentsForHIT operation can return submitted assignments awaiting approval, or it can return assignments that have already been approved or rejected. You can set AssignmentStatus=Approved,Rejected to get assignments that have already been approved and rejected together in one result set. </p>
    /// <p> Only the Requester who created the HIT can retrieve the assignments for that HIT. </p>
    /// <p> Results are sorted and divided into numbered pages and the operation returns a single page of results. You can use the parameters of the operation to control sorting and pagination. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ListAssignmentsForHIT {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::list_assignments_for_hit_input::Builder,
    }
    impl ListAssignmentsForHIT {
        /// Creates a new `ListAssignmentsForHIT`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ListAssignmentsForHitOutput,
            aws_smithy_http::result::SdkError<crate::error::ListAssignmentsForHITError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// Create a paginator for this request
        ///
        /// Paginators are used by calling [`send().await`](crate::paginator::ListAssignmentsForHitPaginator::send) which returns a [`Stream`](tokio_stream::Stream).
        pub fn into_paginator(self) -> crate::paginator::ListAssignmentsForHitPaginator {
            crate::paginator::ListAssignmentsForHitPaginator::new(self.handle, self.inner)
        }
        /// <p>The ID of the HIT.</p>
        pub fn hit_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_id(input.into());
            self
        }
        /// <p>The ID of the HIT.</p>
        pub fn set_hit_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_id(input);
            self
        }
        /// <p>Pagination token</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.next_token(input.into());
            self
        }
        /// <p>Pagination token</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_next_token(input);
            self
        }
        #[allow(missing_docs)] // documentation missing in model
        pub fn max_results(mut self, input: i32) -> Self {
            self.inner = self.inner.max_results(input);
            self
        }
        #[allow(missing_docs)] // documentation missing in model
        pub fn set_max_results(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_results(input);
            self
        }
        /// Appends an item to `AssignmentStatuses`.
        ///
        /// To override the contents of this collection use [`set_assignment_statuses`](Self::set_assignment_statuses).
        ///
        /// <p>The status of the assignments to return: Submitted | Approved | Rejected</p>
        pub fn assignment_statuses(mut self, input: crate::model::AssignmentStatus) -> Self {
            self.inner = self.inner.assignment_statuses(input);
            self
        }
        /// <p>The status of the assignments to return: Submitted | Approved | Rejected</p>
        pub fn set_assignment_statuses(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::AssignmentStatus>>,
        ) -> Self {
            self.inner = self.inner.set_assignment_statuses(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ListBonusPayments`.
    ///
    /// <p> The <code>ListBonusPayments</code> operation retrieves the amounts of bonuses you have paid to Workers for a given HIT or assignment. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ListBonusPayments {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::list_bonus_payments_input::Builder,
    }
    impl ListBonusPayments {
        /// Creates a new `ListBonusPayments`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ListBonusPaymentsOutput,
            aws_smithy_http::result::SdkError<crate::error::ListBonusPaymentsError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// Create a paginator for this request
        ///
        /// Paginators are used by calling [`send().await`](crate::paginator::ListBonusPaymentsPaginator::send) which returns a [`Stream`](tokio_stream::Stream).
        pub fn into_paginator(self) -> crate::paginator::ListBonusPaymentsPaginator {
            crate::paginator::ListBonusPaymentsPaginator::new(self.handle, self.inner)
        }
        /// <p>The ID of the HIT associated with the bonus payments to retrieve. If not specified, all bonus payments for all assignments for the given HIT are returned. Either the HITId parameter or the AssignmentId parameter must be specified</p>
        pub fn hit_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_id(input.into());
            self
        }
        /// <p>The ID of the HIT associated with the bonus payments to retrieve. If not specified, all bonus payments for all assignments for the given HIT are returned. Either the HITId parameter or the AssignmentId parameter must be specified</p>
        pub fn set_hit_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_id(input);
            self
        }
        /// <p>The ID of the assignment associated with the bonus payments to retrieve. If specified, only bonus payments for the given assignment are returned. Either the HITId parameter or the AssignmentId parameter must be specified</p>
        pub fn assignment_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.assignment_id(input.into());
            self
        }
        /// <p>The ID of the assignment associated with the bonus payments to retrieve. If specified, only bonus payments for the given assignment are returned. Either the HITId parameter or the AssignmentId parameter must be specified</p>
        pub fn set_assignment_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_assignment_id(input);
            self
        }
        /// <p>Pagination token</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.next_token(input.into());
            self
        }
        /// <p>Pagination token</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_next_token(input);
            self
        }
        #[allow(missing_docs)] // documentation missing in model
        pub fn max_results(mut self, input: i32) -> Self {
            self.inner = self.inner.max_results(input);
            self
        }
        #[allow(missing_docs)] // documentation missing in model
        pub fn set_max_results(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_results(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ListHITs`.
    ///
    /// <p> The <code>ListHITs</code> operation returns all of a Requester's HITs. The operation returns HITs of any status, except for HITs that have been deleted of with the DeleteHIT operation or that have been auto-deleted. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ListHITs {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::list_hi_ts_input::Builder,
    }
    impl ListHITs {
        /// Creates a new `ListHITs`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ListHiTsOutput,
            aws_smithy_http::result::SdkError<crate::error::ListHITsError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// Create a paginator for this request
        ///
        /// Paginators are used by calling [`send().await`](crate::paginator::ListHiTsPaginator::send) which returns a [`Stream`](tokio_stream::Stream).
        pub fn into_paginator(self) -> crate::paginator::ListHiTsPaginator {
            crate::paginator::ListHiTsPaginator::new(self.handle, self.inner)
        }
        /// <p>Pagination token</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.next_token(input.into());
            self
        }
        /// <p>Pagination token</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_next_token(input);
            self
        }
        #[allow(missing_docs)] // documentation missing in model
        pub fn max_results(mut self, input: i32) -> Self {
            self.inner = self.inner.max_results(input);
            self
        }
        #[allow(missing_docs)] // documentation missing in model
        pub fn set_max_results(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_results(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ListHITsForQualificationType`.
    ///
    /// <p> The <code>ListHITsForQualificationType</code> operation returns the HITs that use the given Qualification type for a Qualification requirement. The operation returns HITs of any status, except for HITs that have been deleted with the <code>DeleteHIT</code> operation or that have been auto-deleted. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ListHITsForQualificationType {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::list_hi_ts_for_qualification_type_input::Builder,
    }
    impl ListHITsForQualificationType {
        /// Creates a new `ListHITsForQualificationType`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ListHiTsForQualificationTypeOutput,
            aws_smithy_http::result::SdkError<crate::error::ListHITsForQualificationTypeError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// Create a paginator for this request
        ///
        /// Paginators are used by calling [`send().await`](crate::paginator::ListHiTsForQualificationTypePaginator::send) which returns a [`Stream`](tokio_stream::Stream).
        pub fn into_paginator(self) -> crate::paginator::ListHiTsForQualificationTypePaginator {
            crate::paginator::ListHiTsForQualificationTypePaginator::new(self.handle, self.inner)
        }
        /// <p> The ID of the Qualification type to use when querying HITs. </p>
        pub fn qualification_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_type_id(input.into());
            self
        }
        /// <p> The ID of the Qualification type to use when querying HITs. </p>
        pub fn set_qualification_type_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_id(input);
            self
        }
        /// <p>Pagination Token</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.next_token(input.into());
            self
        }
        /// <p>Pagination Token</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_next_token(input);
            self
        }
        /// <p> Limit the number of results returned. </p>
        pub fn max_results(mut self, input: i32) -> Self {
            self.inner = self.inner.max_results(input);
            self
        }
        /// <p> Limit the number of results returned. </p>
        pub fn set_max_results(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_results(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ListQualificationRequests`.
    ///
    /// <p> The <code>ListQualificationRequests</code> operation retrieves requests for Qualifications of a particular Qualification type. The owner of the Qualification type calls this operation to poll for pending requests, and accepts them using the AcceptQualification operation. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ListQualificationRequests {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::list_qualification_requests_input::Builder,
    }
    impl ListQualificationRequests {
        /// Creates a new `ListQualificationRequests`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ListQualificationRequestsOutput,
            aws_smithy_http::result::SdkError<crate::error::ListQualificationRequestsError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// Create a paginator for this request
        ///
        /// Paginators are used by calling [`send().await`](crate::paginator::ListQualificationRequestsPaginator::send) which returns a [`Stream`](tokio_stream::Stream).
        pub fn into_paginator(self) -> crate::paginator::ListQualificationRequestsPaginator {
            crate::paginator::ListQualificationRequestsPaginator::new(self.handle, self.inner)
        }
        /// <p>The ID of the QualificationType.</p>
        pub fn qualification_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_type_id(input.into());
            self
        }
        /// <p>The ID of the QualificationType.</p>
        pub fn set_qualification_type_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_id(input);
            self
        }
        /// <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.next_token(input.into());
            self
        }
        /// <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_next_token(input);
            self
        }
        /// <p> The maximum number of results to return in a single call. </p>
        pub fn max_results(mut self, input: i32) -> Self {
            self.inner = self.inner.max_results(input);
            self
        }
        /// <p> The maximum number of results to return in a single call. </p>
        pub fn set_max_results(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_results(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ListQualificationTypes`.
    ///
    /// <p> The <code>ListQualificationTypes</code> operation returns a list of Qualification types, filtered by an optional search term. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ListQualificationTypes {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::list_qualification_types_input::Builder,
    }
    impl ListQualificationTypes {
        /// Creates a new `ListQualificationTypes`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ListQualificationTypesOutput,
            aws_smithy_http::result::SdkError<crate::error::ListQualificationTypesError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// Create a paginator for this request
        ///
        /// Paginators are used by calling [`send().await`](crate::paginator::ListQualificationTypesPaginator::send) which returns a [`Stream`](tokio_stream::Stream).
        pub fn into_paginator(self) -> crate::paginator::ListQualificationTypesPaginator {
            crate::paginator::ListQualificationTypesPaginator::new(self.handle, self.inner)
        }
        /// <p> A text query against all of the searchable attributes of Qualification types. </p>
        pub fn query(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.query(input.into());
            self
        }
        /// <p> A text query against all of the searchable attributes of Qualification types. </p>
        pub fn set_query(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_query(input);
            self
        }
        /// <p>Specifies that only Qualification types that a user can request through the Amazon Mechanical Turk web site, such as by taking a Qualification test, are returned as results of the search. Some Qualification types, such as those assigned automatically by the system, cannot be requested directly by users. If false, all Qualification types, including those managed by the system, are considered. Valid values are True | False. </p>
        pub fn must_be_requestable(mut self, input: bool) -> Self {
            self.inner = self.inner.must_be_requestable(input);
            self
        }
        /// <p>Specifies that only Qualification types that a user can request through the Amazon Mechanical Turk web site, such as by taking a Qualification test, are returned as results of the search. Some Qualification types, such as those assigned automatically by the system, cannot be requested directly by users. If false, all Qualification types, including those managed by the system, are considered. Valid values are True | False. </p>
        pub fn set_must_be_requestable(mut self, input: std::option::Option<bool>) -> Self {
            self.inner = self.inner.set_must_be_requestable(input);
            self
        }
        /// <p> Specifies that only Qualification types that the Requester created are returned. If false, the operation returns all Qualification types. </p>
        pub fn must_be_owned_by_caller(mut self, input: bool) -> Self {
            self.inner = self.inner.must_be_owned_by_caller(input);
            self
        }
        /// <p> Specifies that only Qualification types that the Requester created are returned. If false, the operation returns all Qualification types. </p>
        pub fn set_must_be_owned_by_caller(mut self, input: std::option::Option<bool>) -> Self {
            self.inner = self.inner.set_must_be_owned_by_caller(input);
            self
        }
        /// <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.next_token(input.into());
            self
        }
        /// <p>If the previous response was incomplete (because there is more data to retrieve), Amazon Mechanical Turk returns a pagination token in the response. You can use this pagination token to retrieve the next set of results. </p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_next_token(input);
            self
        }
        /// <p> The maximum number of results to return in a single call. </p>
        pub fn max_results(mut self, input: i32) -> Self {
            self.inner = self.inner.max_results(input);
            self
        }
        /// <p> The maximum number of results to return in a single call. </p>
        pub fn set_max_results(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_results(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ListReviewableHITs`.
    ///
    /// <p> The <code>ListReviewableHITs</code> operation retrieves the HITs with Status equal to Reviewable or Status equal to Reviewing that belong to the Requester calling the operation. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ListReviewableHITs {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::list_reviewable_hi_ts_input::Builder,
    }
    impl ListReviewableHITs {
        /// Creates a new `ListReviewableHITs`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ListReviewableHiTsOutput,
            aws_smithy_http::result::SdkError<crate::error::ListReviewableHITsError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// Create a paginator for this request
        ///
        /// Paginators are used by calling [`send().await`](crate::paginator::ListReviewableHiTsPaginator::send) which returns a [`Stream`](tokio_stream::Stream).
        pub fn into_paginator(self) -> crate::paginator::ListReviewableHiTsPaginator {
            crate::paginator::ListReviewableHiTsPaginator::new(self.handle, self.inner)
        }
        /// <p> The ID of the HIT type of the HITs to consider for the query. If not specified, all HITs for the Reviewer are considered </p>
        pub fn hit_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_type_id(input.into());
            self
        }
        /// <p> The ID of the HIT type of the HITs to consider for the query. If not specified, all HITs for the Reviewer are considered </p>
        pub fn set_hit_type_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_type_id(input);
            self
        }
        /// <p> Can be either <code>Reviewable</code> or <code>Reviewing</code>. Reviewable is the default value. </p>
        pub fn status(mut self, input: crate::model::ReviewableHitStatus) -> Self {
            self.inner = self.inner.status(input);
            self
        }
        /// <p> Can be either <code>Reviewable</code> or <code>Reviewing</code>. Reviewable is the default value. </p>
        pub fn set_status(
            mut self,
            input: std::option::Option<crate::model::ReviewableHitStatus>,
        ) -> Self {
            self.inner = self.inner.set_status(input);
            self
        }
        /// <p>Pagination Token</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.next_token(input.into());
            self
        }
        /// <p>Pagination Token</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_next_token(input);
            self
        }
        /// <p> Limit the number of results returned. </p>
        pub fn max_results(mut self, input: i32) -> Self {
            self.inner = self.inner.max_results(input);
            self
        }
        /// <p> Limit the number of results returned. </p>
        pub fn set_max_results(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_results(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ListReviewPolicyResultsForHIT`.
    ///
    /// <p> The <code>ListReviewPolicyResultsForHIT</code> operation retrieves the computed results and the actions taken in the course of executing your Review Policies for a given HIT. For information about how to specify Review Policies when you call CreateHIT, see Review Policies. The ListReviewPolicyResultsForHIT operation can return results for both Assignment-level and HIT-level review results. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ListReviewPolicyResultsForHIT {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::list_review_policy_results_for_hit_input::Builder,
    }
    impl ListReviewPolicyResultsForHIT {
        /// Creates a new `ListReviewPolicyResultsForHIT`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ListReviewPolicyResultsForHitOutput,
            aws_smithy_http::result::SdkError<crate::error::ListReviewPolicyResultsForHITError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// Create a paginator for this request
        ///
        /// Paginators are used by calling [`send().await`](crate::paginator::ListReviewPolicyResultsForHitPaginator::send) which returns a [`Stream`](tokio_stream::Stream).
        pub fn into_paginator(self) -> crate::paginator::ListReviewPolicyResultsForHitPaginator {
            crate::paginator::ListReviewPolicyResultsForHitPaginator::new(self.handle, self.inner)
        }
        /// <p>The unique identifier of the HIT to retrieve review results for.</p>
        pub fn hit_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_id(input.into());
            self
        }
        /// <p>The unique identifier of the HIT to retrieve review results for.</p>
        pub fn set_hit_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_id(input);
            self
        }
        /// Appends an item to `PolicyLevels`.
        ///
        /// To override the contents of this collection use [`set_policy_levels`](Self::set_policy_levels).
        ///
        /// <p> The Policy Level(s) to retrieve review results for - HIT or Assignment. If omitted, the default behavior is to retrieve all data for both policy levels. For a list of all the described policies, see Review Policies. </p>
        pub fn policy_levels(mut self, input: crate::model::ReviewPolicyLevel) -> Self {
            self.inner = self.inner.policy_levels(input);
            self
        }
        /// <p> The Policy Level(s) to retrieve review results for - HIT or Assignment. If omitted, the default behavior is to retrieve all data for both policy levels. For a list of all the described policies, see Review Policies. </p>
        pub fn set_policy_levels(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::ReviewPolicyLevel>>,
        ) -> Self {
            self.inner = self.inner.set_policy_levels(input);
            self
        }
        /// <p> Specify if the operation should retrieve a list of the actions taken executing the Review Policies and their outcomes. </p>
        pub fn retrieve_actions(mut self, input: bool) -> Self {
            self.inner = self.inner.retrieve_actions(input);
            self
        }
        /// <p> Specify if the operation should retrieve a list of the actions taken executing the Review Policies and their outcomes. </p>
        pub fn set_retrieve_actions(mut self, input: std::option::Option<bool>) -> Self {
            self.inner = self.inner.set_retrieve_actions(input);
            self
        }
        /// <p> Specify if the operation should retrieve a list of the results computed by the Review Policies. </p>
        pub fn retrieve_results(mut self, input: bool) -> Self {
            self.inner = self.inner.retrieve_results(input);
            self
        }
        /// <p> Specify if the operation should retrieve a list of the results computed by the Review Policies. </p>
        pub fn set_retrieve_results(mut self, input: std::option::Option<bool>) -> Self {
            self.inner = self.inner.set_retrieve_results(input);
            self
        }
        /// <p>Pagination token</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.next_token(input.into());
            self
        }
        /// <p>Pagination token</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_next_token(input);
            self
        }
        /// <p>Limit the number of results returned.</p>
        pub fn max_results(mut self, input: i32) -> Self {
            self.inner = self.inner.max_results(input);
            self
        }
        /// <p>Limit the number of results returned.</p>
        pub fn set_max_results(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_results(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ListWorkerBlocks`.
    ///
    /// <p>The <code>ListWorkersBlocks</code> operation retrieves a list of Workers who are blocked from working on your HITs.</p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ListWorkerBlocks {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::list_worker_blocks_input::Builder,
    }
    impl ListWorkerBlocks {
        /// Creates a new `ListWorkerBlocks`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ListWorkerBlocksOutput,
            aws_smithy_http::result::SdkError<crate::error::ListWorkerBlocksError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// Create a paginator for this request
        ///
        /// Paginators are used by calling [`send().await`](crate::paginator::ListWorkerBlocksPaginator::send) which returns a [`Stream`](tokio_stream::Stream).
        pub fn into_paginator(self) -> crate::paginator::ListWorkerBlocksPaginator {
            crate::paginator::ListWorkerBlocksPaginator::new(self.handle, self.inner)
        }
        /// <p>Pagination token</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.next_token(input.into());
            self
        }
        /// <p>Pagination token</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_next_token(input);
            self
        }
        #[allow(missing_docs)] // documentation missing in model
        pub fn max_results(mut self, input: i32) -> Self {
            self.inner = self.inner.max_results(input);
            self
        }
        #[allow(missing_docs)] // documentation missing in model
        pub fn set_max_results(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_results(input);
            self
        }
    }
    /// Fluent builder constructing a request to `ListWorkersWithQualificationType`.
    ///
    /// <p> The <code>ListWorkersWithQualificationType</code> operation returns all of the Workers that have been associated with a given Qualification type. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct ListWorkersWithQualificationType {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::list_workers_with_qualification_type_input::Builder,
    }
    impl ListWorkersWithQualificationType {
        /// Creates a new `ListWorkersWithQualificationType`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::ListWorkersWithQualificationTypeOutput,
            aws_smithy_http::result::SdkError<crate::error::ListWorkersWithQualificationTypeError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// Create a paginator for this request
        ///
        /// Paginators are used by calling [`send().await`](crate::paginator::ListWorkersWithQualificationTypePaginator::send) which returns a [`Stream`](tokio_stream::Stream).
        pub fn into_paginator(self) -> crate::paginator::ListWorkersWithQualificationTypePaginator {
            crate::paginator::ListWorkersWithQualificationTypePaginator::new(
                self.handle,
                self.inner,
            )
        }
        /// <p>The ID of the Qualification type of the Qualifications to return.</p>
        pub fn qualification_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_type_id(input.into());
            self
        }
        /// <p>The ID of the Qualification type of the Qualifications to return.</p>
        pub fn set_qualification_type_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_id(input);
            self
        }
        /// <p> The status of the Qualifications to return. Can be <code>Granted | Revoked</code>. </p>
        pub fn status(mut self, input: crate::model::QualificationStatus) -> Self {
            self.inner = self.inner.status(input);
            self
        }
        /// <p> The status of the Qualifications to return. Can be <code>Granted | Revoked</code>. </p>
        pub fn set_status(
            mut self,
            input: std::option::Option<crate::model::QualificationStatus>,
        ) -> Self {
            self.inner = self.inner.set_status(input);
            self
        }
        /// <p>Pagination Token</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.next_token(input.into());
            self
        }
        /// <p>Pagination Token</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_next_token(input);
            self
        }
        /// <p> Limit the number of results returned. </p>
        pub fn max_results(mut self, input: i32) -> Self {
            self.inner = self.inner.max_results(input);
            self
        }
        /// <p> Limit the number of results returned. </p>
        pub fn set_max_results(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_max_results(input);
            self
        }
    }
    /// Fluent builder constructing a request to `NotifyWorkers`.
    ///
    /// <p> The <code>NotifyWorkers</code> operation sends an email to one or more Workers that you specify with the Worker ID. You can specify up to 100 Worker IDs to send the same message with a single call to the NotifyWorkers operation. The NotifyWorkers operation will send a notification email to a Worker only if you have previously approved or rejected work from the Worker. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct NotifyWorkers {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::notify_workers_input::Builder,
    }
    impl NotifyWorkers {
        /// Creates a new `NotifyWorkers`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::NotifyWorkersOutput,
            aws_smithy_http::result::SdkError<crate::error::NotifyWorkersError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The subject line of the email message to send. Can include up to 200 characters.</p>
        pub fn subject(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.subject(input.into());
            self
        }
        /// <p>The subject line of the email message to send. Can include up to 200 characters.</p>
        pub fn set_subject(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_subject(input);
            self
        }
        /// <p>The text of the email message to send. Can include up to 4,096 characters</p>
        pub fn message_text(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.message_text(input.into());
            self
        }
        /// <p>The text of the email message to send. Can include up to 4,096 characters</p>
        pub fn set_message_text(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_message_text(input);
            self
        }
        /// Appends an item to `WorkerIds`.
        ///
        /// To override the contents of this collection use [`set_worker_ids`](Self::set_worker_ids).
        ///
        /// <p>A list of Worker IDs you wish to notify. You can notify upto 100 Workers at a time.</p>
        pub fn worker_ids(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.worker_ids(input.into());
            self
        }
        /// <p>A list of Worker IDs you wish to notify. You can notify upto 100 Workers at a time.</p>
        pub fn set_worker_ids(
            mut self,
            input: std::option::Option<std::vec::Vec<std::string::String>>,
        ) -> Self {
            self.inner = self.inner.set_worker_ids(input);
            self
        }
    }
    /// Fluent builder constructing a request to `RejectAssignment`.
    ///
    /// <p> The <code>RejectAssignment</code> operation rejects the results of a completed assignment. </p>
    /// <p> You can include an optional feedback message with the rejection, which the Worker can see in the Status section of the web site. When you include a feedback message with the rejection, it helps the Worker understand why the assignment was rejected, and can improve the quality of the results the Worker submits in the future. </p>
    /// <p> Only the Requester who created the HIT can reject an assignment for the HIT. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct RejectAssignment {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::reject_assignment_input::Builder,
    }
    impl RejectAssignment {
        /// Creates a new `RejectAssignment`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::RejectAssignmentOutput,
            aws_smithy_http::result::SdkError<crate::error::RejectAssignmentError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p> The ID of the assignment. The assignment must correspond to a HIT created by the Requester. </p>
        pub fn assignment_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.assignment_id(input.into());
            self
        }
        /// <p> The ID of the assignment. The assignment must correspond to a HIT created by the Requester. </p>
        pub fn set_assignment_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_assignment_id(input);
            self
        }
        /// <p> A message for the Worker, which the Worker can see in the Status section of the web site. </p>
        pub fn requester_feedback(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.requester_feedback(input.into());
            self
        }
        /// <p> A message for the Worker, which the Worker can see in the Status section of the web site. </p>
        pub fn set_requester_feedback(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_requester_feedback(input);
            self
        }
    }
    /// Fluent builder constructing a request to `RejectQualificationRequest`.
    ///
    /// <p> The <code>RejectQualificationRequest</code> operation rejects a user's request for a Qualification. </p>
    /// <p> You can provide a text message explaining why the request was rejected. The Worker who made the request can see this message.</p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct RejectQualificationRequest {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::reject_qualification_request_input::Builder,
    }
    impl RejectQualificationRequest {
        /// Creates a new `RejectQualificationRequest`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::RejectQualificationRequestOutput,
            aws_smithy_http::result::SdkError<crate::error::RejectQualificationRequestError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p> The ID of the Qualification request, as returned by the <code>ListQualificationRequests</code> operation. </p>
        pub fn qualification_request_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_request_id(input.into());
            self
        }
        /// <p> The ID of the Qualification request, as returned by the <code>ListQualificationRequests</code> operation. </p>
        pub fn set_qualification_request_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_request_id(input);
            self
        }
        /// <p>A text message explaining why the request was rejected, to be shown to the Worker who made the request.</p>
        pub fn reason(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.reason(input.into());
            self
        }
        /// <p>A text message explaining why the request was rejected, to be shown to the Worker who made the request.</p>
        pub fn set_reason(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_reason(input);
            self
        }
    }
    /// Fluent builder constructing a request to `SendBonus`.
    ///
    /// <p> The <code>SendBonus</code> operation issues a payment of money from your account to a Worker. This payment happens separately from the reward you pay to the Worker when you approve the Worker's assignment. The SendBonus operation requires the Worker's ID and the assignment ID as parameters to initiate payment of the bonus. You must include a message that explains the reason for the bonus payment, as the Worker may not be expecting the payment. Amazon Mechanical Turk collects a fee for bonus payments, similar to the HIT listing fee. This operation fails if your account does not have enough funds to pay for both the bonus and the fees. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct SendBonus {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::send_bonus_input::Builder,
    }
    impl SendBonus {
        /// Creates a new `SendBonus`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::SendBonusOutput,
            aws_smithy_http::result::SdkError<crate::error::SendBonusError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the Worker being paid the bonus.</p>
        pub fn worker_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.worker_id(input.into());
            self
        }
        /// <p>The ID of the Worker being paid the bonus.</p>
        pub fn set_worker_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_worker_id(input);
            self
        }
        /// <p> The Bonus amount is a US Dollar amount specified using a string (for example, "5" represents $5.00 USD and "101.42" represents $101.42 USD). Do not include currency symbols or currency codes. </p>
        pub fn bonus_amount(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.bonus_amount(input.into());
            self
        }
        /// <p> The Bonus amount is a US Dollar amount specified using a string (for example, "5" represents $5.00 USD and "101.42" represents $101.42 USD). Do not include currency symbols or currency codes. </p>
        pub fn set_bonus_amount(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_bonus_amount(input);
            self
        }
        /// <p>The ID of the assignment for which this bonus is paid.</p>
        pub fn assignment_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.assignment_id(input.into());
            self
        }
        /// <p>The ID of the assignment for which this bonus is paid.</p>
        pub fn set_assignment_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_assignment_id(input);
            self
        }
        /// <p>A message that explains the reason for the bonus payment. The Worker receiving the bonus can see this message.</p>
        pub fn reason(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.reason(input.into());
            self
        }
        /// <p>A message that explains the reason for the bonus payment. The Worker receiving the bonus can see this message.</p>
        pub fn set_reason(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_reason(input);
            self
        }
        /// <p>A unique identifier for this request, which allows you to retry the call on error without granting multiple bonuses. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the bonus already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return an error with a message containing the request ID.</p>
        pub fn unique_request_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.unique_request_token(input.into());
            self
        }
        /// <p>A unique identifier for this request, which allows you to retry the call on error without granting multiple bonuses. This is useful in cases such as network timeouts where it is unclear whether or not the call succeeded on the server. If the bonus already exists in the system from a previous call using the same UniqueRequestToken, subsequent calls will return an error with a message containing the request ID.</p>
        pub fn set_unique_request_token(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_unique_request_token(input);
            self
        }
    }
    /// Fluent builder constructing a request to `SendTestEventNotification`.
    ///
    /// <p> The <code>SendTestEventNotification</code> operation causes Amazon Mechanical Turk to send a notification message as if a HIT event occurred, according to the provided notification specification. This allows you to test notifications without setting up notifications for a real HIT type and trying to trigger them using the website. When you call this operation, the service attempts to send the test notification immediately. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct SendTestEventNotification {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::send_test_event_notification_input::Builder,
    }
    impl SendTestEventNotification {
        /// Creates a new `SendTestEventNotification`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::SendTestEventNotificationOutput,
            aws_smithy_http::result::SdkError<crate::error::SendTestEventNotificationError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p> The notification specification to test. This value is identical to the value you would provide to the UpdateNotificationSettings operation when you establish the notification specification for a HIT type. </p>
        pub fn notification(mut self, input: crate::model::NotificationSpecification) -> Self {
            self.inner = self.inner.notification(input);
            self
        }
        /// <p> The notification specification to test. This value is identical to the value you would provide to the UpdateNotificationSettings operation when you establish the notification specification for a HIT type. </p>
        pub fn set_notification(
            mut self,
            input: std::option::Option<crate::model::NotificationSpecification>,
        ) -> Self {
            self.inner = self.inner.set_notification(input);
            self
        }
        /// <p> The event to simulate to test the notification specification. This event is included in the test message even if the notification specification does not include the event type. The notification specification does not filter out the test event. </p>
        pub fn test_event_type(mut self, input: crate::model::EventType) -> Self {
            self.inner = self.inner.test_event_type(input);
            self
        }
        /// <p> The event to simulate to test the notification specification. This event is included in the test message even if the notification specification does not include the event type. The notification specification does not filter out the test event. </p>
        pub fn set_test_event_type(
            mut self,
            input: std::option::Option<crate::model::EventType>,
        ) -> Self {
            self.inner = self.inner.set_test_event_type(input);
            self
        }
    }
    /// Fluent builder constructing a request to `UpdateExpirationForHIT`.
    ///
    /// <p> The <code>UpdateExpirationForHIT</code> operation allows you update the expiration time of a HIT. If you update it to a time in the past, the HIT will be immediately expired. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct UpdateExpirationForHIT {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::update_expiration_for_hit_input::Builder,
    }
    impl UpdateExpirationForHIT {
        /// Creates a new `UpdateExpirationForHIT`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::UpdateExpirationForHitOutput,
            aws_smithy_http::result::SdkError<crate::error::UpdateExpirationForHITError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p> The HIT to update. </p>
        pub fn hit_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_id(input.into());
            self
        }
        /// <p> The HIT to update. </p>
        pub fn set_hit_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_id(input);
            self
        }
        /// <p> The date and time at which you want the HIT to expire </p>
        pub fn expire_at(mut self, input: aws_smithy_types::DateTime) -> Self {
            self.inner = self.inner.expire_at(input);
            self
        }
        /// <p> The date and time at which you want the HIT to expire </p>
        pub fn set_expire_at(
            mut self,
            input: std::option::Option<aws_smithy_types::DateTime>,
        ) -> Self {
            self.inner = self.inner.set_expire_at(input);
            self
        }
    }
    /// Fluent builder constructing a request to `UpdateHITReviewStatus`.
    ///
    /// <p> The <code>UpdateHITReviewStatus</code> operation updates the status of a HIT. If the status is Reviewable, this operation can update the status to Reviewing, or it can revert a Reviewing HIT back to the Reviewable status. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct UpdateHITReviewStatus {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::update_hit_review_status_input::Builder,
    }
    impl UpdateHITReviewStatus {
        /// Creates a new `UpdateHITReviewStatus`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::UpdateHitReviewStatusOutput,
            aws_smithy_http::result::SdkError<crate::error::UpdateHITReviewStatusError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p> The ID of the HIT to update. </p>
        pub fn hit_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_id(input.into());
            self
        }
        /// <p> The ID of the HIT to update. </p>
        pub fn set_hit_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_id(input);
            self
        }
        /// <p> Specifies how to update the HIT status. Default is <code>False</code>. </p>
        /// <ul>
        /// <li> <p> Setting this to false will only transition a HIT from <code>Reviewable</code> to <code>Reviewing</code> </p> </li>
        /// <li> <p> Setting this to true will only transition a HIT from <code>Reviewing</code> to <code>Reviewable</code> </p> </li>
        /// </ul>
        pub fn revert(mut self, input: bool) -> Self {
            self.inner = self.inner.revert(input);
            self
        }
        /// <p> Specifies how to update the HIT status. Default is <code>False</code>. </p>
        /// <ul>
        /// <li> <p> Setting this to false will only transition a HIT from <code>Reviewable</code> to <code>Reviewing</code> </p> </li>
        /// <li> <p> Setting this to true will only transition a HIT from <code>Reviewing</code> to <code>Reviewable</code> </p> </li>
        /// </ul>
        pub fn set_revert(mut self, input: std::option::Option<bool>) -> Self {
            self.inner = self.inner.set_revert(input);
            self
        }
    }
    /// Fluent builder constructing a request to `UpdateHITTypeOfHIT`.
    ///
    /// <p> The <code>UpdateHITTypeOfHIT</code> operation allows you to change the HITType properties of a HIT. This operation disassociates the HIT from its old HITType properties and associates it with the new HITType properties. The HIT takes on the properties of the new HITType in place of the old ones. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct UpdateHITTypeOfHIT {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::update_hit_type_of_hit_input::Builder,
    }
    impl UpdateHITTypeOfHIT {
        /// Creates a new `UpdateHITTypeOfHIT`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::UpdateHitTypeOfHitOutput,
            aws_smithy_http::result::SdkError<crate::error::UpdateHITTypeOfHITError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The HIT to update.</p>
        pub fn hit_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_id(input.into());
            self
        }
        /// <p>The HIT to update.</p>
        pub fn set_hit_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_id(input);
            self
        }
        /// <p>The ID of the new HIT type.</p>
        pub fn hit_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_type_id(input.into());
            self
        }
        /// <p>The ID of the new HIT type.</p>
        pub fn set_hit_type_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_type_id(input);
            self
        }
    }
    /// Fluent builder constructing a request to `UpdateNotificationSettings`.
    ///
    /// <p> The <code>UpdateNotificationSettings</code> operation creates, updates, disables or re-enables notifications for a HIT type. If you call the UpdateNotificationSettings operation for a HIT type that already has a notification specification, the operation replaces the old specification with a new one. You can call the UpdateNotificationSettings operation to enable or disable notifications for the HIT type, without having to modify the notification specification itself by providing updates to the Active status without specifying a new notification specification. To change the Active status of a HIT type's notifications, the HIT type must already have a notification specification, or one must be provided in the same call to <code>UpdateNotificationSettings</code>. </p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct UpdateNotificationSettings {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::update_notification_settings_input::Builder,
    }
    impl UpdateNotificationSettings {
        /// Creates a new `UpdateNotificationSettings`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::UpdateNotificationSettingsOutput,
            aws_smithy_http::result::SdkError<crate::error::UpdateNotificationSettingsError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p> The ID of the HIT type whose notification specification is being updated. </p>
        pub fn hit_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.hit_type_id(input.into());
            self
        }
        /// <p> The ID of the HIT type whose notification specification is being updated. </p>
        pub fn set_hit_type_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_hit_type_id(input);
            self
        }
        /// <p> The notification specification for the HIT type. </p>
        pub fn notification(mut self, input: crate::model::NotificationSpecification) -> Self {
            self.inner = self.inner.notification(input);
            self
        }
        /// <p> The notification specification for the HIT type. </p>
        pub fn set_notification(
            mut self,
            input: std::option::Option<crate::model::NotificationSpecification>,
        ) -> Self {
            self.inner = self.inner.set_notification(input);
            self
        }
        /// <p> Specifies whether notifications are sent for HITs of this HIT type, according to the notification specification. You must specify either the Notification parameter or the Active parameter for the call to UpdateNotificationSettings to succeed. </p>
        pub fn active(mut self, input: bool) -> Self {
            self.inner = self.inner.active(input);
            self
        }
        /// <p> Specifies whether notifications are sent for HITs of this HIT type, according to the notification specification. You must specify either the Notification parameter or the Active parameter for the call to UpdateNotificationSettings to succeed. </p>
        pub fn set_active(mut self, input: std::option::Option<bool>) -> Self {
            self.inner = self.inner.set_active(input);
            self
        }
    }
    /// Fluent builder constructing a request to `UpdateQualificationType`.
    ///
    /// <p> The <code>UpdateQualificationType</code> operation modifies the attributes of an existing Qualification type, which is represented by a QualificationType data structure. Only the owner of a Qualification type can modify its attributes. </p>
    /// <p> Most attributes of a Qualification type can be changed after the type has been created. However, the Name and Keywords fields cannot be modified. The RetryDelayInSeconds parameter can be modified or added to change the delay or to enable retries, but RetryDelayInSeconds cannot be used to disable retries. </p>
    /// <p> You can use this operation to update the test for a Qualification type. The test is updated based on the values specified for the Test, TestDurationInSeconds and AnswerKey parameters. All three parameters specify the updated test. If you are updating the test for a type, you must specify the Test and TestDurationInSeconds parameters. The AnswerKey parameter is optional; omitting it specifies that the updated test does not have an answer key. </p>
    /// <p> If you omit the Test parameter, the test for the Qualification type is unchanged. There is no way to remove a test from a Qualification type that has one. If the type already has a test, you cannot update it to be AutoGranted. If the Qualification type does not have a test and one is provided by an update, the type will henceforth have a test. </p>
    /// <p> If you want to update the test duration or answer key for an existing test without changing the questions, you must specify a Test parameter with the original questions, along with the updated values. </p>
    /// <p> If you provide an updated Test but no AnswerKey, the new test will not have an answer key. Requests for such Qualifications must be granted manually. </p>
    /// <p> You can also update the AutoGranted and AutoGrantedValue attributes of the Qualification type.</p>
    #[derive(std::clone::Clone, std::fmt::Debug)]
    pub struct UpdateQualificationType {
        handle: std::sync::Arc<super::Handle>,
        inner: crate::input::update_qualification_type_input::Builder,
    }
    impl UpdateQualificationType {
        /// Creates a new `UpdateQualificationType`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle>) -> Self {
            Self {
                handle,
                inner: Default::default(),
            }
        }

        /// Sends the request and returns the response.
        ///
        /// If an error occurs, an `SdkError` will be returned with additional details that
        /// can be matched against.
        ///
        /// By default, any retryable failures will be retried twice. Retry behavior
        /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::UpdateQualificationTypeOutput,
            aws_smithy_http::result::SdkError<crate::error::UpdateQualificationTypeError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?
                .make_operation(&self.handle.conf)
                .await
                .map_err(|err| {
                    aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
                })?;
            self.handle.client.call(op).await
        }
        /// <p>The ID of the Qualification type to update.</p>
        pub fn qualification_type_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.qualification_type_id(input.into());
            self
        }
        /// <p>The ID of the Qualification type to update.</p>
        pub fn set_qualification_type_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_id(input);
            self
        }
        /// <p>The new description of the Qualification type.</p>
        pub fn description(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.description(input.into());
            self
        }
        /// <p>The new description of the Qualification type.</p>
        pub fn set_description(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_description(input);
            self
        }
        /// <p>The new status of the Qualification type - Active | Inactive</p>
        pub fn qualification_type_status(
            mut self,
            input: crate::model::QualificationTypeStatus,
        ) -> Self {
            self.inner = self.inner.qualification_type_status(input);
            self
        }
        /// <p>The new status of the Qualification type - Active | Inactive</p>
        pub fn set_qualification_type_status(
            mut self,
            input: std::option::Option<crate::model::QualificationTypeStatus>,
        ) -> Self {
            self.inner = self.inner.set_qualification_type_status(input);
            self
        }
        /// <p>The questions for the Qualification test a Worker must answer correctly to obtain a Qualification of this type. If this parameter is specified, <code>TestDurationInSeconds</code> must also be specified.</p>
        /// <p>Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm data structure. This parameter cannot be specified if AutoGranted is true.</p>
        /// <p>Constraints: None. If not specified, the Worker may request the Qualification without answering any questions.</p>
        pub fn test(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.test(input.into());
            self
        }
        /// <p>The questions for the Qualification test a Worker must answer correctly to obtain a Qualification of this type. If this parameter is specified, <code>TestDurationInSeconds</code> must also be specified.</p>
        /// <p>Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm data structure. This parameter cannot be specified if AutoGranted is true.</p>
        /// <p>Constraints: None. If not specified, the Worker may request the Qualification without answering any questions.</p>
        pub fn set_test(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_test(input);
            self
        }
        /// <p>The answers to the Qualification test specified in the Test parameter, in the form of an AnswerKey data structure.</p>
        pub fn answer_key(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.answer_key(input.into());
            self
        }
        /// <p>The answers to the Qualification test specified in the Test parameter, in the form of an AnswerKey data structure.</p>
        pub fn set_answer_key(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_answer_key(input);
            self
        }
        /// <p>The number of seconds the Worker has to complete the Qualification test, starting from the time the Worker requests the Qualification.</p>
        pub fn test_duration_in_seconds(mut self, input: i64) -> Self {
            self.inner = self.inner.test_duration_in_seconds(input);
            self
        }
        /// <p>The number of seconds the Worker has to complete the Qualification test, starting from the time the Worker requests the Qualification.</p>
        pub fn set_test_duration_in_seconds(mut self, input: std::option::Option<i64>) -> Self {
            self.inner = self.inner.set_test_duration_in_seconds(input);
            self
        }
        /// <p>The amount of time, in seconds, that Workers must wait after requesting a Qualification of the specified Qualification type before they can retry the Qualification request. It is not possible to disable retries for a Qualification type after it has been created with retries enabled. If you want to disable retries, you must dispose of the existing retry-enabled Qualification type using DisposeQualificationType and then create a new Qualification type with retries disabled using CreateQualificationType.</p>
        pub fn retry_delay_in_seconds(mut self, input: i64) -> Self {
            self.inner = self.inner.retry_delay_in_seconds(input);
            self
        }
        /// <p>The amount of time, in seconds, that Workers must wait after requesting a Qualification of the specified Qualification type before they can retry the Qualification request. It is not possible to disable retries for a Qualification type after it has been created with retries enabled. If you want to disable retries, you must dispose of the existing retry-enabled Qualification type using DisposeQualificationType and then create a new Qualification type with retries disabled using CreateQualificationType.</p>
        pub fn set_retry_delay_in_seconds(mut self, input: std::option::Option<i64>) -> Self {
            self.inner = self.inner.set_retry_delay_in_seconds(input);
            self
        }
        /// <p>Specifies whether requests for the Qualification type are granted immediately, without prompting the Worker with a Qualification test.</p>
        /// <p>Constraints: If the Test parameter is specified, this parameter cannot be true.</p>
        pub fn auto_granted(mut self, input: bool) -> Self {
            self.inner = self.inner.auto_granted(input);
            self
        }
        /// <p>Specifies whether requests for the Qualification type are granted immediately, without prompting the Worker with a Qualification test.</p>
        /// <p>Constraints: If the Test parameter is specified, this parameter cannot be true.</p>
        pub fn set_auto_granted(mut self, input: std::option::Option<bool>) -> Self {
            self.inner = self.inner.set_auto_granted(input);
            self
        }
        /// <p>The Qualification value to use for automatically granted Qualifications. This parameter is used only if the AutoGranted parameter is true.</p>
        pub fn auto_granted_value(mut self, input: i32) -> Self {
            self.inner = self.inner.auto_granted_value(input);
            self
        }
        /// <p>The Qualification value to use for automatically granted Qualifications. This parameter is used only if the AutoGranted parameter is true.</p>
        pub fn set_auto_granted_value(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_auto_granted_value(input);
            self
        }
    }
}

impl Client {
    /// Creates a client with the given service config and connector override.
    pub fn from_conf_conn<C, E>(conf: crate::Config, conn: C) -> Self
    where
        C: aws_smithy_client::bounds::SmithyConnector<Error = E> + Send + 'static,
        E: Into<aws_smithy_http::result::ConnectorError>,
    {
        let retry_config = conf.retry_config.as_ref().cloned().unwrap_or_default();
        let timeout_config = conf.timeout_config.as_ref().cloned().unwrap_or_default();
        let sleep_impl = conf.sleep_impl.clone();
        let mut builder = aws_smithy_client::Builder::new()
            .connector(aws_smithy_client::erase::DynConnector::new(conn))
            .middleware(aws_smithy_client::erase::DynMiddleware::new(
                crate::middleware::DefaultMiddleware::new(),
            ));
        builder.set_retry_config(retry_config.into());
        builder.set_timeout_config(timeout_config);
        if let Some(sleep_impl) = sleep_impl {
            builder.set_sleep_impl(Some(sleep_impl));
        }
        let client = builder.build();
        Self {
            handle: std::sync::Arc::new(Handle { client, conf }),
        }
    }

    /// Creates a new client from a shared config.
    #[cfg(any(feature = "rustls", feature = "native-tls"))]
    pub fn new(sdk_config: &aws_types::sdk_config::SdkConfig) -> Self {
        Self::from_conf(sdk_config.into())
    }

    /// Creates a new client from the service [`Config`](crate::Config).
    #[cfg(any(feature = "rustls", feature = "native-tls"))]
    pub fn from_conf(conf: crate::Config) -> Self {
        let retry_config = conf.retry_config.as_ref().cloned().unwrap_or_default();
        let timeout_config = conf.timeout_config.as_ref().cloned().unwrap_or_default();
        let sleep_impl = conf.sleep_impl.clone();
        let mut builder = aws_smithy_client::Builder::dyn_https().middleware(
            aws_smithy_client::erase::DynMiddleware::new(
                crate::middleware::DefaultMiddleware::new(),
            ),
        );
        builder.set_retry_config(retry_config.into());
        builder.set_timeout_config(timeout_config);
        // the builder maintains a try-state. To avoid suppressing the warning when sleep is unset,
        // only set it if we actually have a sleep impl.
        if let Some(sleep_impl) = sleep_impl {
            builder.set_sleep_impl(Some(sleep_impl));
        }
        let client = builder.build();

        Self {
            handle: std::sync::Arc::new(Handle { client, conf }),
        }
    }
}