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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[derive(Debug)]
pub(crate) struct Handle<
    C = aws_smithy_client::erase::DynConnector,
    M = aws_hyper::AwsMiddleware,
    R = aws_smithy_client::retry::Standard,
> {
    client: aws_smithy_client::Client<C, M, R>,
    conf: crate::Config,
}

/// An ergonomic service client for `AWSSecurityTokenServiceV20110615`.
///
/// This client allows ergonomic access to a `AWSSecurityTokenServiceV20110615`-shaped service.
/// Each method corresponds to an endpoint defined in the service's Smithy model,
/// and the request and response shapes are auto-generated from that same model.
///
/// # Using a Client
///
/// Once you have a client set up, you can access the service's endpoints
/// by calling the appropriate method on [`Client`]. Each such method
/// returns a request builder for that endpoint, with methods for setting
/// the various fields of the request. Once your request is complete, use
/// the `send` method to send the request. `send` returns a future, which
/// you then have to `.await` to get the service's response.
///
/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#c-builder
/// [SigV4-signed requests]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
#[derive(std::fmt::Debug)]
pub struct Client<
    C = aws_smithy_client::erase::DynConnector,
    M = aws_hyper::AwsMiddleware,
    R = aws_smithy_client::retry::Standard,
> {
    handle: std::sync::Arc<Handle<C, M, R>>,
}

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

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

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

impl<C, M, R> Client<C, M, R> {
    /// Creates a client with the given service configuration.
    pub fn with_config(client: aws_smithy_client::Client<C, M, R>, 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<C, M, R> Client<C, M, R>
where
    C: aws_smithy_client::bounds::SmithyConnector,
    M: aws_smithy_client::bounds::SmithyMiddleware<C>,
    R: aws_smithy_client::retry::NewRequestPolicy,
{
    /// Constructs a fluent builder for the `AssumeRole` operation.
    ///
    /// See [`AssumeRole`](crate::client::fluent_builders::AssumeRole) for more information about the
    /// operation and its arguments.
    pub fn assume_role(&self) -> fluent_builders::AssumeRole<C, M, R> {
        fluent_builders::AssumeRole::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the `AssumeRoleWithSAML` operation.
    ///
    /// See [`AssumeRoleWithSAML`](crate::client::fluent_builders::AssumeRoleWithSAML) for more information about the
    /// operation and its arguments.
    pub fn assume_role_with_saml(&self) -> fluent_builders::AssumeRoleWithSAML<C, M, R> {
        fluent_builders::AssumeRoleWithSAML::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the `AssumeRoleWithWebIdentity` operation.
    ///
    /// See [`AssumeRoleWithWebIdentity`](crate::client::fluent_builders::AssumeRoleWithWebIdentity) for more information about the
    /// operation and its arguments.
    pub fn assume_role_with_web_identity(
        &self,
    ) -> fluent_builders::AssumeRoleWithWebIdentity<C, M, R> {
        fluent_builders::AssumeRoleWithWebIdentity::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the `DecodeAuthorizationMessage` operation.
    ///
    /// See [`DecodeAuthorizationMessage`](crate::client::fluent_builders::DecodeAuthorizationMessage) for more information about the
    /// operation and its arguments.
    pub fn decode_authorization_message(
        &self,
    ) -> fluent_builders::DecodeAuthorizationMessage<C, M, R> {
        fluent_builders::DecodeAuthorizationMessage::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the `GetAccessKeyInfo` operation.
    ///
    /// See [`GetAccessKeyInfo`](crate::client::fluent_builders::GetAccessKeyInfo) for more information about the
    /// operation and its arguments.
    pub fn get_access_key_info(&self) -> fluent_builders::GetAccessKeyInfo<C, M, R> {
        fluent_builders::GetAccessKeyInfo::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the `GetCallerIdentity` operation.
    ///
    /// See [`GetCallerIdentity`](crate::client::fluent_builders::GetCallerIdentity) for more information about the
    /// operation and its arguments.
    pub fn get_caller_identity(&self) -> fluent_builders::GetCallerIdentity<C, M, R> {
        fluent_builders::GetCallerIdentity::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the `GetFederationToken` operation.
    ///
    /// See [`GetFederationToken`](crate::client::fluent_builders::GetFederationToken) for more information about the
    /// operation and its arguments.
    pub fn get_federation_token(&self) -> fluent_builders::GetFederationToken<C, M, R> {
        fluent_builders::GetFederationToken::new(self.handle.clone())
    }
    /// Constructs a fluent builder for the `GetSessionToken` operation.
    ///
    /// See [`GetSessionToken`](crate::client::fluent_builders::GetSessionToken) for more information about the
    /// operation and its arguments.
    pub fn get_session_token(&self) -> fluent_builders::GetSessionToken<C, M, R> {
        fluent_builders::GetSessionToken::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 `AssumeRole`.
    ///
    /// <p>Returns a set of temporary security credentials that you can use to access Amazon Web Services
    /// resources that you might not normally have access to. These temporary credentials
    /// consist of an access key ID, a secret access key, and a security token. Typically, you
    /// use <code>AssumeRole</code> within your account or for cross-account access. For a
    /// comparison of <code>AssumeRole</code> with other API operations that produce temporary
    /// credentials, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html">Requesting Temporary Security
    /// Credentials</a> and <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison">Comparing
    /// the STS API operations</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <p>
    /// <b>Permissions</b>
    /// </p>
    /// <p>The temporary security credentials created by <code>AssumeRole</code> can be used to
    /// make API calls to any Amazon Web Services service with the following exception: You cannot call the
    /// STS <code>GetFederationToken</code> or <code>GetSessionToken</code> API
    /// operations.</p>
    /// <p>(Optional) You can pass inline or managed <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">session policies</a> to
    /// this operation. You can pass a single JSON policy document to use as an inline session
    /// policy. You can also specify up to 10 managed policies to use as managed session policies.
    /// The plaintext that you use for both inline and managed session policies can't exceed 2,048
    /// characters. Passing policies to this operation returns new
    /// temporary credentials. The resulting session's permissions are the intersection of the
    /// role's identity-based policy and the session policies. You can use the role's temporary
    /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
    /// the role. You cannot use session policies to grant more permissions than those allowed
    /// by the identity-based policy of the role that is being assumed. For more information, see
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
    /// Policies</a> in the <i>IAM User Guide</i>.</p>
    /// <p>To assume a role from a different account, your account must be trusted by the
    /// role. The trust relationship is defined in the role's trust policy when the role is
    /// created. That trust policy states which accounts are allowed to delegate that access to
    /// users in the account. </p>
    /// <p>A user who wants to access a role in a different account must also have permissions that
    /// are delegated from the user account administrator. The administrator must attach a policy
    /// that allows the user to call <code>AssumeRole</code> for the ARN of the role in the other
    /// account. If the user is in the same account as the role, then you can do either of the
    /// following:</p>
    /// <ul>
    /// <li>
    /// <p>Attach a policy to the user (identical to the previous user in a different
    /// account).</p>
    /// </li>
    /// <li>
    /// <p>Add the user as a principal directly in the role's trust policy.</p>
    /// </li>
    /// </ul>
    /// <p>In this case, the trust policy acts as an IAM resource-based policy. Users in the same
    /// account as the role do not need explicit permission to assume the role. For more
    /// information about trust policies and resource-based policies, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html">IAM Policies</a> in
    /// the <i>IAM User Guide</i>.</p>
    /// <p>
    /// <b>Tags</b>
    /// </p>
    /// <p>(Optional) You can pass tag key-value pairs to your session. These tags are called
    /// session tags. For more information about session tags, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html">Passing Session Tags in STS</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <p>An administrator must grant you the permissions necessary to pass session tags. The
    /// administrator can also create granular permissions to allow you to pass only specific
    /// session tags. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html">Tutorial: Using Tags
    /// for Attribute-Based Access Control</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <p>You can set the session tags as transitive. Transitive tags persist during role
    /// chaining. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining">Chaining Roles
    /// with Session Tags</a> in the <i>IAM User Guide</i>.</p>
    /// <p>
    /// <b>Using MFA with AssumeRole</b>
    /// </p>
    /// <p>(Optional) You can include multi-factor authentication (MFA) information when you call
    /// <code>AssumeRole</code>. This is useful for cross-account scenarios to ensure that the
    /// user that assumes the role has been authenticated with an Amazon Web Services MFA device. In that
    /// scenario, the trust policy of the role being assumed includes a condition that tests for
    /// MFA authentication. If the caller does not include valid MFA information, the request to
    /// assume the role is denied. The condition in a trust policy that tests for MFA
    /// authentication might look like the following example.</p>
    /// <p>
    /// <code>"Condition": {"Bool": {"aws:MultiFactorAuthPresent": true}}</code>
    /// </p>
    /// <p>For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/MFAProtectedAPI.html">Configuring MFA-Protected API Access</a>
    /// in the <i>IAM User Guide</i> guide.</p>
    /// <p>To use MFA with <code>AssumeRole</code>, you pass values for the
    /// <code>SerialNumber</code> and <code>TokenCode</code> parameters. The
    /// <code>SerialNumber</code> value identifies the user's hardware or virtual MFA device.
    /// The <code>TokenCode</code> is the time-based one-time password (TOTP) that the MFA device
    /// produces. </p>
    #[derive(std::fmt::Debug)]
    pub struct AssumeRole<
        C = aws_smithy_client::erase::DynConnector,
        M = aws_hyper::AwsMiddleware,
        R = aws_smithy_client::retry::Standard,
    > {
        handle: std::sync::Arc<super::Handle<C, M, R>>,
        inner: crate::input::assume_role_input::Builder,
    }
    impl<C, M, R> AssumeRole<C, M, R>
    where
        C: aws_smithy_client::bounds::SmithyConnector,
        M: aws_smithy_client::bounds::SmithyMiddleware<C>,
        R: aws_smithy_client::retry::NewRequestPolicy,
    {
        /// Creates a new `AssumeRole`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle<C, M, R>>) -> 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::AssumeRoleOutput,
            aws_smithy_http::result::SdkError<crate::error::AssumeRoleError>,
        >
        where
            R::Policy: aws_smithy_client::bounds::SmithyRetryPolicy<
                crate::input::AssumeRoleInputOperationOutputAlias,
                crate::output::AssumeRoleOutput,
                crate::error::AssumeRoleError,
                crate::input::AssumeRoleInputOperationRetryAlias,
            >,
        {
            let input = self.inner.build().map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            let op = input.make_operation(&self.handle.conf).map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            self.handle.client.call(op).await
        }
        /// <p>The Amazon Resource Name (ARN) of the role to assume.</p>
        pub fn role_arn(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.role_arn(inp);
            self
        }
        /// <p>The Amazon Resource Name (ARN) of the role to assume.</p>
        pub fn set_role_arn(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_role_arn(input);
            self
        }
        /// <p>An identifier for the assumed role session.</p>
        /// <p>Use the role session name to uniquely identify a session when the same role is assumed
        /// by different principals or for different reasons. In cross-account scenarios, the role
        /// session name is visible to, and can be logged by the account that owns the role. The role
        /// session name is also used in the ARN of the assumed role principal. This means that
        /// subsequent cross-account API requests that use the temporary security credentials will
        /// expose the role session name to the external account in their CloudTrail logs.</p>
        /// <p>The regex used to validate this parameter is a string of characters
        /// consisting of upper- and lower-case alphanumeric characters with no spaces. You can
        /// also include underscores or any of the following characters: =,.@-</p>
        pub fn role_session_name(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.role_session_name(inp);
            self
        }
        /// <p>An identifier for the assumed role session.</p>
        /// <p>Use the role session name to uniquely identify a session when the same role is assumed
        /// by different principals or for different reasons. In cross-account scenarios, the role
        /// session name is visible to, and can be logged by the account that owns the role. The role
        /// session name is also used in the ARN of the assumed role principal. This means that
        /// subsequent cross-account API requests that use the temporary security credentials will
        /// expose the role session name to the external account in their CloudTrail logs.</p>
        /// <p>The regex used to validate this parameter is a string of characters
        /// consisting of upper- and lower-case alphanumeric characters with no spaces. You can
        /// also include underscores or any of the following characters: =,.@-</p>
        pub fn set_role_session_name(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_role_session_name(input);
            self
        }
        /// Appends an item to `PolicyArns`.
        ///
        /// To override the contents of this collection use [`set_policy_arns`](Self::set_policy_arns).
        ///
        /// <p>The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as
        /// managed session policies. The policies must exist in the same account as the role.</p>
        /// <p>This parameter is optional. You can provide up to 10 managed policy ARNs. However, the
        /// plaintext that you use for both inline and managed session policies can't exceed 2,048
        /// characters. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and Amazon Web Services
        /// Service Namespaces</a> in the Amazon Web Services General Reference.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        ///
        /// <p>Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>.</p>
        pub fn policy_arns(mut self, inp: impl Into<crate::model::PolicyDescriptorType>) -> Self {
            self.inner = self.inner.policy_arns(inp);
            self
        }
        /// <p>The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as
        /// managed session policies. The policies must exist in the same account as the role.</p>
        /// <p>This parameter is optional. You can provide up to 10 managed policy ARNs. However, the
        /// plaintext that you use for both inline and managed session policies can't exceed 2,048
        /// characters. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and Amazon Web Services
        /// Service Namespaces</a> in the Amazon Web Services General Reference.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        ///
        /// <p>Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>.</p>
        pub fn set_policy_arns(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::PolicyDescriptorType>>,
        ) -> Self {
            self.inner = self.inner.set_policy_arns(input);
            self
        }
        /// <p>An IAM policy in JSON format that you want to use as an inline session policy.</p>
        /// <p>This parameter is optional. Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>.</p>
        /// <p>The plaintext that you use for both inline and managed session policies can't exceed
        /// 2,048 characters. The JSON policy characters can be any ASCII character from the space
        /// character to the end of the valid character list (\u0020 through \u00FF). It can also
        /// include the tab (\u0009), linefeed (\u000A), and carriage return (\u000D)
        /// characters.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        pub fn policy(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.policy(inp);
            self
        }
        /// <p>An IAM policy in JSON format that you want to use as an inline session policy.</p>
        /// <p>This parameter is optional. Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>.</p>
        /// <p>The plaintext that you use for both inline and managed session policies can't exceed
        /// 2,048 characters. The JSON policy characters can be any ASCII character from the space
        /// character to the end of the valid character list (\u0020 through \u00FF). It can also
        /// include the tab (\u0009), linefeed (\u000A), and carriage return (\u000D)
        /// characters.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        pub fn set_policy(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_policy(input);
            self
        }
        /// <p>The duration, in seconds, of the role session. The value specified can can range from
        /// 900 seconds (15 minutes) up to the maximum session duration that is set for the role. The
        /// maximum session duration setting can have a value from 1 hour to 12 hours. If you specify a
        /// value higher than this setting or the administrator setting (whichever is lower), the
        /// operation fails. For example, if you specify a session duration of 12 hours, but your
        /// administrator set the maximum session duration to 6 hours, your operation fails. To learn
        /// how to view the maximum value for your role, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session">View the
        /// Maximum Session Duration Setting for a Role</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>By default, the value is set to <code>3600</code> seconds. </p>
        /// <note>
        /// <p>The <code>DurationSeconds</code> parameter is separate from the duration of a console
        /// session that you might request using the returned credentials. The request to the
        /// federation endpoint for a console sign-in token takes a <code>SessionDuration</code>
        /// parameter that specifies the maximum length of the console session. For more
        /// information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html">Creating a URL
        /// that Enables Federated Users to Access the Management Console</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// </note>
        pub fn duration_seconds(mut self, inp: i32) -> Self {
            self.inner = self.inner.duration_seconds(inp);
            self
        }
        /// <p>The duration, in seconds, of the role session. The value specified can can range from
        /// 900 seconds (15 minutes) up to the maximum session duration that is set for the role. The
        /// maximum session duration setting can have a value from 1 hour to 12 hours. If you specify a
        /// value higher than this setting or the administrator setting (whichever is lower), the
        /// operation fails. For example, if you specify a session duration of 12 hours, but your
        /// administrator set the maximum session duration to 6 hours, your operation fails. To learn
        /// how to view the maximum value for your role, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session">View the
        /// Maximum Session Duration Setting for a Role</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>By default, the value is set to <code>3600</code> seconds. </p>
        /// <note>
        /// <p>The <code>DurationSeconds</code> parameter is separate from the duration of a console
        /// session that you might request using the returned credentials. The request to the
        /// federation endpoint for a console sign-in token takes a <code>SessionDuration</code>
        /// parameter that specifies the maximum length of the console session. For more
        /// information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html">Creating a URL
        /// that Enables Federated Users to Access the Management Console</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// </note>
        pub fn set_duration_seconds(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_duration_seconds(input);
            self
        }
        /// Appends an item to `Tags`.
        ///
        /// To override the contents of this collection use [`set_tags`](Self::set_tags).
        ///
        /// <p>A list of session tags that you want to pass. Each session tag consists of a key name
        /// and an associated value. For more information about session tags, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html">Tagging STS
        /// Sessions</a> in the <i>IAM User Guide</i>.</p>
        /// <p>This parameter is optional. You can pass up to 50 session tags. The plaintext session
        /// tag keys can’t exceed 128 characters, and the values can’t exceed 256 characters. For these
        /// and additional limits, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length">IAM
        /// and STS Character Limits</a> in the <i>IAM User Guide</i>.</p>
        ///
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        /// <p>You can pass a session tag with the same key as a tag that is already
        /// attached to the role. When you do, session tags override a role tag with the same key. </p>
        /// <p>Tag key–value pairs are not case sensitive, but case is preserved. This means that you
        /// cannot have separate <code>Department</code> and <code>department</code> tag keys. Assume
        /// that the role has the <code>Department</code>=<code>Marketing</code> tag and you pass the
        /// <code>department</code>=<code>engineering</code> session tag. <code>Department</code>
        /// and <code>department</code> are not saved as separate tags, and the session tag passed in
        /// the request takes precedence over the role tag.</p>
        /// <p>Additionally, if you used temporary credentials to perform this operation, the new
        /// session inherits any transitive session tags from the calling session. If you pass a
        /// session tag with the same key as an inherited tag, the operation fails. To view the
        /// inherited tags for a session, see the CloudTrail logs. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/session-tags.html#id_session-tags_ctlogs">Viewing Session Tags in CloudTrail</a> in the
        /// <i>IAM User Guide</i>.</p>
        pub fn tags(mut self, inp: impl Into<crate::model::Tag>) -> Self {
            self.inner = self.inner.tags(inp);
            self
        }
        /// <p>A list of session tags that you want to pass. Each session tag consists of a key name
        /// and an associated value. For more information about session tags, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html">Tagging STS
        /// Sessions</a> in the <i>IAM User Guide</i>.</p>
        /// <p>This parameter is optional. You can pass up to 50 session tags. The plaintext session
        /// tag keys can’t exceed 128 characters, and the values can’t exceed 256 characters. For these
        /// and additional limits, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length">IAM
        /// and STS Character Limits</a> in the <i>IAM User Guide</i>.</p>
        ///
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        /// <p>You can pass a session tag with the same key as a tag that is already
        /// attached to the role. When you do, session tags override a role tag with the same key. </p>
        /// <p>Tag key–value pairs are not case sensitive, but case is preserved. This means that you
        /// cannot have separate <code>Department</code> and <code>department</code> tag keys. Assume
        /// that the role has the <code>Department</code>=<code>Marketing</code> tag and you pass the
        /// <code>department</code>=<code>engineering</code> session tag. <code>Department</code>
        /// and <code>department</code> are not saved as separate tags, and the session tag passed in
        /// the request takes precedence over the role tag.</p>
        /// <p>Additionally, if you used temporary credentials to perform this operation, the new
        /// session inherits any transitive session tags from the calling session. If you pass a
        /// session tag with the same key as an inherited tag, the operation fails. To view the
        /// inherited tags for a session, see the CloudTrail logs. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/session-tags.html#id_session-tags_ctlogs">Viewing Session Tags in CloudTrail</a> in the
        /// <i>IAM User Guide</i>.</p>
        pub fn set_tags(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::Tag>>,
        ) -> Self {
            self.inner = self.inner.set_tags(input);
            self
        }
        /// Appends an item to `TransitiveTagKeys`.
        ///
        /// To override the contents of this collection use [`set_transitive_tag_keys`](Self::set_transitive_tag_keys).
        ///
        /// <p>A list of keys for session tags that you want to set as transitive. If you set a tag key
        /// as transitive, the corresponding key and value passes to subsequent sessions in a role
        /// chain. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining">Chaining Roles
        /// with Session Tags</a> in the <i>IAM User Guide</i>.</p>
        /// <p>This parameter is optional. When you set session tags as transitive, the session policy
        /// and session tags packed binary limit is not affected.</p>
        /// <p>If you choose not to specify a transitive tag key, then no tags are passed from this
        /// session to any subsequent sessions.</p>
        pub fn transitive_tag_keys(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.transitive_tag_keys(inp);
            self
        }
        /// <p>A list of keys for session tags that you want to set as transitive. If you set a tag key
        /// as transitive, the corresponding key and value passes to subsequent sessions in a role
        /// chain. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining">Chaining Roles
        /// with Session Tags</a> in the <i>IAM User Guide</i>.</p>
        /// <p>This parameter is optional. When you set session tags as transitive, the session policy
        /// and session tags packed binary limit is not affected.</p>
        /// <p>If you choose not to specify a transitive tag key, then no tags are passed from this
        /// session to any subsequent sessions.</p>
        pub fn set_transitive_tag_keys(
            mut self,
            input: std::option::Option<std::vec::Vec<std::string::String>>,
        ) -> Self {
            self.inner = self.inner.set_transitive_tag_keys(input);
            self
        }
        /// <p>A unique identifier that might be required when you assume a role in another account. If
        /// the administrator of the account to which the role belongs provided you with an external
        /// ID, then provide that value in the <code>ExternalId</code> parameter. This value can be any
        /// string, such as a passphrase or account number. A cross-account role is usually set up to
        /// trust everyone in an account. Therefore, the administrator of the trusting account might
        /// send an external ID to the administrator of the trusted account. That way, only someone
        /// with the ID can assume the role, rather than everyone in the account. For more information
        /// about the external ID, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html">How to Use an External ID
        /// When Granting Access to Your Amazon Web Services Resources to a Third Party</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>The regex used to validate this parameter is a string of
        /// characters consisting of upper- and lower-case alphanumeric characters with no spaces.
        /// You can also include underscores or any of the following characters: =,.@:/-</p>
        pub fn external_id(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.external_id(inp);
            self
        }
        /// <p>A unique identifier that might be required when you assume a role in another account. If
        /// the administrator of the account to which the role belongs provided you with an external
        /// ID, then provide that value in the <code>ExternalId</code> parameter. This value can be any
        /// string, such as a passphrase or account number. A cross-account role is usually set up to
        /// trust everyone in an account. Therefore, the administrator of the trusting account might
        /// send an external ID to the administrator of the trusted account. That way, only someone
        /// with the ID can assume the role, rather than everyone in the account. For more information
        /// about the external ID, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html">How to Use an External ID
        /// When Granting Access to Your Amazon Web Services Resources to a Third Party</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>The regex used to validate this parameter is a string of
        /// characters consisting of upper- and lower-case alphanumeric characters with no spaces.
        /// You can also include underscores or any of the following characters: =,.@:/-</p>
        pub fn set_external_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_external_id(input);
            self
        }
        /// <p>The identification number of the MFA device that is associated with the user who is
        /// making the <code>AssumeRole</code> call. Specify this value if the trust policy of the role
        /// being assumed includes a condition that requires MFA authentication. The value is either
        /// the serial number for a hardware device (such as <code>GAHT12345678</code>) or an Amazon
        /// Resource Name (ARN) for a virtual device (such as
        /// <code>arn:aws:iam::123456789012:mfa/user</code>).</p>
        /// <p>The regex used to validate this parameter is a string of characters
        /// consisting of upper- and lower-case alphanumeric characters with no spaces. You can
        /// also include underscores or any of the following characters: =,.@-</p>
        pub fn serial_number(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.serial_number(inp);
            self
        }
        /// <p>The identification number of the MFA device that is associated with the user who is
        /// making the <code>AssumeRole</code> call. Specify this value if the trust policy of the role
        /// being assumed includes a condition that requires MFA authentication. The value is either
        /// the serial number for a hardware device (such as <code>GAHT12345678</code>) or an Amazon
        /// Resource Name (ARN) for a virtual device (such as
        /// <code>arn:aws:iam::123456789012:mfa/user</code>).</p>
        /// <p>The regex used to validate this parameter is a string of characters
        /// consisting of upper- and lower-case alphanumeric characters with no spaces. You can
        /// also include underscores or any of the following characters: =,.@-</p>
        pub fn set_serial_number(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_serial_number(input);
            self
        }
        /// <p>The value provided by the MFA device, if the trust policy of the role being assumed
        /// requires MFA. (In other words, if the policy includes a condition that tests for MFA). If
        /// the role being assumed requires MFA and if the <code>TokenCode</code> value is missing or
        /// expired, the <code>AssumeRole</code> call returns an "access denied" error.</p>
        /// <p>The format for this parameter, as described by its regex pattern, is a sequence of six
        /// numeric digits.</p>
        pub fn token_code(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.token_code(inp);
            self
        }
        /// <p>The value provided by the MFA device, if the trust policy of the role being assumed
        /// requires MFA. (In other words, if the policy includes a condition that tests for MFA). If
        /// the role being assumed requires MFA and if the <code>TokenCode</code> value is missing or
        /// expired, the <code>AssumeRole</code> call returns an "access denied" error.</p>
        /// <p>The format for this parameter, as described by its regex pattern, is a sequence of six
        /// numeric digits.</p>
        pub fn set_token_code(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_token_code(input);
            self
        }
        /// <p>The source identity specified by the principal that is calling the
        /// <code>AssumeRole</code> operation.</p>
        /// <p>You can require users to specify a source identity when they assume a role. You do this
        /// by using the <code>sts:SourceIdentity</code> condition key in a role trust policy. You can
        /// use source identity information in CloudTrail logs to determine who took actions with a role.
        /// You can use the <code>aws:SourceIdentity</code> condition key to further control access to
        /// Amazon Web Services resources based on the value of source identity. For more information about using
        /// source identity, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">Monitor and control
        /// actions taken with assumed roles</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>The regex used to validate this parameter is a string of characters consisting of upper-
        /// and lower-case alphanumeric characters with no spaces. You can also include underscores or
        /// any of the following characters: =,.@-. You cannot use a value that begins with the text
        /// <code>aws:</code>. This prefix is reserved for Amazon Web Services internal
        /// use.</p>
        pub fn source_identity(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.source_identity(inp);
            self
        }
        /// <p>The source identity specified by the principal that is calling the
        /// <code>AssumeRole</code> operation.</p>
        /// <p>You can require users to specify a source identity when they assume a role. You do this
        /// by using the <code>sts:SourceIdentity</code> condition key in a role trust policy. You can
        /// use source identity information in CloudTrail logs to determine who took actions with a role.
        /// You can use the <code>aws:SourceIdentity</code> condition key to further control access to
        /// Amazon Web Services resources based on the value of source identity. For more information about using
        /// source identity, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">Monitor and control
        /// actions taken with assumed roles</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>The regex used to validate this parameter is a string of characters consisting of upper-
        /// and lower-case alphanumeric characters with no spaces. You can also include underscores or
        /// any of the following characters: =,.@-. You cannot use a value that begins with the text
        /// <code>aws:</code>. This prefix is reserved for Amazon Web Services internal
        /// use.</p>
        pub fn set_source_identity(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_source_identity(input);
            self
        }
    }
    /// Fluent builder constructing a request to `AssumeRoleWithSAML`.
    ///
    /// <p>Returns a set of temporary security credentials for users who have been authenticated
    /// via a SAML authentication response. This operation provides a mechanism for tying an
    /// enterprise identity store or directory to role-based Amazon Web Services access without user-specific
    /// credentials or configuration. For a comparison of <code>AssumeRoleWithSAML</code> with the
    /// other API operations that produce temporary credentials, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html">Requesting Temporary Security
    /// Credentials</a> and <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison">Comparing the
    /// STS API operations</a> in the <i>IAM User Guide</i>.</p>
    /// <p>The temporary security credentials returned by this operation consist of an access key
    /// ID, a secret access key, and a security token. Applications can use these temporary
    /// security credentials to sign calls to Amazon Web Services services.</p>
    /// <p>
    /// <b>Session Duration</b>
    /// </p>
    /// <p>By default, the temporary security credentials created by
    /// <code>AssumeRoleWithSAML</code> last for one hour. However, you can use the optional
    /// <code>DurationSeconds</code> parameter to specify the duration of your session. Your
    /// role session lasts for the duration that you specify, or until the time specified in the
    /// SAML authentication response's <code>SessionNotOnOrAfter</code> value, whichever is
    /// shorter. You can provide a <code>DurationSeconds</code> value from 900 seconds (15 minutes)
    /// up to the maximum session duration setting for the role. This setting can have a value from
    /// 1 hour to 12 hours. To learn how to view the maximum value for your role, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session">View the
    /// Maximum Session Duration Setting for a Role</a> in the
    /// <i>IAM User Guide</i>. The maximum session duration limit applies when
    /// you use the <code>AssumeRole*</code> API operations or the <code>assume-role*</code> CLI
    /// commands. However the limit does not apply when you use those operations to create a
    /// console URL. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html">Using IAM Roles</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <note>
    /// <p>
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html#iam-term-role-chaining">Role chaining</a> limits your CLI or Amazon Web Services API
    /// role session to a maximum of one hour. When you use the <code>AssumeRole</code> API
    /// operation to assume a role, you can specify the duration of your role session with
    /// the <code>DurationSeconds</code> parameter. You can specify a parameter value of up
    /// to 43200 seconds (12 hours), depending on the maximum session duration setting for
    /// your role. However, if you assume a role using role chaining and provide a
    /// <code>DurationSeconds</code> parameter value greater than one hour, the
    /// operation fails.</p>
    /// </note>
    /// <p>
    /// <b>Permissions</b>
    /// </p>
    /// <p>The temporary security credentials created by <code>AssumeRoleWithSAML</code> can be
    /// used to make API calls to any Amazon Web Services service with the following exception: you cannot call
    /// the STS <code>GetFederationToken</code> or <code>GetSessionToken</code> API
    /// operations.</p>
    /// <p>(Optional) You can pass inline or managed <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">session policies</a> to
    /// this operation. You can pass a single JSON policy document to use as an inline session
    /// policy. You can also specify up to 10 managed policies to use as managed session policies.
    /// The plaintext that you use for both inline and managed session policies can't exceed 2,048
    /// characters. Passing policies to this operation returns new
    /// temporary credentials. The resulting session's permissions are the intersection of the
    /// role's identity-based policy and the session policies. You can use the role's temporary
    /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
    /// the role. You cannot use session policies to grant more permissions than those allowed
    /// by the identity-based policy of the role that is being assumed. For more information, see
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
    /// Policies</a> in the <i>IAM User Guide</i>.</p>
    /// <p>Calling <code>AssumeRoleWithSAML</code> does not require the use of Amazon Web Services security
    /// credentials. The identity of the caller is validated by using keys in the metadata document
    /// that is uploaded for the SAML provider entity for your identity provider. </p>
    /// <important>
    /// <p>Calling <code>AssumeRoleWithSAML</code> can result in an entry in your CloudTrail logs.
    /// The entry includes the value in the <code>NameID</code> element of the SAML assertion.
    /// We recommend that you use a <code>NameIDType</code> that is not associated with any
    /// personally identifiable information (PII). For example, you could instead use the
    /// persistent identifier
    /// (<code>urn:oasis:names:tc:SAML:2.0:nameid-format:persistent</code>).</p>
    /// </important>
    /// <p>
    /// <b>Tags</b>
    /// </p>
    /// <p>(Optional) You can configure your IdP to pass attributes into your SAML assertion as
    /// session tags. Each session tag consists of a key name and an associated value. For more
    /// information about session tags, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html">Passing Session Tags in STS</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <p>You can pass up to 50 session tags. The plaintext session tag keys can’t exceed 128
    /// characters and the values can’t exceed 256 characters. For these and additional limits, see
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length">IAM
    /// and STS Character Limits</a> in the <i>IAM User Guide</i>.</p>
    ///
    /// <note>
    /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
    /// packed binary format that has a separate limit. Your request can fail for this limit
    /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
    /// response element indicates by percentage how close the policies and tags for your
    /// request are to the upper size limit.
    /// </p>
    /// </note>
    /// <p>You can pass a session tag with the same key as a tag that is
    /// attached to the role. When you do, session tags override the role's tags with the same
    /// key.</p>
    /// <p>An administrator must grant you the permissions necessary to pass session tags. The
    /// administrator can also create granular permissions to allow you to pass only specific
    /// session tags. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html">Tutorial: Using Tags
    /// for Attribute-Based Access Control</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <p>You can set the session tags as transitive. Transitive tags persist during role
    /// chaining. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining">Chaining Roles
    /// with Session Tags</a> in the <i>IAM User Guide</i>.</p>
    /// <p>
    /// <b>SAML Configuration</b>
    /// </p>
    /// <p>Before your application can call <code>AssumeRoleWithSAML</code>, you must configure
    /// your SAML identity provider (IdP) to issue the claims required by Amazon Web Services. Additionally, you
    /// must use Identity and Access Management (IAM) to create a SAML provider entity in your Amazon Web Services account that
    /// represents your identity provider. You must also create an IAM role that specifies this
    /// SAML provider in its trust policy. </p>
    /// <p>For more information, see the following resources:</p>
    /// <ul>
    /// <li>
    /// <p>
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_saml.html">About
    /// SAML 2.0-based Federation</a> in the <i>IAM User Guide</i>.
    /// </p>
    /// </li>
    /// <li>
    /// <p>
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_create_saml.html">Creating SAML Identity Providers</a> in the
    /// <i>IAM User Guide</i>. </p>
    /// </li>
    /// <li>
    /// <p>
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_create_saml_relying-party.html">Configuring
    /// a Relying Party and Claims</a> in the <i>IAM User Guide</i>.
    /// </p>
    /// </li>
    /// <li>
    /// <p>
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-idp_saml.html">Creating a Role for SAML 2.0 Federation</a> in the
    /// <i>IAM User Guide</i>. </p>
    /// </li>
    /// </ul>
    #[derive(std::fmt::Debug)]
    pub struct AssumeRoleWithSAML<
        C = aws_smithy_client::erase::DynConnector,
        M = aws_hyper::AwsMiddleware,
        R = aws_smithy_client::retry::Standard,
    > {
        handle: std::sync::Arc<super::Handle<C, M, R>>,
        inner: crate::input::assume_role_with_saml_input::Builder,
    }
    impl<C, M, R> AssumeRoleWithSAML<C, M, R>
    where
        C: aws_smithy_client::bounds::SmithyConnector,
        M: aws_smithy_client::bounds::SmithyMiddleware<C>,
        R: aws_smithy_client::retry::NewRequestPolicy,
    {
        /// Creates a new `AssumeRoleWithSAML`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle<C, M, R>>) -> 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::AssumeRoleWithSamlOutput,
            aws_smithy_http::result::SdkError<crate::error::AssumeRoleWithSAMLError>,
        >
        where
            R::Policy: aws_smithy_client::bounds::SmithyRetryPolicy<
                crate::input::AssumeRoleWithSamlInputOperationOutputAlias,
                crate::output::AssumeRoleWithSamlOutput,
                crate::error::AssumeRoleWithSAMLError,
                crate::input::AssumeRoleWithSamlInputOperationRetryAlias,
            >,
        {
            let input = self.inner.build().map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            let op = input.make_operation(&self.handle.conf).map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            self.handle.client.call(op).await
        }
        /// <p>The Amazon Resource Name (ARN) of the role that the caller is assuming.</p>
        pub fn role_arn(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.role_arn(inp);
            self
        }
        /// <p>The Amazon Resource Name (ARN) of the role that the caller is assuming.</p>
        pub fn set_role_arn(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_role_arn(input);
            self
        }
        /// <p>The Amazon Resource Name (ARN) of the SAML provider in IAM that describes the
        /// IdP.</p>
        pub fn principal_arn(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.principal_arn(inp);
            self
        }
        /// <p>The Amazon Resource Name (ARN) of the SAML provider in IAM that describes the
        /// IdP.</p>
        pub fn set_principal_arn(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_principal_arn(input);
            self
        }
        /// <p>The base64 encoded SAML authentication response provided by the IdP.</p>
        /// <p>For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/create-role-saml-IdP-tasks.html">Configuring a Relying Party and
        /// Adding Claims</a> in the <i>IAM User Guide</i>. </p>
        pub fn saml_assertion(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.saml_assertion(inp);
            self
        }
        /// <p>The base64 encoded SAML authentication response provided by the IdP.</p>
        /// <p>For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/create-role-saml-IdP-tasks.html">Configuring a Relying Party and
        /// Adding Claims</a> in the <i>IAM User Guide</i>. </p>
        pub fn set_saml_assertion(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_saml_assertion(input);
            self
        }
        /// Appends an item to `PolicyArns`.
        ///
        /// To override the contents of this collection use [`set_policy_arns`](Self::set_policy_arns).
        ///
        /// <p>The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as
        /// managed session policies. The policies must exist in the same account as the role.</p>
        /// <p>This parameter is optional. You can provide up to 10 managed policy ARNs. However, the
        /// plaintext that you use for both inline and managed session policies can't exceed 2,048
        /// characters. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and Amazon Web Services
        /// Service Namespaces</a> in the Amazon Web Services General Reference.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        ///
        /// <p>Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>.</p>
        pub fn policy_arns(mut self, inp: impl Into<crate::model::PolicyDescriptorType>) -> Self {
            self.inner = self.inner.policy_arns(inp);
            self
        }
        /// <p>The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as
        /// managed session policies. The policies must exist in the same account as the role.</p>
        /// <p>This parameter is optional. You can provide up to 10 managed policy ARNs. However, the
        /// plaintext that you use for both inline and managed session policies can't exceed 2,048
        /// characters. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and Amazon Web Services
        /// Service Namespaces</a> in the Amazon Web Services General Reference.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        ///
        /// <p>Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>.</p>
        pub fn set_policy_arns(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::PolicyDescriptorType>>,
        ) -> Self {
            self.inner = self.inner.set_policy_arns(input);
            self
        }
        /// <p>An IAM policy in JSON format that you want to use as an inline session policy.</p>
        /// <p>This parameter is optional. Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>. </p>
        /// <p>The plaintext that you use for both inline and managed session policies can't exceed
        /// 2,048 characters. The JSON policy characters can be any ASCII character from the space
        /// character to the end of the valid character list (\u0020 through \u00FF). It can also
        /// include the tab (\u0009), linefeed (\u000A), and carriage return (\u000D)
        /// characters.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        pub fn policy(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.policy(inp);
            self
        }
        /// <p>An IAM policy in JSON format that you want to use as an inline session policy.</p>
        /// <p>This parameter is optional. Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>. </p>
        /// <p>The plaintext that you use for both inline and managed session policies can't exceed
        /// 2,048 characters. The JSON policy characters can be any ASCII character from the space
        /// character to the end of the valid character list (\u0020 through \u00FF). It can also
        /// include the tab (\u0009), linefeed (\u000A), and carriage return (\u000D)
        /// characters.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        pub fn set_policy(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_policy(input);
            self
        }
        /// <p>The duration, in seconds, of the role session. Your role session lasts for the duration
        /// that you specify for the <code>DurationSeconds</code> parameter, or until the time
        /// specified in the SAML authentication response's <code>SessionNotOnOrAfter</code> value,
        /// whichever is shorter. You can provide a <code>DurationSeconds</code> value from 900 seconds
        /// (15 minutes) up to the maximum session duration setting for the role. This setting can have
        /// a value from 1 hour to 12 hours. If you specify a value higher than this setting, the
        /// operation fails. For example, if you specify a session duration of 12 hours, but your
        /// administrator set the maximum session duration to 6 hours, your operation fails. To learn
        /// how to view the maximum value for your role, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session">View the
        /// Maximum Session Duration Setting for a Role</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>By default, the value is set to <code>3600</code> seconds. </p>
        /// <note>
        /// <p>The <code>DurationSeconds</code> parameter is separate from the duration of a console
        /// session that you might request using the returned credentials. The request to the
        /// federation endpoint for a console sign-in token takes a <code>SessionDuration</code>
        /// parameter that specifies the maximum length of the console session. For more
        /// information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html">Creating a URL
        /// that Enables Federated Users to Access the Management Console</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// </note>
        pub fn duration_seconds(mut self, inp: i32) -> Self {
            self.inner = self.inner.duration_seconds(inp);
            self
        }
        /// <p>The duration, in seconds, of the role session. Your role session lasts for the duration
        /// that you specify for the <code>DurationSeconds</code> parameter, or until the time
        /// specified in the SAML authentication response's <code>SessionNotOnOrAfter</code> value,
        /// whichever is shorter. You can provide a <code>DurationSeconds</code> value from 900 seconds
        /// (15 minutes) up to the maximum session duration setting for the role. This setting can have
        /// a value from 1 hour to 12 hours. If you specify a value higher than this setting, the
        /// operation fails. For example, if you specify a session duration of 12 hours, but your
        /// administrator set the maximum session duration to 6 hours, your operation fails. To learn
        /// how to view the maximum value for your role, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session">View the
        /// Maximum Session Duration Setting for a Role</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>By default, the value is set to <code>3600</code> seconds. </p>
        /// <note>
        /// <p>The <code>DurationSeconds</code> parameter is separate from the duration of a console
        /// session that you might request using the returned credentials. The request to the
        /// federation endpoint for a console sign-in token takes a <code>SessionDuration</code>
        /// parameter that specifies the maximum length of the console session. For more
        /// information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html">Creating a URL
        /// that Enables Federated Users to Access the Management Console</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// </note>
        pub fn set_duration_seconds(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_duration_seconds(input);
            self
        }
    }
    /// Fluent builder constructing a request to `AssumeRoleWithWebIdentity`.
    ///
    /// <p>Returns a set of temporary security credentials for users who have been authenticated in
    /// a mobile or web application with a web identity provider. Example providers include Amazon Cognito,
    /// Login with Amazon, Facebook, Google, or any OpenID Connect-compatible identity
    /// provider.</p>
    /// <note>
    /// <p>For mobile applications, we recommend that you use Amazon Cognito. You can use Amazon Cognito with the
    /// <a href="http://aws.amazon.com/sdkforios/">Amazon Web Services SDK for iOS Developer Guide</a> and the <a href="http://aws.amazon.com/sdkforandroid/">Amazon Web Services SDK for Android Developer Guide</a> to uniquely
    /// identify a user. You can also supply the user with a consistent identity throughout the
    /// lifetime of an application.</p>
    /// <p>To learn more about Amazon Cognito, see <a href="https://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/cognito-auth.html#d0e840">Amazon Cognito Overview</a> in
    /// <i>Amazon Web Services SDK for Android Developer Guide</i> and <a href="https://docs.aws.amazon.com/mobile/sdkforios/developerguide/cognito-auth.html#d0e664">Amazon Cognito Overview</a> in the
    /// <i>Amazon Web Services SDK for iOS Developer Guide</i>.</p>
    /// </note>
    /// <p>Calling <code>AssumeRoleWithWebIdentity</code> does not require the use of Amazon Web Services
    /// security credentials. Therefore, you can distribute an application (for example, on mobile
    /// devices) that requests temporary security credentials without including long-term Amazon Web Services
    /// credentials in the application. You also don't need to deploy server-based proxy services
    /// that use long-term Amazon Web Services credentials. Instead, the identity of the caller is validated by
    /// using a token from the web identity provider. For a comparison of
    /// <code>AssumeRoleWithWebIdentity</code> with the other API operations that produce
    /// temporary credentials, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html">Requesting Temporary Security
    /// Credentials</a> and <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison">Comparing the
    /// STS API operations</a> in the <i>IAM User Guide</i>.</p>
    /// <p>The temporary security credentials returned by this API consist of an access key ID, a
    /// secret access key, and a security token. Applications can use these temporary security
    /// credentials to sign calls to Amazon Web Services service API operations.</p>
    /// <p>
    /// <b>Session Duration</b>
    /// </p>
    /// <p>By default, the temporary security credentials created by
    /// <code>AssumeRoleWithWebIdentity</code> last for one hour. However, you can use the
    /// optional <code>DurationSeconds</code> parameter to specify the duration of your session.
    /// You can provide a value from 900 seconds (15 minutes) up to the maximum session duration
    /// setting for the role. This setting can have a value from 1 hour to 12 hours. To learn how
    /// to view the maximum value for your role, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session">View the
    /// Maximum Session Duration Setting for a Role</a> in the
    /// <i>IAM User Guide</i>. The maximum session duration limit applies when
    /// you use the <code>AssumeRole*</code> API operations or the <code>assume-role*</code> CLI
    /// commands. However the limit does not apply when you use those operations to create a
    /// console URL. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html">Using IAM Roles</a> in the
    /// <i>IAM User Guide</i>. </p>
    /// <p>
    /// <b>Permissions</b>
    /// </p>
    /// <p>The temporary security credentials created by <code>AssumeRoleWithWebIdentity</code> can
    /// be used to make API calls to any Amazon Web Services service with the following exception: you cannot
    /// call the STS <code>GetFederationToken</code> or <code>GetSessionToken</code> API
    /// operations.</p>
    /// <p>(Optional) You can pass inline or managed <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">session policies</a> to
    /// this operation. You can pass a single JSON policy document to use as an inline session
    /// policy. You can also specify up to 10 managed policies to use as managed session policies.
    /// The plaintext that you use for both inline and managed session policies can't exceed 2,048
    /// characters. Passing policies to this operation returns new
    /// temporary credentials. The resulting session's permissions are the intersection of the
    /// role's identity-based policy and the session policies. You can use the role's temporary
    /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
    /// the role. You cannot use session policies to grant more permissions than those allowed
    /// by the identity-based policy of the role that is being assumed. For more information, see
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
    /// Policies</a> in the <i>IAM User Guide</i>.</p>
    /// <p>
    /// <b>Tags</b>
    /// </p>
    /// <p>(Optional) You can configure your IdP to pass attributes into your web identity token as
    /// session tags. Each session tag consists of a key name and an associated value. For more
    /// information about session tags, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html">Passing Session Tags in STS</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <p>You can pass up to 50 session tags. The plaintext session tag keys can’t exceed 128
    /// characters and the values can’t exceed 256 characters. For these and additional limits, see
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length">IAM
    /// and STS Character Limits</a> in the <i>IAM User Guide</i>.</p>
    ///
    /// <note>
    /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
    /// packed binary format that has a separate limit. Your request can fail for this limit
    /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
    /// response element indicates by percentage how close the policies and tags for your
    /// request are to the upper size limit.
    /// </p>
    /// </note>
    /// <p>You can pass a session tag with the same key as a tag that is
    /// attached to the role. When you do, the session tag overrides the role tag with the same
    /// key.</p>
    /// <p>An administrator must grant you the permissions necessary to pass session tags. The
    /// administrator can also create granular permissions to allow you to pass only specific
    /// session tags. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html">Tutorial: Using Tags
    /// for Attribute-Based Access Control</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <p>You can set the session tags as transitive. Transitive tags persist during role
    /// chaining. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html#id_session-tags_role-chaining">Chaining Roles
    /// with Session Tags</a> in the <i>IAM User Guide</i>.</p>
    /// <p>
    /// <b>Identities</b>
    /// </p>
    /// <p>Before your application can call <code>AssumeRoleWithWebIdentity</code>, you must have
    /// an identity token from a supported identity provider and create a role that the application
    /// can assume. The role that your application assumes must trust the identity provider that is
    /// associated with the identity token. In other words, the identity provider must be specified
    /// in the role's trust policy. </p>
    /// <important>
    /// <p>Calling <code>AssumeRoleWithWebIdentity</code> can result in an entry in your
    /// CloudTrail logs. The entry includes the <a href="http://openid.net/specs/openid-connect-core-1_0.html#Claims">Subject</a> of
    /// the provided web identity token. We recommend that you avoid using any personally
    /// identifiable information (PII) in this field. For example, you could instead use a GUID
    /// or a pairwise identifier, as <a href="http://openid.net/specs/openid-connect-core-1_0.html#SubjectIDTypes">suggested
    /// in the OIDC specification</a>.</p>
    /// </important>
    /// <p>For more information about how to use web identity federation and the
    /// <code>AssumeRoleWithWebIdentity</code> API, see the following resources: </p>
    /// <ul>
    /// <li>
    /// <p>
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_oidc_manual.html">Using Web Identity Federation API Operations for Mobile Apps</a> and <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity">Federation Through a Web-based Identity Provider</a>. </p>
    /// </li>
    /// <li>
    /// <p>
    /// <a href="https://aws.amazon.com/blogs/aws/the-aws-web-identity-federation-playground/"> Web Identity Federation Playground</a>. Walk through the process of
    /// authenticating through Login with Amazon, Facebook, or Google, getting temporary
    /// security credentials, and then using those credentials to make a request to Amazon Web Services.
    /// </p>
    /// </li>
    /// <li>
    /// <p>
    /// <a href="http://aws.amazon.com/sdkforios/">Amazon Web Services SDK for iOS Developer Guide</a> and <a href="http://aws.amazon.com/sdkforandroid/">Amazon Web Services SDK for Android Developer Guide</a>. These toolkits
    /// contain sample apps that show how to invoke the identity providers. The toolkits then
    /// show how to use the information from these providers to get and use temporary
    /// security credentials. </p>
    /// </li>
    /// <li>
    /// <p>
    /// <a href="http://aws.amazon.com/articles/web-identity-federation-with-mobile-applications">Web Identity
    /// Federation with Mobile Applications</a>. This article discusses web identity
    /// federation and shows an example of how to use web identity federation to get access
    /// to content in Amazon S3. </p>
    /// </li>
    /// </ul>
    #[derive(std::fmt::Debug)]
    pub struct AssumeRoleWithWebIdentity<
        C = aws_smithy_client::erase::DynConnector,
        M = aws_hyper::AwsMiddleware,
        R = aws_smithy_client::retry::Standard,
    > {
        handle: std::sync::Arc<super::Handle<C, M, R>>,
        inner: crate::input::assume_role_with_web_identity_input::Builder,
    }
    impl<C, M, R> AssumeRoleWithWebIdentity<C, M, R>
    where
        C: aws_smithy_client::bounds::SmithyConnector,
        M: aws_smithy_client::bounds::SmithyMiddleware<C>,
        R: aws_smithy_client::retry::NewRequestPolicy,
    {
        /// Creates a new `AssumeRoleWithWebIdentity`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle<C, M, R>>) -> 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::AssumeRoleWithWebIdentityOutput,
            aws_smithy_http::result::SdkError<crate::error::AssumeRoleWithWebIdentityError>,
        >
        where
            R::Policy: aws_smithy_client::bounds::SmithyRetryPolicy<
                crate::input::AssumeRoleWithWebIdentityInputOperationOutputAlias,
                crate::output::AssumeRoleWithWebIdentityOutput,
                crate::error::AssumeRoleWithWebIdentityError,
                crate::input::AssumeRoleWithWebIdentityInputOperationRetryAlias,
            >,
        {
            let input = self.inner.build().map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            let op = input.make_operation(&self.handle.conf).map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            self.handle.client.call(op).await
        }
        /// <p>The Amazon Resource Name (ARN) of the role that the caller is assuming.</p>
        pub fn role_arn(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.role_arn(inp);
            self
        }
        /// <p>The Amazon Resource Name (ARN) of the role that the caller is assuming.</p>
        pub fn set_role_arn(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_role_arn(input);
            self
        }
        /// <p>An identifier for the assumed role session. Typically, you pass the name or identifier
        /// that is associated with the user who is using your application. That way, the temporary
        /// security credentials that your application will use are associated with that user. This
        /// session name is included as part of the ARN and assumed role ID in the
        /// <code>AssumedRoleUser</code> response element.</p>
        /// <p>The regex used to validate this parameter is a string of characters
        /// consisting of upper- and lower-case alphanumeric characters with no spaces. You can
        /// also include underscores or any of the following characters: =,.@-</p>
        pub fn role_session_name(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.role_session_name(inp);
            self
        }
        /// <p>An identifier for the assumed role session. Typically, you pass the name or identifier
        /// that is associated with the user who is using your application. That way, the temporary
        /// security credentials that your application will use are associated with that user. This
        /// session name is included as part of the ARN and assumed role ID in the
        /// <code>AssumedRoleUser</code> response element.</p>
        /// <p>The regex used to validate this parameter is a string of characters
        /// consisting of upper- and lower-case alphanumeric characters with no spaces. You can
        /// also include underscores or any of the following characters: =,.@-</p>
        pub fn set_role_session_name(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_role_session_name(input);
            self
        }
        /// <p>The OAuth 2.0 access token or OpenID Connect ID token that is provided by the identity
        /// provider. Your application must get this token by authenticating the user who is using your
        /// application with a web identity provider before the application makes an
        /// <code>AssumeRoleWithWebIdentity</code> call. </p>
        pub fn web_identity_token(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.web_identity_token(inp);
            self
        }
        /// <p>The OAuth 2.0 access token or OpenID Connect ID token that is provided by the identity
        /// provider. Your application must get this token by authenticating the user who is using your
        /// application with a web identity provider before the application makes an
        /// <code>AssumeRoleWithWebIdentity</code> call. </p>
        pub fn set_web_identity_token(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_web_identity_token(input);
            self
        }
        /// <p>The fully qualified host component of the domain name of the identity provider.</p>
        /// <p>Specify this value only for OAuth 2.0 access tokens. Currently
        /// <code>www.amazon.com</code> and <code>graph.facebook.com</code> are the only supported
        /// identity providers for OAuth 2.0 access tokens. Do not include URL schemes and port
        /// numbers.</p>
        /// <p>Do not specify this value for OpenID Connect ID tokens.</p>
        pub fn provider_id(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.provider_id(inp);
            self
        }
        /// <p>The fully qualified host component of the domain name of the identity provider.</p>
        /// <p>Specify this value only for OAuth 2.0 access tokens. Currently
        /// <code>www.amazon.com</code> and <code>graph.facebook.com</code> are the only supported
        /// identity providers for OAuth 2.0 access tokens. Do not include URL schemes and port
        /// numbers.</p>
        /// <p>Do not specify this value for OpenID Connect ID tokens.</p>
        pub fn set_provider_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_provider_id(input);
            self
        }
        /// Appends an item to `PolicyArns`.
        ///
        /// To override the contents of this collection use [`set_policy_arns`](Self::set_policy_arns).
        ///
        /// <p>The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as
        /// managed session policies. The policies must exist in the same account as the role.</p>
        /// <p>This parameter is optional. You can provide up to 10 managed policy ARNs. However, the
        /// plaintext that you use for both inline and managed session policies can't exceed 2,048
        /// characters. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and Amazon Web Services
        /// Service Namespaces</a> in the Amazon Web Services General Reference.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        ///
        /// <p>Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>.</p>
        pub fn policy_arns(mut self, inp: impl Into<crate::model::PolicyDescriptorType>) -> Self {
            self.inner = self.inner.policy_arns(inp);
            self
        }
        /// <p>The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as
        /// managed session policies. The policies must exist in the same account as the role.</p>
        /// <p>This parameter is optional. You can provide up to 10 managed policy ARNs. However, the
        /// plaintext that you use for both inline and managed session policies can't exceed 2,048
        /// characters. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and Amazon Web Services
        /// Service Namespaces</a> in the Amazon Web Services General Reference.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        ///
        /// <p>Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>.</p>
        pub fn set_policy_arns(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::PolicyDescriptorType>>,
        ) -> Self {
            self.inner = self.inner.set_policy_arns(input);
            self
        }
        /// <p>An IAM policy in JSON format that you want to use as an inline session policy.</p>
        /// <p>This parameter is optional. Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>.</p>
        /// <p>The plaintext that you use for both inline and managed session policies can't exceed
        /// 2,048 characters. The JSON policy characters can be any ASCII character from the space
        /// character to the end of the valid character list (\u0020 through \u00FF). It can also
        /// include the tab (\u0009), linefeed (\u000A), and carriage return (\u000D)
        /// characters.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        pub fn policy(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.policy(inp);
            self
        }
        /// <p>An IAM policy in JSON format that you want to use as an inline session policy.</p>
        /// <p>This parameter is optional. Passing policies to this operation returns new
        /// temporary credentials. The resulting session's permissions are the intersection of the
        /// role's identity-based policy and the session policies. You can use the role's temporary
        /// credentials in subsequent Amazon Web Services API calls to access resources in the account that owns
        /// the role. You cannot use session policies to grant more permissions than those allowed
        /// by the identity-based policy of the role that is being assumed. For more information, see
        /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
        /// Policies</a> in the <i>IAM User Guide</i>.</p>
        /// <p>The plaintext that you use for both inline and managed session policies can't exceed
        /// 2,048 characters. The JSON policy characters can be any ASCII character from the space
        /// character to the end of the valid character list (\u0020 through \u00FF). It can also
        /// include the tab (\u0009), linefeed (\u000A), and carriage return (\u000D)
        /// characters.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        pub fn set_policy(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_policy(input);
            self
        }
        /// <p>The duration, in seconds, of the role session. The value can range from 900 seconds (15
        /// minutes) up to the maximum session duration setting for the role. This setting can have a
        /// value from 1 hour to 12 hours. If you specify a value higher than this setting, the
        /// operation fails. For example, if you specify a session duration of 12 hours, but your
        /// administrator set the maximum session duration to 6 hours, your operation fails. To learn
        /// how to view the maximum value for your role, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session">View the
        /// Maximum Session Duration Setting for a Role</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>By default, the value is set to <code>3600</code> seconds. </p>
        /// <note>
        /// <p>The <code>DurationSeconds</code> parameter is separate from the duration of a console
        /// session that you might request using the returned credentials. The request to the
        /// federation endpoint for a console sign-in token takes a <code>SessionDuration</code>
        /// parameter that specifies the maximum length of the console session. For more
        /// information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html">Creating a URL
        /// that Enables Federated Users to Access the Management Console</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// </note>
        pub fn duration_seconds(mut self, inp: i32) -> Self {
            self.inner = self.inner.duration_seconds(inp);
            self
        }
        /// <p>The duration, in seconds, of the role session. The value can range from 900 seconds (15
        /// minutes) up to the maximum session duration setting for the role. This setting can have a
        /// value from 1 hour to 12 hours. If you specify a value higher than this setting, the
        /// operation fails. For example, if you specify a session duration of 12 hours, but your
        /// administrator set the maximum session duration to 6 hours, your operation fails. To learn
        /// how to view the maximum value for your role, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html#id_roles_use_view-role-max-session">View the
        /// Maximum Session Duration Setting for a Role</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>By default, the value is set to <code>3600</code> seconds. </p>
        /// <note>
        /// <p>The <code>DurationSeconds</code> parameter is separate from the duration of a console
        /// session that you might request using the returned credentials. The request to the
        /// federation endpoint for a console sign-in token takes a <code>SessionDuration</code>
        /// parameter that specifies the maximum length of the console session. For more
        /// information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html">Creating a URL
        /// that Enables Federated Users to Access the Management Console</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// </note>
        pub fn set_duration_seconds(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_duration_seconds(input);
            self
        }
    }
    /// Fluent builder constructing a request to `DecodeAuthorizationMessage`.
    ///
    /// <p>Decodes additional information about the authorization status of a request from an
    /// encoded message returned in response to an Amazon Web Services request.</p>
    /// <p>For example, if a user is not authorized to perform an operation that he or she has
    /// requested, the request returns a <code>Client.UnauthorizedOperation</code> response (an
    /// HTTP 403 response). Some Amazon Web Services operations additionally return an encoded message that can
    /// provide details about this authorization failure. </p>
    /// <note>
    /// <p>Only certain Amazon Web Services operations return an encoded authorization message. The
    /// documentation for an individual operation indicates whether that operation returns an
    /// encoded message in addition to returning an HTTP code.</p>
    /// </note>
    /// <p>The message is encoded because the details of the authorization status can constitute
    /// privileged information that the user who requested the operation should not see. To decode
    /// an authorization status message, a user must be granted permissions via an IAM policy to
    /// request the <code>DecodeAuthorizationMessage</code>
    /// (<code>sts:DecodeAuthorizationMessage</code>) action. </p>
    /// <p>The decoded message includes the following type of information:</p>
    /// <ul>
    /// <li>
    /// <p>Whether the request was denied due to an explicit deny or due to the absence of an
    /// explicit allow. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html#policy-eval-denyallow">Determining Whether a Request is Allowed or Denied</a> in the
    /// <i>IAM User Guide</i>. </p>
    /// </li>
    /// <li>
    /// <p>The principal who made the request.</p>
    /// </li>
    /// <li>
    /// <p>The requested action.</p>
    /// </li>
    /// <li>
    /// <p>The requested resource.</p>
    /// </li>
    /// <li>
    /// <p>The values of condition keys in the context of the user's request.</p>
    /// </li>
    /// </ul>
    #[derive(std::fmt::Debug)]
    pub struct DecodeAuthorizationMessage<
        C = aws_smithy_client::erase::DynConnector,
        M = aws_hyper::AwsMiddleware,
        R = aws_smithy_client::retry::Standard,
    > {
        handle: std::sync::Arc<super::Handle<C, M, R>>,
        inner: crate::input::decode_authorization_message_input::Builder,
    }
    impl<C, M, R> DecodeAuthorizationMessage<C, M, R>
    where
        C: aws_smithy_client::bounds::SmithyConnector,
        M: aws_smithy_client::bounds::SmithyMiddleware<C>,
        R: aws_smithy_client::retry::NewRequestPolicy,
    {
        /// Creates a new `DecodeAuthorizationMessage`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle<C, M, R>>) -> 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::DecodeAuthorizationMessageOutput,
            aws_smithy_http::result::SdkError<crate::error::DecodeAuthorizationMessageError>,
        >
        where
            R::Policy: aws_smithy_client::bounds::SmithyRetryPolicy<
                crate::input::DecodeAuthorizationMessageInputOperationOutputAlias,
                crate::output::DecodeAuthorizationMessageOutput,
                crate::error::DecodeAuthorizationMessageError,
                crate::input::DecodeAuthorizationMessageInputOperationRetryAlias,
            >,
        {
            let input = self.inner.build().map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            let op = input.make_operation(&self.handle.conf).map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            self.handle.client.call(op).await
        }
        /// <p>The encoded message that was returned with the response.</p>
        pub fn encoded_message(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.encoded_message(inp);
            self
        }
        /// <p>The encoded message that was returned with the response.</p>
        pub fn set_encoded_message(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_encoded_message(input);
            self
        }
    }
    /// Fluent builder constructing a request to `GetAccessKeyInfo`.
    ///
    /// <p>Returns the account identifier for the specified access key ID.</p>
    /// <p>Access keys consist of two parts: an access key ID (for example,
    /// <code>AKIAIOSFODNN7EXAMPLE</code>) and a secret access key (for example,
    /// <code>wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY</code>). For more information about
    /// access keys, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html">Managing Access Keys for IAM
    /// Users</a> in the <i>IAM User Guide</i>.</p>
    /// <p>When you pass an access key ID to this operation, it returns the ID of the Amazon Web Services
    /// account to which the keys belong. Access key IDs beginning with <code>AKIA</code> are
    /// long-term credentials for an IAM user or the Amazon Web Services account root user. Access key IDs
    /// beginning with <code>ASIA</code> are temporary credentials that are created using STS
    /// operations. If the account in the response belongs to you, you can sign in as the root
    /// user and review your root user access keys. Then, you can pull a <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_getting-report.html">credentials report</a> to learn which IAM user owns the keys. To learn who
    /// requested the temporary credentials for an <code>ASIA</code> access key, view the STS
    /// events in your <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/cloudtrail-integration.html">CloudTrail logs</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <p>This operation does not indicate the state of the access key. The key might be active,
    /// inactive, or deleted. Active keys might not have permissions to perform an operation.
    /// Providing a deleted access key might return an error that the key doesn't exist.</p>
    #[derive(std::fmt::Debug)]
    pub struct GetAccessKeyInfo<
        C = aws_smithy_client::erase::DynConnector,
        M = aws_hyper::AwsMiddleware,
        R = aws_smithy_client::retry::Standard,
    > {
        handle: std::sync::Arc<super::Handle<C, M, R>>,
        inner: crate::input::get_access_key_info_input::Builder,
    }
    impl<C, M, R> GetAccessKeyInfo<C, M, R>
    where
        C: aws_smithy_client::bounds::SmithyConnector,
        M: aws_smithy_client::bounds::SmithyMiddleware<C>,
        R: aws_smithy_client::retry::NewRequestPolicy,
    {
        /// Creates a new `GetAccessKeyInfo`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle<C, M, R>>) -> 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::GetAccessKeyInfoOutput,
            aws_smithy_http::result::SdkError<crate::error::GetAccessKeyInfoError>,
        >
        where
            R::Policy: aws_smithy_client::bounds::SmithyRetryPolicy<
                crate::input::GetAccessKeyInfoInputOperationOutputAlias,
                crate::output::GetAccessKeyInfoOutput,
                crate::error::GetAccessKeyInfoError,
                crate::input::GetAccessKeyInfoInputOperationRetryAlias,
            >,
        {
            let input = self.inner.build().map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            let op = input.make_operation(&self.handle.conf).map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            self.handle.client.call(op).await
        }
        /// <p>The identifier of an access key.</p>
        /// <p>This parameter allows (through its regex pattern) a string of characters that can
        /// consist of any upper- or lowercase letter or digit.</p>
        pub fn access_key_id(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.access_key_id(inp);
            self
        }
        /// <p>The identifier of an access key.</p>
        /// <p>This parameter allows (through its regex pattern) a string of characters that can
        /// consist of any upper- or lowercase letter or digit.</p>
        pub fn set_access_key_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_access_key_id(input);
            self
        }
    }
    /// Fluent builder constructing a request to `GetCallerIdentity`.
    ///
    /// <p>Returns details about the IAM user or role whose credentials are used to call the
    /// operation.</p>
    /// <note>
    /// <p>No permissions are required to perform this operation. If an administrator adds a
    /// policy to your IAM user or role that explicitly denies access to the
    /// <code>sts:GetCallerIdentity</code> action, you can still perform this operation.
    /// Permissions are not required because the same information is returned when an IAM
    /// user or role is denied access. To view an example response, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/troubleshoot_general.html#troubleshoot_general_access-denied-delete-mfa">I Am Not Authorized to Perform: iam:DeleteVirtualMFADevice</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// </note>
    #[derive(std::fmt::Debug)]
    pub struct GetCallerIdentity<
        C = aws_smithy_client::erase::DynConnector,
        M = aws_hyper::AwsMiddleware,
        R = aws_smithy_client::retry::Standard,
    > {
        handle: std::sync::Arc<super::Handle<C, M, R>>,
        inner: crate::input::get_caller_identity_input::Builder,
    }
    impl<C, M, R> GetCallerIdentity<C, M, R>
    where
        C: aws_smithy_client::bounds::SmithyConnector,
        M: aws_smithy_client::bounds::SmithyMiddleware<C>,
        R: aws_smithy_client::retry::NewRequestPolicy,
    {
        /// Creates a new `GetCallerIdentity`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle<C, M, R>>) -> 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::GetCallerIdentityOutput,
            aws_smithy_http::result::SdkError<crate::error::GetCallerIdentityError>,
        >
        where
            R::Policy: aws_smithy_client::bounds::SmithyRetryPolicy<
                crate::input::GetCallerIdentityInputOperationOutputAlias,
                crate::output::GetCallerIdentityOutput,
                crate::error::GetCallerIdentityError,
                crate::input::GetCallerIdentityInputOperationRetryAlias,
            >,
        {
            let input = self.inner.build().map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            let op = input.make_operation(&self.handle.conf).map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            self.handle.client.call(op).await
        }
    }
    /// Fluent builder constructing a request to `GetFederationToken`.
    ///
    /// <p>Returns a set of temporary security credentials (consisting of an access key ID, a
    /// secret access key, and a security token) for a federated user. A typical use is in a proxy
    /// application that gets temporary security credentials on behalf of distributed applications
    /// inside a corporate network. You must call the <code>GetFederationToken</code> operation
    /// using the long-term security credentials of an IAM user. As a result, this call is
    /// appropriate in contexts where those credentials can be safely stored, usually in a
    /// server-based application. For a comparison of <code>GetFederationToken</code> with the
    /// other API operations that produce temporary credentials, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html">Requesting Temporary Security
    /// Credentials</a> and <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison">Comparing the
    /// STS API operations</a> in the <i>IAM User Guide</i>.</p>
    /// <note>
    /// <p>You can create a mobile-based or browser-based app that can authenticate users using
    /// a web identity provider like Login with Amazon, Facebook, Google, or an OpenID
    /// Connect-compatible identity provider. In this case, we recommend that you use <a href="http://aws.amazon.com/cognito/">Amazon Cognito</a> or
    /// <code>AssumeRoleWithWebIdentity</code>. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity">Federation Through a Web-based Identity Provider</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// </note>
    /// <p>You can also call <code>GetFederationToken</code> using the security credentials of an
    /// Amazon Web Services account root user, but we do not recommend it. Instead, we recommend that you create
    /// an IAM user for the purpose of the proxy application. Then attach a policy to the IAM
    /// user that limits federated users to only the actions and resources that they need to
    /// access. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html">IAM Best Practices</a> in the
    /// <i>IAM User Guide</i>. </p>
    /// <p>
    /// <b>Session duration</b>
    /// </p>
    /// <p>The temporary credentials are valid for the specified duration, from 900 seconds (15
    /// minutes) up to a maximum of 129,600 seconds (36 hours). The default session duration is
    /// 43,200 seconds (12 hours). Temporary credentials that are obtained by using Amazon Web Services account
    /// root user credentials have a maximum duration of 3,600 seconds (1 hour).</p>
    /// <p>
    /// <b>Permissions</b>
    /// </p>
    /// <p>You can use the temporary credentials created by <code>GetFederationToken</code> in any
    /// Amazon Web Services service except the following:</p>
    /// <ul>
    /// <li>
    /// <p>You cannot call any IAM operations using the CLI or the Amazon Web Services API. </p>
    /// </li>
    /// <li>
    /// <p>You cannot call any STS operations except <code>GetCallerIdentity</code>.</p>
    /// </li>
    /// </ul>
    /// <p>You must pass an inline or managed <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">session policy</a> to
    /// this operation. You can pass a single JSON policy document to use as an inline session
    /// policy. You can also specify up to 10 managed policies to use as managed session policies.
    /// The plaintext that you use for both inline and managed session policies can't exceed 2,048
    /// characters.</p>
    /// <p>Though the session policy parameters are optional, if you do not pass a policy, then the
    /// resulting federated user session has no permissions. When you pass session policies, the
    /// session permissions are the intersection of the IAM user policies and the session
    /// policies that you pass. This gives you a way to further restrict the permissions for a
    /// federated user. You cannot use session policies to grant more permissions than those that
    /// are defined in the permissions policy of the IAM user. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session
    /// Policies</a> in the <i>IAM User Guide</i>. For information about
    /// using <code>GetFederationToken</code> to create temporary security credentials, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_getfederationtoken">GetFederationToken—Federation Through a Custom Identity Broker</a>. </p>
    /// <p>You can use the credentials to access a resource that has a resource-based policy. If
    /// that policy specifically references the federated user session in the
    /// <code>Principal</code> element of the policy, the session has the permissions allowed by
    /// the policy. These permissions are granted in addition to the permissions granted by the
    /// session policies.</p>
    /// <p>
    /// <b>Tags</b>
    /// </p>
    /// <p>(Optional) You can pass tag key-value pairs to your session. These are called session
    /// tags. For more information about session tags, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html">Passing Session Tags in STS</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <note>
    /// <p>You can create a mobile-based or browser-based app that can authenticate users
    /// using a web identity provider like Login with Amazon, Facebook, Google, or an OpenID
    /// Connect-compatible identity provider. In this case, we recommend that you use <a href="http://aws.amazon.com/cognito/">Amazon Cognito</a> or
    /// <code>AssumeRoleWithWebIdentity</code>. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity">Federation Through a Web-based Identity Provider</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// </note>
    /// <p>You can also call <code>GetFederationToken</code> using the security credentials of an
    /// Amazon Web Services account root user, but we do not recommend it. Instead, we recommend that you
    /// create an IAM user for the purpose of the proxy application. Then attach a policy to
    /// the IAM user that limits federated users to only the actions and resources that they
    /// need to access. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html">IAM Best Practices</a> in the
    /// <i>IAM User Guide</i>. </p>
    /// <p>
    /// <b>Session duration</b>
    /// </p>
    /// <p>The temporary credentials are valid for the specified duration, from 900 seconds (15
    /// minutes) up to a maximum of 129,600 seconds (36 hours). The default session duration is
    /// 43,200 seconds (12 hours). Temporary credentials that are obtained by using Amazon Web Services
    /// account root user credentials have a maximum duration of 3,600 seconds (1 hour).</p>
    /// <p>
    /// <b>Permissions</b>
    /// </p>
    /// <p>You can use the temporary credentials created by <code>GetFederationToken</code> in
    /// any Amazon Web Services service except the following:</p>
    /// <ul>
    /// <li>
    /// <p>You cannot call any IAM operations using the CLI or the Amazon Web Services API.
    /// </p>
    /// </li>
    /// <li>
    /// <p>You cannot call any STS operations except
    /// <code>GetCallerIdentity</code>.</p>
    /// </li>
    /// </ul>
    /// <p>You must pass an inline or managed <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">session policy</a> to
    /// this operation. You can pass a single JSON policy document to use as an inline session
    /// policy. You can also specify up to 10 managed policies to use as managed session
    /// policies. The plain text that you use for both inline and managed session policies can't
    /// exceed 2,048 characters.</p>
    /// <p>Though the session policy parameters are optional, if you do not pass a policy, then
    /// the resulting federated user session has no permissions. When you pass session policies,
    /// the session permissions are the intersection of the IAM user policies and the session
    /// policies that you pass. This gives you a way to further restrict the permissions for a
    /// federated user. You cannot use session policies to grant more permissions than those
    /// that are defined in the permissions policy of the IAM user. For more information, see
    /// <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session Policies</a>
    /// in the <i>IAM User Guide</i>. For information about using
    /// <code>GetFederationToken</code> to create temporary security credentials, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_getfederationtoken">GetFederationToken—Federation Through a Custom Identity Broker</a>. </p>
    /// <p>You can use the credentials to access a resource that has a resource-based policy. If
    /// that policy specifically references the federated user session in the
    /// <code>Principal</code> element of the policy, the session has the permissions
    /// allowed by the policy. These permissions are granted in addition to the permissions
    /// granted by the session policies.</p>
    /// <p>
    /// <b>Tags</b>
    /// </p>
    /// <p>(Optional) You can pass tag key-value pairs to your session. These are called session
    /// tags. For more information about session tags, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html">Passing Session Tags in STS</a> in
    /// the <i>IAM User Guide</i>.</p>
    /// <p>An administrator must grant you the permissions necessary to pass session tags. The
    /// administrator can also create granular permissions to allow you to pass only specific
    /// session tags. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_attribute-based-access-control.html">Tutorial: Using
    /// Tags for Attribute-Based Access Control</a> in the
    /// <i>IAM User Guide</i>.</p>
    /// <p>Tag key–value pairs are not case sensitive, but case is preserved. This means that you
    /// cannot have separate <code>Department</code> and <code>department</code> tag keys.
    /// Assume that the user that you are federating has the
    /// <code>Department</code>=<code>Marketing</code> tag and you pass the
    /// <code>department</code>=<code>engineering</code> session tag.
    /// <code>Department</code> and <code>department</code> are not saved as separate tags,
    /// and the session tag passed in the request takes precedence over the user tag.</p>
    #[derive(std::fmt::Debug)]
    pub struct GetFederationToken<
        C = aws_smithy_client::erase::DynConnector,
        M = aws_hyper::AwsMiddleware,
        R = aws_smithy_client::retry::Standard,
    > {
        handle: std::sync::Arc<super::Handle<C, M, R>>,
        inner: crate::input::get_federation_token_input::Builder,
    }
    impl<C, M, R> GetFederationToken<C, M, R>
    where
        C: aws_smithy_client::bounds::SmithyConnector,
        M: aws_smithy_client::bounds::SmithyMiddleware<C>,
        R: aws_smithy_client::retry::NewRequestPolicy,
    {
        /// Creates a new `GetFederationToken`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle<C, M, R>>) -> 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::GetFederationTokenOutput,
            aws_smithy_http::result::SdkError<crate::error::GetFederationTokenError>,
        >
        where
            R::Policy: aws_smithy_client::bounds::SmithyRetryPolicy<
                crate::input::GetFederationTokenInputOperationOutputAlias,
                crate::output::GetFederationTokenOutput,
                crate::error::GetFederationTokenError,
                crate::input::GetFederationTokenInputOperationRetryAlias,
            >,
        {
            let input = self.inner.build().map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            let op = input.make_operation(&self.handle.conf).map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            self.handle.client.call(op).await
        }
        /// <p>The name of the federated user. The name is used as an identifier for the temporary
        /// security credentials (such as <code>Bob</code>). For example, you can reference the
        /// federated user name in a resource-based policy, such as in an Amazon S3 bucket policy.</p>
        /// <p>The regex used to validate this parameter is a string of characters
        /// consisting of upper- and lower-case alphanumeric characters with no spaces. You can
        /// also include underscores or any of the following characters: =,.@-</p>
        pub fn name(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.name(inp);
            self
        }
        /// <p>The name of the federated user. The name is used as an identifier for the temporary
        /// security credentials (such as <code>Bob</code>). For example, you can reference the
        /// federated user name in a resource-based policy, such as in an Amazon S3 bucket policy.</p>
        /// <p>The regex used to validate this parameter is a string of characters
        /// consisting of upper- and lower-case alphanumeric characters with no spaces. You can
        /// also include underscores or any of the following characters: =,.@-</p>
        pub fn set_name(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_name(input);
            self
        }
        /// <p>An IAM policy in JSON format that you want to use as an inline session policy.</p>
        /// <p>You must pass an inline or managed <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">session policy</a> to
        /// this operation. You can pass a single JSON policy document to use as an inline session
        /// policy. You can also specify up to 10 managed policies to use as managed session
        /// policies.</p>
        /// <p>This parameter is optional. However, if you do not pass any session policies, then the
        /// resulting federated user session has no permissions.</p>
        /// <p>When you pass session policies, the session permissions are the intersection of the
        /// IAM user policies and the session policies that you pass. This gives you a way to further
        /// restrict the permissions for a federated user. You cannot use session policies to grant
        /// more permissions than those that are defined in the permissions policy of the IAM user.
        /// For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session Policies</a> in
        /// the <i>IAM User Guide</i>.</p>
        /// <p>The resulting credentials can be used to access a resource that has a resource-based
        /// policy. If that policy specifically references the federated user session in the
        /// <code>Principal</code> element of the policy, the session has the permissions allowed by
        /// the policy. These permissions are granted in addition to the permissions that are granted
        /// by the session policies.</p>
        /// <p>The plaintext that you use for both inline and managed session policies can't exceed
        /// 2,048 characters. The JSON policy characters can be any ASCII character from the space
        /// character to the end of the valid character list (\u0020 through \u00FF). It can also
        /// include the tab (\u0009), linefeed (\u000A), and carriage return (\u000D)
        /// characters.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        pub fn policy(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.policy(inp);
            self
        }
        /// <p>An IAM policy in JSON format that you want to use as an inline session policy.</p>
        /// <p>You must pass an inline or managed <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">session policy</a> to
        /// this operation. You can pass a single JSON policy document to use as an inline session
        /// policy. You can also specify up to 10 managed policies to use as managed session
        /// policies.</p>
        /// <p>This parameter is optional. However, if you do not pass any session policies, then the
        /// resulting federated user session has no permissions.</p>
        /// <p>When you pass session policies, the session permissions are the intersection of the
        /// IAM user policies and the session policies that you pass. This gives you a way to further
        /// restrict the permissions for a federated user. You cannot use session policies to grant
        /// more permissions than those that are defined in the permissions policy of the IAM user.
        /// For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session Policies</a> in
        /// the <i>IAM User Guide</i>.</p>
        /// <p>The resulting credentials can be used to access a resource that has a resource-based
        /// policy. If that policy specifically references the federated user session in the
        /// <code>Principal</code> element of the policy, the session has the permissions allowed by
        /// the policy. These permissions are granted in addition to the permissions that are granted
        /// by the session policies.</p>
        /// <p>The plaintext that you use for both inline and managed session policies can't exceed
        /// 2,048 characters. The JSON policy characters can be any ASCII character from the space
        /// character to the end of the valid character list (\u0020 through \u00FF). It can also
        /// include the tab (\u0009), linefeed (\u000A), and carriage return (\u000D)
        /// characters.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        pub fn set_policy(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_policy(input);
            self
        }
        /// Appends an item to `PolicyArns`.
        ///
        /// To override the contents of this collection use [`set_policy_arns`](Self::set_policy_arns).
        ///
        /// <p>The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as a
        /// managed session policy. The policies must exist in the same account as the IAM user that
        /// is requesting federated access.</p>
        /// <p>You must pass an inline or managed <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">session policy</a> to
        /// this operation. You can pass a single JSON policy document to use as an inline session
        /// policy. You can also specify up to 10 managed policies to use as managed session policies.
        /// The plaintext that you use for both inline and managed session policies can't exceed 2,048
        /// characters. You can provide up to 10 managed policy ARNs. For more information about ARNs,
        /// see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
        /// Resource Names (ARNs) and Amazon Web Services Service Namespaces</a> in the Amazon Web Services General Reference.</p>
        /// <p>This parameter is optional. However, if you do not pass any session policies, then the
        /// resulting federated user session has no permissions.</p>
        /// <p>When you pass session policies, the session permissions are the intersection of the
        /// IAM user policies and the session policies that you pass. This gives you a way to further
        /// restrict the permissions for a federated user. You cannot use session policies to grant
        /// more permissions than those that are defined in the permissions policy of the IAM user.
        /// For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session Policies</a> in
        /// the <i>IAM User Guide</i>.</p>
        /// <p>The resulting credentials can be used to access a resource that has a resource-based
        /// policy. If that policy specifically references the federated user session in the
        /// <code>Principal</code> element of the policy, the session has the permissions allowed by
        /// the policy. These permissions are granted in addition to the permissions that are granted
        /// by the session policies.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        pub fn policy_arns(mut self, inp: impl Into<crate::model::PolicyDescriptorType>) -> Self {
            self.inner = self.inner.policy_arns(inp);
            self
        }
        /// <p>The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as a
        /// managed session policy. The policies must exist in the same account as the IAM user that
        /// is requesting federated access.</p>
        /// <p>You must pass an inline or managed <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">session policy</a> to
        /// this operation. You can pass a single JSON policy document to use as an inline session
        /// policy. You can also specify up to 10 managed policies to use as managed session policies.
        /// The plaintext that you use for both inline and managed session policies can't exceed 2,048
        /// characters. You can provide up to 10 managed policy ARNs. For more information about ARNs,
        /// see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
        /// Resource Names (ARNs) and Amazon Web Services Service Namespaces</a> in the Amazon Web Services General Reference.</p>
        /// <p>This parameter is optional. However, if you do not pass any session policies, then the
        /// resulting federated user session has no permissions.</p>
        /// <p>When you pass session policies, the session permissions are the intersection of the
        /// IAM user policies and the session policies that you pass. This gives you a way to further
        /// restrict the permissions for a federated user. You cannot use session policies to grant
        /// more permissions than those that are defined in the permissions policy of the IAM user.
        /// For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#policies_session">Session Policies</a> in
        /// the <i>IAM User Guide</i>.</p>
        /// <p>The resulting credentials can be used to access a resource that has a resource-based
        /// policy. If that policy specifically references the federated user session in the
        /// <code>Principal</code> element of the policy, the session has the permissions allowed by
        /// the policy. These permissions are granted in addition to the permissions that are granted
        /// by the session policies.</p>
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        pub fn set_policy_arns(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::PolicyDescriptorType>>,
        ) -> Self {
            self.inner = self.inner.set_policy_arns(input);
            self
        }
        /// <p>The duration, in seconds, that the session should last. Acceptable durations for
        /// federation sessions range from 900 seconds (15 minutes) to 129,600 seconds (36 hours), with
        /// 43,200 seconds (12 hours) as the default. Sessions obtained using Amazon Web Services account root user
        /// credentials are restricted to a maximum of 3,600 seconds (one hour). If the specified
        /// duration is longer than one hour, the session obtained by using root user credentials
        /// defaults to one hour.</p>
        pub fn duration_seconds(mut self, inp: i32) -> Self {
            self.inner = self.inner.duration_seconds(inp);
            self
        }
        /// <p>The duration, in seconds, that the session should last. Acceptable durations for
        /// federation sessions range from 900 seconds (15 minutes) to 129,600 seconds (36 hours), with
        /// 43,200 seconds (12 hours) as the default. Sessions obtained using Amazon Web Services account root user
        /// credentials are restricted to a maximum of 3,600 seconds (one hour). If the specified
        /// duration is longer than one hour, the session obtained by using root user credentials
        /// defaults to one hour.</p>
        pub fn set_duration_seconds(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_duration_seconds(input);
            self
        }
        /// Appends an item to `Tags`.
        ///
        /// To override the contents of this collection use [`set_tags`](Self::set_tags).
        ///
        /// <p>A list of session tags. Each session tag consists of a key name and an associated value.
        /// For more information about session tags, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html">Passing Session Tags in STS</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>This parameter is optional. You can pass up to 50 session tags. The plaintext session
        /// tag keys can’t exceed 128 characters and the values can’t exceed 256 characters. For these
        /// and additional limits, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length">IAM
        /// and STS Character Limits</a> in the <i>IAM User Guide</i>.</p>
        ///
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        /// <p>You can pass a session tag with the same key as a tag that is already
        /// attached to the user you are federating. When you do, session tags override a user tag with
        /// the same key. </p>
        /// <p>Tag key–value pairs are not case sensitive, but case is preserved. This means that you
        /// cannot have separate <code>Department</code> and <code>department</code> tag keys. Assume
        /// that the role has the <code>Department</code>=<code>Marketing</code> tag and you pass the
        /// <code>department</code>=<code>engineering</code> session tag. <code>Department</code>
        /// and <code>department</code> are not saved as separate tags, and the session tag passed in
        /// the request takes precedence over the role tag.</p>
        pub fn tags(mut self, inp: impl Into<crate::model::Tag>) -> Self {
            self.inner = self.inner.tags(inp);
            self
        }
        /// <p>A list of session tags. Each session tag consists of a key name and an associated value.
        /// For more information about session tags, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html">Passing Session Tags in STS</a> in the
        /// <i>IAM User Guide</i>.</p>
        /// <p>This parameter is optional. You can pass up to 50 session tags. The plaintext session
        /// tag keys can’t exceed 128 characters and the values can’t exceed 256 characters. For these
        /// and additional limits, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-limits.html#reference_iam-limits-entity-length">IAM
        /// and STS Character Limits</a> in the <i>IAM User Guide</i>.</p>
        ///
        /// <note>
        /// <p>An Amazon Web Services conversion compresses the passed session policies and session tags into a
        /// packed binary format that has a separate limit. Your request can fail for this limit
        /// even if your plaintext meets the other requirements. The <code>PackedPolicySize</code>
        /// response element indicates by percentage how close the policies and tags for your
        /// request are to the upper size limit.
        /// </p>
        /// </note>
        /// <p>You can pass a session tag with the same key as a tag that is already
        /// attached to the user you are federating. When you do, session tags override a user tag with
        /// the same key. </p>
        /// <p>Tag key–value pairs are not case sensitive, but case is preserved. This means that you
        /// cannot have separate <code>Department</code> and <code>department</code> tag keys. Assume
        /// that the role has the <code>Department</code>=<code>Marketing</code> tag and you pass the
        /// <code>department</code>=<code>engineering</code> session tag. <code>Department</code>
        /// and <code>department</code> are not saved as separate tags, and the session tag passed in
        /// the request takes precedence over the role tag.</p>
        pub fn set_tags(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::Tag>>,
        ) -> Self {
            self.inner = self.inner.set_tags(input);
            self
        }
    }
    /// Fluent builder constructing a request to `GetSessionToken`.
    ///
    /// <p>Returns a set of temporary credentials for an Amazon Web Services account or IAM user. The
    /// credentials consist of an access key ID, a secret access key, and a security token.
    /// Typically, you use <code>GetSessionToken</code> if you want to use MFA to protect
    /// programmatic calls to specific Amazon Web Services API operations like Amazon EC2 <code>StopInstances</code>.
    /// MFA-enabled IAM users would need to call <code>GetSessionToken</code> and submit an MFA
    /// code that is associated with their MFA device. Using the temporary security credentials
    /// that are returned from the call, IAM users can then make programmatic calls to API
    /// operations that require MFA authentication. If you do not supply a correct MFA code, then
    /// the API returns an access denied error. For a comparison of <code>GetSessionToken</code>
    /// with the other API operations that produce temporary credentials, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html">Requesting
    /// Temporary Security Credentials</a> and <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison">Comparing the
    /// STS API operations</a> in the <i>IAM User Guide</i>.</p>
    /// <p>
    /// <b>Session Duration</b>
    /// </p>
    /// <p>The <code>GetSessionToken</code> operation must be called by using the long-term Amazon Web Services
    /// security credentials of the Amazon Web Services account root user or an IAM user. Credentials that are
    /// created by IAM users are valid for the duration that you specify. This duration can range
    /// from 900 seconds (15 minutes) up to a maximum of 129,600 seconds (36 hours), with a default
    /// of 43,200 seconds (12 hours). Credentials based on account credentials can range from 900
    /// seconds (15 minutes) up to 3,600 seconds (1 hour), with a default of 1 hour. </p>
    /// <p>
    /// <b>Permissions</b>
    /// </p>
    /// <p>The temporary security credentials created by <code>GetSessionToken</code> can be used
    /// to make API calls to any Amazon Web Services service with the following exceptions:</p>
    /// <ul>
    /// <li>
    /// <p>You cannot call any IAM API operations unless MFA authentication information is
    /// included in the request.</p>
    /// </li>
    /// <li>
    /// <p>You cannot call any STS API <i>except</i>
    /// <code>AssumeRole</code> or <code>GetCallerIdentity</code>.</p>
    /// </li>
    /// </ul>
    /// <note>
    /// <p>We recommend that you do not call <code>GetSessionToken</code> with Amazon Web Services account
    /// root user credentials. Instead, follow our <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#create-iam-users">best practices</a> by
    /// creating one or more IAM users, giving them the necessary permissions, and using IAM
    /// users for everyday interaction with Amazon Web Services. </p>
    /// </note>
    /// <p>The credentials that are returned by <code>GetSessionToken</code> are based on
    /// permissions associated with the user whose credentials were used to call the operation. If
    /// <code>GetSessionToken</code> is called using Amazon Web Services account root user credentials, the
    /// temporary credentials have root user permissions. Similarly, if
    /// <code>GetSessionToken</code> is called using the credentials of an IAM user, the
    /// temporary credentials have the same permissions as the IAM user. </p>
    /// <p>For more information about using <code>GetSessionToken</code> to create temporary
    /// credentials, go to <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_getsessiontoken">Temporary
    /// Credentials for Users in Untrusted Environments</a> in the
    /// <i>IAM User Guide</i>. </p>
    #[derive(std::fmt::Debug)]
    pub struct GetSessionToken<
        C = aws_smithy_client::erase::DynConnector,
        M = aws_hyper::AwsMiddleware,
        R = aws_smithy_client::retry::Standard,
    > {
        handle: std::sync::Arc<super::Handle<C, M, R>>,
        inner: crate::input::get_session_token_input::Builder,
    }
    impl<C, M, R> GetSessionToken<C, M, R>
    where
        C: aws_smithy_client::bounds::SmithyConnector,
        M: aws_smithy_client::bounds::SmithyMiddleware<C>,
        R: aws_smithy_client::retry::NewRequestPolicy,
    {
        /// Creates a new `GetSessionToken`.
        pub(crate) fn new(handle: std::sync::Arc<super::Handle<C, M, R>>) -> 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::GetSessionTokenOutput,
            aws_smithy_http::result::SdkError<crate::error::GetSessionTokenError>,
        >
        where
            R::Policy: aws_smithy_client::bounds::SmithyRetryPolicy<
                crate::input::GetSessionTokenInputOperationOutputAlias,
                crate::output::GetSessionTokenOutput,
                crate::error::GetSessionTokenError,
                crate::input::GetSessionTokenInputOperationRetryAlias,
            >,
        {
            let input = self.inner.build().map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            let op = input.make_operation(&self.handle.conf).map_err(|err| {
                aws_smithy_http::result::SdkError::ConstructionFailure(err.into())
            })?;
            self.handle.client.call(op).await
        }
        /// <p>The duration, in seconds, that the credentials should remain valid. Acceptable
        /// durations for IAM user sessions range from 900 seconds (15 minutes) to 129,600 seconds
        /// (36 hours), with 43,200 seconds (12 hours) as the default. Sessions for Amazon Web Services account
        /// owners are restricted to a maximum of 3,600 seconds (one hour). If the duration is
        /// longer than one hour, the session for Amazon Web Services account owners defaults to one hour.</p>
        pub fn duration_seconds(mut self, inp: i32) -> Self {
            self.inner = self.inner.duration_seconds(inp);
            self
        }
        /// <p>The duration, in seconds, that the credentials should remain valid. Acceptable
        /// durations for IAM user sessions range from 900 seconds (15 minutes) to 129,600 seconds
        /// (36 hours), with 43,200 seconds (12 hours) as the default. Sessions for Amazon Web Services account
        /// owners are restricted to a maximum of 3,600 seconds (one hour). If the duration is
        /// longer than one hour, the session for Amazon Web Services account owners defaults to one hour.</p>
        pub fn set_duration_seconds(mut self, input: std::option::Option<i32>) -> Self {
            self.inner = self.inner.set_duration_seconds(input);
            self
        }
        /// <p>The identification number of the MFA device that is associated with the IAM user who
        /// is making the <code>GetSessionToken</code> call. Specify this value if the IAM user
        /// has a policy that requires MFA authentication. The value is either the serial number for
        /// a hardware device (such as <code>GAHT12345678</code>) or an Amazon Resource Name (ARN)
        /// for a virtual device (such as <code>arn:aws:iam::123456789012:mfa/user</code>). You can
        /// find the device for an IAM user by going to the Management Console and viewing the user's
        /// security credentials. </p>
        /// <p>The regex used to validate this parameter is a string of
        /// characters consisting of upper- and lower-case alphanumeric characters with no spaces.
        /// You can also include underscores or any of the following characters: =,.@:/-</p>
        pub fn serial_number(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.serial_number(inp);
            self
        }
        /// <p>The identification number of the MFA device that is associated with the IAM user who
        /// is making the <code>GetSessionToken</code> call. Specify this value if the IAM user
        /// has a policy that requires MFA authentication. The value is either the serial number for
        /// a hardware device (such as <code>GAHT12345678</code>) or an Amazon Resource Name (ARN)
        /// for a virtual device (such as <code>arn:aws:iam::123456789012:mfa/user</code>). You can
        /// find the device for an IAM user by going to the Management Console and viewing the user's
        /// security credentials. </p>
        /// <p>The regex used to validate this parameter is a string of
        /// characters consisting of upper- and lower-case alphanumeric characters with no spaces.
        /// You can also include underscores or any of the following characters: =,.@:/-</p>
        pub fn set_serial_number(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.inner = self.inner.set_serial_number(input);
            self
        }
        /// <p>The value provided by the MFA device, if MFA is required. If any policy requires the
        /// IAM user to submit an MFA code, specify this value. If MFA authentication is required,
        /// the user must provide a code when requesting a set of temporary security credentials. A
        /// user who fails to provide the code receives an "access denied" response when requesting
        /// resources that require MFA authentication.</p>
        /// <p>The format for this parameter, as described by its regex pattern, is a sequence of six
        /// numeric digits.</p>
        pub fn token_code(mut self, inp: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.token_code(inp);
            self
        }
        /// <p>The value provided by the MFA device, if MFA is required. If any policy requires the
        /// IAM user to submit an MFA code, specify this value. If MFA authentication is required,
        /// the user must provide a code when requesting a set of temporary security credentials. A
        /// user who fails to provide the code receives an "access denied" response when requesting
        /// resources that require MFA authentication.</p>
        /// <p>The format for this parameter, as described by its regex pattern, is a sequence of six
        /// numeric digits.</p>
        pub fn set_token_code(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_token_code(input);
            self
        }
    }
}
impl<C> Client<C, aws_hyper::AwsMiddleware, aws_smithy_client::retry::Standard> {
    /// Creates a client with the given service config and connector override.
    pub fn from_conf_conn(conf: crate::Config, conn: C) -> Self {
        let retry_config = conf.retry_config.as_ref().cloned().unwrap_or_default();
        let client = aws_hyper::Client::new(conn).with_retry_config(retry_config.into());
        Self {
            handle: std::sync::Arc::new(Handle { client, conf }),
        }
    }
}
impl
    Client<
        aws_smithy_client::erase::DynConnector,
        aws_hyper::AwsMiddleware,
        aws_smithy_client::retry::Standard,
    >
{
    /// Creates a new client from a shared config.
    #[cfg(any(feature = "rustls", feature = "native-tls"))]
    pub fn new(config: &aws_types::config::Config) -> Self {
        Self::from_conf(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 client = aws_hyper::Client::https().with_retry_config(retry_config.into());
        Self {
            handle: std::sync::Arc::new(Handle { client, conf }),
        }
    }
}