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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// <p>Specifies the attributes to add to your attribute-based access control (ABAC) configuration.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct InstanceAccessControlAttributeConfiguration {
/// <p>Lists the attributes that are configured for ABAC in the specified IAM Identity Center instance.</p>
#[doc(hidden)]
pub access_control_attributes:
std::option::Option<std::vec::Vec<crate::model::AccessControlAttribute>>,
}
impl InstanceAccessControlAttributeConfiguration {
/// <p>Lists the attributes that are configured for ABAC in the specified IAM Identity Center instance.</p>
pub fn access_control_attributes(
&self,
) -> std::option::Option<&[crate::model::AccessControlAttribute]> {
self.access_control_attributes.as_deref()
}
}
/// See [`InstanceAccessControlAttributeConfiguration`](crate::model::InstanceAccessControlAttributeConfiguration).
pub mod instance_access_control_attribute_configuration {
/// A builder for [`InstanceAccessControlAttributeConfiguration`](crate::model::InstanceAccessControlAttributeConfiguration).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) access_control_attributes:
std::option::Option<std::vec::Vec<crate::model::AccessControlAttribute>>,
}
impl Builder {
/// Appends an item to `access_control_attributes`.
///
/// To override the contents of this collection use [`set_access_control_attributes`](Self::set_access_control_attributes).
///
/// <p>Lists the attributes that are configured for ABAC in the specified IAM Identity Center instance.</p>
pub fn access_control_attributes(
mut self,
input: crate::model::AccessControlAttribute,
) -> Self {
let mut v = self.access_control_attributes.unwrap_or_default();
v.push(input);
self.access_control_attributes = Some(v);
self
}
/// <p>Lists the attributes that are configured for ABAC in the specified IAM Identity Center instance.</p>
pub fn set_access_control_attributes(
mut self,
input: std::option::Option<std::vec::Vec<crate::model::AccessControlAttribute>>,
) -> Self {
self.access_control_attributes = input;
self
}
/// Consumes the builder and constructs a [`InstanceAccessControlAttributeConfiguration`](crate::model::InstanceAccessControlAttributeConfiguration).
pub fn build(self) -> crate::model::InstanceAccessControlAttributeConfiguration {
crate::model::InstanceAccessControlAttributeConfiguration {
access_control_attributes: self.access_control_attributes,
}
}
}
}
impl InstanceAccessControlAttributeConfiguration {
/// Creates a new builder-style object to manufacture [`InstanceAccessControlAttributeConfiguration`](crate::model::InstanceAccessControlAttributeConfiguration).
pub fn builder() -> crate::model::instance_access_control_attribute_configuration::Builder {
crate::model::instance_access_control_attribute_configuration::Builder::default()
}
}
/// <p>These are IAM Identity Center identity store attributes that you can configure for use in attributes-based access control (ABAC). You can create permissions policies that determine who can access your AWS resources based upon the configured attribute values. When you enable ABAC and specify <code>AccessControlAttributes</code>, IAM Identity Center passes the attribute values of the authenticated user into IAM for use in policy evaluation.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct AccessControlAttribute {
/// <p>The name of the attribute associated with your identities in your identity source. This is used to map a specified attribute in your identity source with an attribute in IAM Identity Center.</p>
#[doc(hidden)]
pub key: std::option::Option<std::string::String>,
/// <p>The value used for mapping a specified attribute to an identity source.</p>
#[doc(hidden)]
pub value: std::option::Option<crate::model::AccessControlAttributeValue>,
}
impl AccessControlAttribute {
/// <p>The name of the attribute associated with your identities in your identity source. This is used to map a specified attribute in your identity source with an attribute in IAM Identity Center.</p>
pub fn key(&self) -> std::option::Option<&str> {
self.key.as_deref()
}
/// <p>The value used for mapping a specified attribute to an identity source.</p>
pub fn value(&self) -> std::option::Option<&crate::model::AccessControlAttributeValue> {
self.value.as_ref()
}
}
/// See [`AccessControlAttribute`](crate::model::AccessControlAttribute).
pub mod access_control_attribute {
/// A builder for [`AccessControlAttribute`](crate::model::AccessControlAttribute).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) key: std::option::Option<std::string::String>,
pub(crate) value: std::option::Option<crate::model::AccessControlAttributeValue>,
}
impl Builder {
/// <p>The name of the attribute associated with your identities in your identity source. This is used to map a specified attribute in your identity source with an attribute in IAM Identity Center.</p>
pub fn key(mut self, input: impl Into<std::string::String>) -> Self {
self.key = Some(input.into());
self
}
/// <p>The name of the attribute associated with your identities in your identity source. This is used to map a specified attribute in your identity source with an attribute in IAM Identity Center.</p>
pub fn set_key(mut self, input: std::option::Option<std::string::String>) -> Self {
self.key = input;
self
}
/// <p>The value used for mapping a specified attribute to an identity source.</p>
pub fn value(mut self, input: crate::model::AccessControlAttributeValue) -> Self {
self.value = Some(input);
self
}
/// <p>The value used for mapping a specified attribute to an identity source.</p>
pub fn set_value(
mut self,
input: std::option::Option<crate::model::AccessControlAttributeValue>,
) -> Self {
self.value = input;
self
}
/// Consumes the builder and constructs a [`AccessControlAttribute`](crate::model::AccessControlAttribute).
pub fn build(self) -> crate::model::AccessControlAttribute {
crate::model::AccessControlAttribute {
key: self.key,
value: self.value,
}
}
}
}
impl AccessControlAttribute {
/// Creates a new builder-style object to manufacture [`AccessControlAttribute`](crate::model::AccessControlAttribute).
pub fn builder() -> crate::model::access_control_attribute::Builder {
crate::model::access_control_attribute::Builder::default()
}
}
/// <p>The value used for mapping a specified attribute to an identity source. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/attributemappingsconcept.html">Attribute mappings</a> in the <i>IAM Identity Center User Guide</i>.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct AccessControlAttributeValue {
/// <p>The identity source to use when mapping a specified attribute to IAM Identity Center.</p>
#[doc(hidden)]
pub source: std::option::Option<std::vec::Vec<std::string::String>>,
}
impl AccessControlAttributeValue {
/// <p>The identity source to use when mapping a specified attribute to IAM Identity Center.</p>
pub fn source(&self) -> std::option::Option<&[std::string::String]> {
self.source.as_deref()
}
}
/// See [`AccessControlAttributeValue`](crate::model::AccessControlAttributeValue).
pub mod access_control_attribute_value {
/// A builder for [`AccessControlAttributeValue`](crate::model::AccessControlAttributeValue).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) source: std::option::Option<std::vec::Vec<std::string::String>>,
}
impl Builder {
/// Appends an item to `source`.
///
/// To override the contents of this collection use [`set_source`](Self::set_source).
///
/// <p>The identity source to use when mapping a specified attribute to IAM Identity Center.</p>
pub fn source(mut self, input: impl Into<std::string::String>) -> Self {
let mut v = self.source.unwrap_or_default();
v.push(input.into());
self.source = Some(v);
self
}
/// <p>The identity source to use when mapping a specified attribute to IAM Identity Center.</p>
pub fn set_source(
mut self,
input: std::option::Option<std::vec::Vec<std::string::String>>,
) -> Self {
self.source = input;
self
}
/// Consumes the builder and constructs a [`AccessControlAttributeValue`](crate::model::AccessControlAttributeValue).
pub fn build(self) -> crate::model::AccessControlAttributeValue {
crate::model::AccessControlAttributeValue {
source: self.source,
}
}
}
}
impl AccessControlAttributeValue {
/// Creates a new builder-style object to manufacture [`AccessControlAttributeValue`](crate::model::AccessControlAttributeValue).
pub fn builder() -> crate::model::access_control_attribute_value::Builder {
crate::model::access_control_attribute_value::Builder::default()
}
}
/// <p>A set of key-value pairs that are used to manage the resource. Tags can only be applied to permission sets and cannot be applied to corresponding roles that IAM Identity Center creates in AWS accounts.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct Tag {
/// <p>The key for the tag.</p>
#[doc(hidden)]
pub key: std::option::Option<std::string::String>,
/// <p>The value of the tag.</p>
#[doc(hidden)]
pub value: std::option::Option<std::string::String>,
}
impl Tag {
/// <p>The key for the tag.</p>
pub fn key(&self) -> std::option::Option<&str> {
self.key.as_deref()
}
/// <p>The value of the tag.</p>
pub fn value(&self) -> std::option::Option<&str> {
self.value.as_deref()
}
}
/// See [`Tag`](crate::model::Tag).
pub mod tag {
/// A builder for [`Tag`](crate::model::Tag).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) key: std::option::Option<std::string::String>,
pub(crate) value: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The key for the tag.</p>
pub fn key(mut self, input: impl Into<std::string::String>) -> Self {
self.key = Some(input.into());
self
}
/// <p>The key for the tag.</p>
pub fn set_key(mut self, input: std::option::Option<std::string::String>) -> Self {
self.key = input;
self
}
/// <p>The value of the tag.</p>
pub fn value(mut self, input: impl Into<std::string::String>) -> Self {
self.value = Some(input.into());
self
}
/// <p>The value of the tag.</p>
pub fn set_value(mut self, input: std::option::Option<std::string::String>) -> Self {
self.value = input;
self
}
/// Consumes the builder and constructs a [`Tag`](crate::model::Tag).
pub fn build(self) -> crate::model::Tag {
crate::model::Tag {
key: self.key,
value: self.value,
}
}
}
}
impl Tag {
/// Creates a new builder-style object to manufacture [`Tag`](crate::model::Tag).
pub fn builder() -> crate::model::tag::Builder {
crate::model::tag::Builder::default()
}
}
/// <p>Specifies the configuration of the AWS managed or customer managed policy that you want to set as a permissions boundary. Specify either <code>CustomerManagedPolicyReference</code> to use the name and path of a customer managed policy, or <code>ManagedPolicyArn</code> to use the ARN of an AWS managed policy. A permissions boundary represents the maximum permissions that any policy can grant your role. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions boundaries for IAM entities</a> in the <i>IAM User Guide</i>.</p> <important>
/// <p>Policies used as permissions boundaries don't provide permissions. You must also attach an IAM policy to the role. To learn how the effective permissions for a role are evaluated, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html">IAM JSON policy evaluation logic</a> in the <i>IAM User Guide</i>.</p>
/// </important>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct PermissionsBoundary {
/// <p>Specifies the name and path of a customer managed policy. You must have an IAM policy that matches the name and path in each AWS account where you want to deploy your permission set.</p>
#[doc(hidden)]
pub customer_managed_policy_reference:
std::option::Option<crate::model::CustomerManagedPolicyReference>,
/// <p>The AWS managed policy ARN that you want to attach to a permission set as a permissions boundary.</p>
#[doc(hidden)]
pub managed_policy_arn: std::option::Option<std::string::String>,
}
impl PermissionsBoundary {
/// <p>Specifies the name and path of a customer managed policy. You must have an IAM policy that matches the name and path in each AWS account where you want to deploy your permission set.</p>
pub fn customer_managed_policy_reference(
&self,
) -> std::option::Option<&crate::model::CustomerManagedPolicyReference> {
self.customer_managed_policy_reference.as_ref()
}
/// <p>The AWS managed policy ARN that you want to attach to a permission set as a permissions boundary.</p>
pub fn managed_policy_arn(&self) -> std::option::Option<&str> {
self.managed_policy_arn.as_deref()
}
}
/// See [`PermissionsBoundary`](crate::model::PermissionsBoundary).
pub mod permissions_boundary {
/// A builder for [`PermissionsBoundary`](crate::model::PermissionsBoundary).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) customer_managed_policy_reference:
std::option::Option<crate::model::CustomerManagedPolicyReference>,
pub(crate) managed_policy_arn: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>Specifies the name and path of a customer managed policy. You must have an IAM policy that matches the name and path in each AWS account where you want to deploy your permission set.</p>
pub fn customer_managed_policy_reference(
mut self,
input: crate::model::CustomerManagedPolicyReference,
) -> Self {
self.customer_managed_policy_reference = Some(input);
self
}
/// <p>Specifies the name and path of a customer managed policy. You must have an IAM policy that matches the name and path in each AWS account where you want to deploy your permission set.</p>
pub fn set_customer_managed_policy_reference(
mut self,
input: std::option::Option<crate::model::CustomerManagedPolicyReference>,
) -> Self {
self.customer_managed_policy_reference = input;
self
}
/// <p>The AWS managed policy ARN that you want to attach to a permission set as a permissions boundary.</p>
pub fn managed_policy_arn(mut self, input: impl Into<std::string::String>) -> Self {
self.managed_policy_arn = Some(input.into());
self
}
/// <p>The AWS managed policy ARN that you want to attach to a permission set as a permissions boundary.</p>
pub fn set_managed_policy_arn(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.managed_policy_arn = input;
self
}
/// Consumes the builder and constructs a [`PermissionsBoundary`](crate::model::PermissionsBoundary).
pub fn build(self) -> crate::model::PermissionsBoundary {
crate::model::PermissionsBoundary {
customer_managed_policy_reference: self.customer_managed_policy_reference,
managed_policy_arn: self.managed_policy_arn,
}
}
}
}
impl PermissionsBoundary {
/// Creates a new builder-style object to manufacture [`PermissionsBoundary`](crate::model::PermissionsBoundary).
pub fn builder() -> crate::model::permissions_boundary::Builder {
crate::model::permissions_boundary::Builder::default()
}
}
/// <p>Specifies the name and path of a customer managed policy. You must have an IAM policy that matches the name and path in each AWS account where you want to deploy your permission set.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct CustomerManagedPolicyReference {
/// <p>The name of the IAM policy that you have configured in each account where you want to deploy your permission set.</p>
#[doc(hidden)]
pub name: std::option::Option<std::string::String>,
/// <p>The path to the IAM policy that you have configured in each account where you want to deploy your permission set. The default is <code>/</code>. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names">Friendly names and paths</a> in the <i>IAM User Guide</i>.</p>
#[doc(hidden)]
pub path: std::option::Option<std::string::String>,
}
impl CustomerManagedPolicyReference {
/// <p>The name of the IAM policy that you have configured in each account where you want to deploy your permission set.</p>
pub fn name(&self) -> std::option::Option<&str> {
self.name.as_deref()
}
/// <p>The path to the IAM policy that you have configured in each account where you want to deploy your permission set. The default is <code>/</code>. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names">Friendly names and paths</a> in the <i>IAM User Guide</i>.</p>
pub fn path(&self) -> std::option::Option<&str> {
self.path.as_deref()
}
}
/// See [`CustomerManagedPolicyReference`](crate::model::CustomerManagedPolicyReference).
pub mod customer_managed_policy_reference {
/// A builder for [`CustomerManagedPolicyReference`](crate::model::CustomerManagedPolicyReference).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) name: std::option::Option<std::string::String>,
pub(crate) path: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The name of the IAM policy that you have configured in each account where you want to deploy your permission set.</p>
pub fn name(mut self, input: impl Into<std::string::String>) -> Self {
self.name = Some(input.into());
self
}
/// <p>The name of the IAM policy that you have configured in each account where you want to deploy your permission set.</p>
pub fn set_name(mut self, input: std::option::Option<std::string::String>) -> Self {
self.name = input;
self
}
/// <p>The path to the IAM policy that you have configured in each account where you want to deploy your permission set. The default is <code>/</code>. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names">Friendly names and paths</a> in the <i>IAM User Guide</i>.</p>
pub fn path(mut self, input: impl Into<std::string::String>) -> Self {
self.path = Some(input.into());
self
}
/// <p>The path to the IAM policy that you have configured in each account where you want to deploy your permission set. The default is <code>/</code>. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names">Friendly names and paths</a> in the <i>IAM User Guide</i>.</p>
pub fn set_path(mut self, input: std::option::Option<std::string::String>) -> Self {
self.path = input;
self
}
/// Consumes the builder and constructs a [`CustomerManagedPolicyReference`](crate::model::CustomerManagedPolicyReference).
pub fn build(self) -> crate::model::CustomerManagedPolicyReference {
crate::model::CustomerManagedPolicyReference {
name: self.name,
path: self.path,
}
}
}
}
impl CustomerManagedPolicyReference {
/// Creates a new builder-style object to manufacture [`CustomerManagedPolicyReference`](crate::model::CustomerManagedPolicyReference).
pub fn builder() -> crate::model::customer_managed_policy_reference::Builder {
crate::model::customer_managed_policy_reference::Builder::default()
}
}
/// <p>A structure that is used to provide the status of the provisioning operation for a specified permission set.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct PermissionSetProvisioningStatus {
/// <p>The status of the permission set provisioning process.</p>
#[doc(hidden)]
pub status: std::option::Option<crate::model::StatusValues>,
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
#[doc(hidden)]
pub request_id: std::option::Option<std::string::String>,
/// <p>The identifier of the AWS account from which to list the assignments.</p>
#[doc(hidden)]
pub account_id: std::option::Option<std::string::String>,
/// <p>The ARN of the permission set that is being provisioned. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
#[doc(hidden)]
pub permission_set_arn: std::option::Option<std::string::String>,
/// <p>The message that contains an error or exception in case of an operation failure.</p>
#[doc(hidden)]
pub failure_reason: std::option::Option<std::string::String>,
/// <p>The date that the permission set was created.</p>
#[doc(hidden)]
pub created_date: std::option::Option<aws_smithy_types::DateTime>,
}
impl PermissionSetProvisioningStatus {
/// <p>The status of the permission set provisioning process.</p>
pub fn status(&self) -> std::option::Option<&crate::model::StatusValues> {
self.status.as_ref()
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn request_id(&self) -> std::option::Option<&str> {
self.request_id.as_deref()
}
/// <p>The identifier of the AWS account from which to list the assignments.</p>
pub fn account_id(&self) -> std::option::Option<&str> {
self.account_id.as_deref()
}
/// <p>The ARN of the permission set that is being provisioned. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn permission_set_arn(&self) -> std::option::Option<&str> {
self.permission_set_arn.as_deref()
}
/// <p>The message that contains an error or exception in case of an operation failure.</p>
pub fn failure_reason(&self) -> std::option::Option<&str> {
self.failure_reason.as_deref()
}
/// <p>The date that the permission set was created.</p>
pub fn created_date(&self) -> std::option::Option<&aws_smithy_types::DateTime> {
self.created_date.as_ref()
}
}
/// See [`PermissionSetProvisioningStatus`](crate::model::PermissionSetProvisioningStatus).
pub mod permission_set_provisioning_status {
/// A builder for [`PermissionSetProvisioningStatus`](crate::model::PermissionSetProvisioningStatus).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) status: std::option::Option<crate::model::StatusValues>,
pub(crate) request_id: std::option::Option<std::string::String>,
pub(crate) account_id: std::option::Option<std::string::String>,
pub(crate) permission_set_arn: std::option::Option<std::string::String>,
pub(crate) failure_reason: std::option::Option<std::string::String>,
pub(crate) created_date: std::option::Option<aws_smithy_types::DateTime>,
}
impl Builder {
/// <p>The status of the permission set provisioning process.</p>
pub fn status(mut self, input: crate::model::StatusValues) -> Self {
self.status = Some(input);
self
}
/// <p>The status of the permission set provisioning process.</p>
pub fn set_status(
mut self,
input: std::option::Option<crate::model::StatusValues>,
) -> Self {
self.status = input;
self
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn request_id(mut self, input: impl Into<std::string::String>) -> Self {
self.request_id = Some(input.into());
self
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn set_request_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.request_id = input;
self
}
/// <p>The identifier of the AWS account from which to list the assignments.</p>
pub fn account_id(mut self, input: impl Into<std::string::String>) -> Self {
self.account_id = Some(input.into());
self
}
/// <p>The identifier of the AWS account from which to list the assignments.</p>
pub fn set_account_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.account_id = input;
self
}
/// <p>The ARN of the permission set that is being provisioned. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn permission_set_arn(mut self, input: impl Into<std::string::String>) -> Self {
self.permission_set_arn = Some(input.into());
self
}
/// <p>The ARN of the permission set that is being provisioned. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn set_permission_set_arn(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.permission_set_arn = input;
self
}
/// <p>The message that contains an error or exception in case of an operation failure.</p>
pub fn failure_reason(mut self, input: impl Into<std::string::String>) -> Self {
self.failure_reason = Some(input.into());
self
}
/// <p>The message that contains an error or exception in case of an operation failure.</p>
pub fn set_failure_reason(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.failure_reason = input;
self
}
/// <p>The date that the permission set was created.</p>
pub fn created_date(mut self, input: aws_smithy_types::DateTime) -> Self {
self.created_date = Some(input);
self
}
/// <p>The date that the permission set was created.</p>
pub fn set_created_date(
mut self,
input: std::option::Option<aws_smithy_types::DateTime>,
) -> Self {
self.created_date = input;
self
}
/// Consumes the builder and constructs a [`PermissionSetProvisioningStatus`](crate::model::PermissionSetProvisioningStatus).
pub fn build(self) -> crate::model::PermissionSetProvisioningStatus {
crate::model::PermissionSetProvisioningStatus {
status: self.status,
request_id: self.request_id,
account_id: self.account_id,
permission_set_arn: self.permission_set_arn,
failure_reason: self.failure_reason,
created_date: self.created_date,
}
}
}
}
impl PermissionSetProvisioningStatus {
/// Creates a new builder-style object to manufacture [`PermissionSetProvisioningStatus`](crate::model::PermissionSetProvisioningStatus).
pub fn builder() -> crate::model::permission_set_provisioning_status::Builder {
crate::model::permission_set_provisioning_status::Builder::default()
}
}
/// When writing a match expression against `StatusValues`, it is important to ensure
/// your code is forward-compatible. That is, if a match arm handles a case for a
/// feature that is supported by the service but has not been represented as an enum
/// variant in a current version of SDK, your code should continue to work when you
/// upgrade SDK to a future version in which the enum does include a variant for that
/// feature.
///
/// Here is an example of how you can make a match expression forward-compatible:
///
/// ```text
/// # let statusvalues = unimplemented!();
/// match statusvalues {
/// StatusValues::Failed => { /* ... */ },
/// StatusValues::InProgress => { /* ... */ },
/// StatusValues::Succeeded => { /* ... */ },
/// other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
/// _ => { /* ... */ },
/// }
/// ```
/// The above code demonstrates that when `statusvalues` represents
/// `NewFeature`, the execution path will lead to the second last match arm,
/// even though the enum does not contain a variant `StatusValues::NewFeature`
/// in the current version of SDK. The reason is that the variable `other`,
/// created by the `@` operator, is bound to
/// `StatusValues::Unknown(UnknownVariantValue("NewFeature".to_owned()))`
/// and calling `as_str` on it yields `"NewFeature"`.
/// This match expression is forward-compatible when executed with a newer
/// version of SDK where the variant `StatusValues::NewFeature` is defined.
/// Specifically, when `statusvalues` represents `NewFeature`,
/// the execution path will hit the second last match arm as before by virtue of
/// calling `as_str` on `StatusValues::NewFeature` also yielding `"NewFeature"`.
///
/// Explicitly matching on the `Unknown` variant should
/// be avoided for two reasons:
/// - The inner data `UnknownVariantValue` is opaque, and no further information can be extracted.
/// - It might inadvertently shadow other intended match arms.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(
std::clone::Clone,
std::cmp::Eq,
std::cmp::Ord,
std::cmp::PartialEq,
std::cmp::PartialOrd,
std::fmt::Debug,
std::hash::Hash,
)]
pub enum StatusValues {
#[allow(missing_docs)] // documentation missing in model
Failed,
#[allow(missing_docs)] // documentation missing in model
InProgress,
#[allow(missing_docs)] // documentation missing in model
Succeeded,
/// `Unknown` contains new variants that have been added since this code was generated.
Unknown(crate::types::UnknownVariantValue),
}
impl std::convert::From<&str> for StatusValues {
fn from(s: &str) -> Self {
match s {
"FAILED" => StatusValues::Failed,
"IN_PROGRESS" => StatusValues::InProgress,
"SUCCEEDED" => StatusValues::Succeeded,
other => StatusValues::Unknown(crate::types::UnknownVariantValue(other.to_owned())),
}
}
}
impl std::str::FromStr for StatusValues {
type Err = std::convert::Infallible;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(StatusValues::from(s))
}
}
impl StatusValues {
/// Returns the `&str` value of the enum member.
pub fn as_str(&self) -> &str {
match self {
StatusValues::Failed => "FAILED",
StatusValues::InProgress => "IN_PROGRESS",
StatusValues::Succeeded => "SUCCEEDED",
StatusValues::Unknown(value) => value.as_str(),
}
}
/// Returns all the `&str` values of the enum members.
pub const fn values() -> &'static [&'static str] {
&["FAILED", "IN_PROGRESS", "SUCCEEDED"]
}
}
impl AsRef<str> for StatusValues {
fn as_ref(&self) -> &str {
self.as_str()
}
}
/// When writing a match expression against `ProvisionTargetType`, it is important to ensure
/// your code is forward-compatible. That is, if a match arm handles a case for a
/// feature that is supported by the service but has not been represented as an enum
/// variant in a current version of SDK, your code should continue to work when you
/// upgrade SDK to a future version in which the enum does include a variant for that
/// feature.
///
/// Here is an example of how you can make a match expression forward-compatible:
///
/// ```text
/// # let provisiontargettype = unimplemented!();
/// match provisiontargettype {
/// ProvisionTargetType::AllProvisionedAccounts => { /* ... */ },
/// ProvisionTargetType::AwsAccount => { /* ... */ },
/// other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
/// _ => { /* ... */ },
/// }
/// ```
/// The above code demonstrates that when `provisiontargettype` represents
/// `NewFeature`, the execution path will lead to the second last match arm,
/// even though the enum does not contain a variant `ProvisionTargetType::NewFeature`
/// in the current version of SDK. The reason is that the variable `other`,
/// created by the `@` operator, is bound to
/// `ProvisionTargetType::Unknown(UnknownVariantValue("NewFeature".to_owned()))`
/// and calling `as_str` on it yields `"NewFeature"`.
/// This match expression is forward-compatible when executed with a newer
/// version of SDK where the variant `ProvisionTargetType::NewFeature` is defined.
/// Specifically, when `provisiontargettype` represents `NewFeature`,
/// the execution path will hit the second last match arm as before by virtue of
/// calling `as_str` on `ProvisionTargetType::NewFeature` also yielding `"NewFeature"`.
///
/// Explicitly matching on the `Unknown` variant should
/// be avoided for two reasons:
/// - The inner data `UnknownVariantValue` is opaque, and no further information can be extracted.
/// - It might inadvertently shadow other intended match arms.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(
std::clone::Clone,
std::cmp::Eq,
std::cmp::Ord,
std::cmp::PartialEq,
std::cmp::PartialOrd,
std::fmt::Debug,
std::hash::Hash,
)]
pub enum ProvisionTargetType {
#[allow(missing_docs)] // documentation missing in model
AllProvisionedAccounts,
#[allow(missing_docs)] // documentation missing in model
AwsAccount,
/// `Unknown` contains new variants that have been added since this code was generated.
Unknown(crate::types::UnknownVariantValue),
}
impl std::convert::From<&str> for ProvisionTargetType {
fn from(s: &str) -> Self {
match s {
"ALL_PROVISIONED_ACCOUNTS" => ProvisionTargetType::AllProvisionedAccounts,
"AWS_ACCOUNT" => ProvisionTargetType::AwsAccount,
other => {
ProvisionTargetType::Unknown(crate::types::UnknownVariantValue(other.to_owned()))
}
}
}
}
impl std::str::FromStr for ProvisionTargetType {
type Err = std::convert::Infallible;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(ProvisionTargetType::from(s))
}
}
impl ProvisionTargetType {
/// Returns the `&str` value of the enum member.
pub fn as_str(&self) -> &str {
match self {
ProvisionTargetType::AllProvisionedAccounts => "ALL_PROVISIONED_ACCOUNTS",
ProvisionTargetType::AwsAccount => "AWS_ACCOUNT",
ProvisionTargetType::Unknown(value) => value.as_str(),
}
}
/// Returns all the `&str` values of the enum members.
pub const fn values() -> &'static [&'static str] {
&["ALL_PROVISIONED_ACCOUNTS", "AWS_ACCOUNT"]
}
}
impl AsRef<str> for ProvisionTargetType {
fn as_ref(&self) -> &str {
self.as_str()
}
}
/// When writing a match expression against `ProvisioningStatus`, it is important to ensure
/// your code is forward-compatible. That is, if a match arm handles a case for a
/// feature that is supported by the service but has not been represented as an enum
/// variant in a current version of SDK, your code should continue to work when you
/// upgrade SDK to a future version in which the enum does include a variant for that
/// feature.
///
/// Here is an example of how you can make a match expression forward-compatible:
///
/// ```text
/// # let provisioningstatus = unimplemented!();
/// match provisioningstatus {
/// ProvisioningStatus::LatestPermissionSetNotProvisioned => { /* ... */ },
/// ProvisioningStatus::LatestPermissionSetProvisioned => { /* ... */ },
/// other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
/// _ => { /* ... */ },
/// }
/// ```
/// The above code demonstrates that when `provisioningstatus` represents
/// `NewFeature`, the execution path will lead to the second last match arm,
/// even though the enum does not contain a variant `ProvisioningStatus::NewFeature`
/// in the current version of SDK. The reason is that the variable `other`,
/// created by the `@` operator, is bound to
/// `ProvisioningStatus::Unknown(UnknownVariantValue("NewFeature".to_owned()))`
/// and calling `as_str` on it yields `"NewFeature"`.
/// This match expression is forward-compatible when executed with a newer
/// version of SDK where the variant `ProvisioningStatus::NewFeature` is defined.
/// Specifically, when `provisioningstatus` represents `NewFeature`,
/// the execution path will hit the second last match arm as before by virtue of
/// calling `as_str` on `ProvisioningStatus::NewFeature` also yielding `"NewFeature"`.
///
/// Explicitly matching on the `Unknown` variant should
/// be avoided for two reasons:
/// - The inner data `UnknownVariantValue` is opaque, and no further information can be extracted.
/// - It might inadvertently shadow other intended match arms.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(
std::clone::Clone,
std::cmp::Eq,
std::cmp::Ord,
std::cmp::PartialEq,
std::cmp::PartialOrd,
std::fmt::Debug,
std::hash::Hash,
)]
pub enum ProvisioningStatus {
#[allow(missing_docs)] // documentation missing in model
LatestPermissionSetNotProvisioned,
#[allow(missing_docs)] // documentation missing in model
LatestPermissionSetProvisioned,
/// `Unknown` contains new variants that have been added since this code was generated.
Unknown(crate::types::UnknownVariantValue),
}
impl std::convert::From<&str> for ProvisioningStatus {
fn from(s: &str) -> Self {
match s {
"LATEST_PERMISSION_SET_NOT_PROVISIONED" => {
ProvisioningStatus::LatestPermissionSetNotProvisioned
}
"LATEST_PERMISSION_SET_PROVISIONED" => {
ProvisioningStatus::LatestPermissionSetProvisioned
}
other => {
ProvisioningStatus::Unknown(crate::types::UnknownVariantValue(other.to_owned()))
}
}
}
}
impl std::str::FromStr for ProvisioningStatus {
type Err = std::convert::Infallible;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(ProvisioningStatus::from(s))
}
}
impl ProvisioningStatus {
/// Returns the `&str` value of the enum member.
pub fn as_str(&self) -> &str {
match self {
ProvisioningStatus::LatestPermissionSetNotProvisioned => {
"LATEST_PERMISSION_SET_NOT_PROVISIONED"
}
ProvisioningStatus::LatestPermissionSetProvisioned => {
"LATEST_PERMISSION_SET_PROVISIONED"
}
ProvisioningStatus::Unknown(value) => value.as_str(),
}
}
/// Returns all the `&str` values of the enum members.
pub const fn values() -> &'static [&'static str] {
&[
"LATEST_PERMISSION_SET_NOT_PROVISIONED",
"LATEST_PERMISSION_SET_PROVISIONED",
]
}
}
impl AsRef<str> for ProvisioningStatus {
fn as_ref(&self) -> &str {
self.as_str()
}
}
/// <p>Provides information about the permission set provisioning status.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct PermissionSetProvisioningStatusMetadata {
/// <p>The status of the permission set provisioning process.</p>
#[doc(hidden)]
pub status: std::option::Option<crate::model::StatusValues>,
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
#[doc(hidden)]
pub request_id: std::option::Option<std::string::String>,
/// <p>The date that the permission set was created.</p>
#[doc(hidden)]
pub created_date: std::option::Option<aws_smithy_types::DateTime>,
}
impl PermissionSetProvisioningStatusMetadata {
/// <p>The status of the permission set provisioning process.</p>
pub fn status(&self) -> std::option::Option<&crate::model::StatusValues> {
self.status.as_ref()
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn request_id(&self) -> std::option::Option<&str> {
self.request_id.as_deref()
}
/// <p>The date that the permission set was created.</p>
pub fn created_date(&self) -> std::option::Option<&aws_smithy_types::DateTime> {
self.created_date.as_ref()
}
}
/// See [`PermissionSetProvisioningStatusMetadata`](crate::model::PermissionSetProvisioningStatusMetadata).
pub mod permission_set_provisioning_status_metadata {
/// A builder for [`PermissionSetProvisioningStatusMetadata`](crate::model::PermissionSetProvisioningStatusMetadata).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) status: std::option::Option<crate::model::StatusValues>,
pub(crate) request_id: std::option::Option<std::string::String>,
pub(crate) created_date: std::option::Option<aws_smithy_types::DateTime>,
}
impl Builder {
/// <p>The status of the permission set provisioning process.</p>
pub fn status(mut self, input: crate::model::StatusValues) -> Self {
self.status = Some(input);
self
}
/// <p>The status of the permission set provisioning process.</p>
pub fn set_status(
mut self,
input: std::option::Option<crate::model::StatusValues>,
) -> Self {
self.status = input;
self
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn request_id(mut self, input: impl Into<std::string::String>) -> Self {
self.request_id = Some(input.into());
self
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn set_request_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.request_id = input;
self
}
/// <p>The date that the permission set was created.</p>
pub fn created_date(mut self, input: aws_smithy_types::DateTime) -> Self {
self.created_date = Some(input);
self
}
/// <p>The date that the permission set was created.</p>
pub fn set_created_date(
mut self,
input: std::option::Option<aws_smithy_types::DateTime>,
) -> Self {
self.created_date = input;
self
}
/// Consumes the builder and constructs a [`PermissionSetProvisioningStatusMetadata`](crate::model::PermissionSetProvisioningStatusMetadata).
pub fn build(self) -> crate::model::PermissionSetProvisioningStatusMetadata {
crate::model::PermissionSetProvisioningStatusMetadata {
status: self.status,
request_id: self.request_id,
created_date: self.created_date,
}
}
}
}
impl PermissionSetProvisioningStatusMetadata {
/// Creates a new builder-style object to manufacture [`PermissionSetProvisioningStatusMetadata`](crate::model::PermissionSetProvisioningStatusMetadata).
pub fn builder() -> crate::model::permission_set_provisioning_status_metadata::Builder {
crate::model::permission_set_provisioning_status_metadata::Builder::default()
}
}
/// <p>Filters he operation status list based on the passed attribute value.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct OperationStatusFilter {
/// <p>Filters the list operations result based on the status attribute.</p>
#[doc(hidden)]
pub status: std::option::Option<crate::model::StatusValues>,
}
impl OperationStatusFilter {
/// <p>Filters the list operations result based on the status attribute.</p>
pub fn status(&self) -> std::option::Option<&crate::model::StatusValues> {
self.status.as_ref()
}
}
/// See [`OperationStatusFilter`](crate::model::OperationStatusFilter).
pub mod operation_status_filter {
/// A builder for [`OperationStatusFilter`](crate::model::OperationStatusFilter).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) status: std::option::Option<crate::model::StatusValues>,
}
impl Builder {
/// <p>Filters the list operations result based on the status attribute.</p>
pub fn status(mut self, input: crate::model::StatusValues) -> Self {
self.status = Some(input);
self
}
/// <p>Filters the list operations result based on the status attribute.</p>
pub fn set_status(
mut self,
input: std::option::Option<crate::model::StatusValues>,
) -> Self {
self.status = input;
self
}
/// Consumes the builder and constructs a [`OperationStatusFilter`](crate::model::OperationStatusFilter).
pub fn build(self) -> crate::model::OperationStatusFilter {
crate::model::OperationStatusFilter {
status: self.status,
}
}
}
}
impl OperationStatusFilter {
/// Creates a new builder-style object to manufacture [`OperationStatusFilter`](crate::model::OperationStatusFilter).
pub fn builder() -> crate::model::operation_status_filter::Builder {
crate::model::operation_status_filter::Builder::default()
}
}
/// <p>A structure that stores the details of the AWS managed policy.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct AttachedManagedPolicy {
/// <p>The name of the AWS managed policy.</p>
#[doc(hidden)]
pub name: std::option::Option<std::string::String>,
/// <p>The ARN of the AWS managed policy. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
#[doc(hidden)]
pub arn: std::option::Option<std::string::String>,
}
impl AttachedManagedPolicy {
/// <p>The name of the AWS managed policy.</p>
pub fn name(&self) -> std::option::Option<&str> {
self.name.as_deref()
}
/// <p>The ARN of the AWS managed policy. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn arn(&self) -> std::option::Option<&str> {
self.arn.as_deref()
}
}
/// See [`AttachedManagedPolicy`](crate::model::AttachedManagedPolicy).
pub mod attached_managed_policy {
/// A builder for [`AttachedManagedPolicy`](crate::model::AttachedManagedPolicy).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) name: std::option::Option<std::string::String>,
pub(crate) arn: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The name of the AWS managed policy.</p>
pub fn name(mut self, input: impl Into<std::string::String>) -> Self {
self.name = Some(input.into());
self
}
/// <p>The name of the AWS managed policy.</p>
pub fn set_name(mut self, input: std::option::Option<std::string::String>) -> Self {
self.name = input;
self
}
/// <p>The ARN of the AWS managed policy. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn arn(mut self, input: impl Into<std::string::String>) -> Self {
self.arn = Some(input.into());
self
}
/// <p>The ARN of the AWS managed policy. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn set_arn(mut self, input: std::option::Option<std::string::String>) -> Self {
self.arn = input;
self
}
/// Consumes the builder and constructs a [`AttachedManagedPolicy`](crate::model::AttachedManagedPolicy).
pub fn build(self) -> crate::model::AttachedManagedPolicy {
crate::model::AttachedManagedPolicy {
name: self.name,
arn: self.arn,
}
}
}
}
impl AttachedManagedPolicy {
/// Creates a new builder-style object to manufacture [`AttachedManagedPolicy`](crate::model::AttachedManagedPolicy).
pub fn builder() -> crate::model::attached_managed_policy::Builder {
crate::model::attached_managed_policy::Builder::default()
}
}
/// <p>Provides information about the IAM Identity Center instance.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct InstanceMetadata {
/// <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
#[doc(hidden)]
pub instance_arn: std::option::Option<std::string::String>,
/// <p>The identifier of the identity store that is connected to the IAM Identity Center instance.</p>
#[doc(hidden)]
pub identity_store_id: std::option::Option<std::string::String>,
}
impl InstanceMetadata {
/// <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn instance_arn(&self) -> std::option::Option<&str> {
self.instance_arn.as_deref()
}
/// <p>The identifier of the identity store that is connected to the IAM Identity Center instance.</p>
pub fn identity_store_id(&self) -> std::option::Option<&str> {
self.identity_store_id.as_deref()
}
}
/// See [`InstanceMetadata`](crate::model::InstanceMetadata).
pub mod instance_metadata {
/// A builder for [`InstanceMetadata`](crate::model::InstanceMetadata).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) instance_arn: std::option::Option<std::string::String>,
pub(crate) identity_store_id: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn instance_arn(mut self, input: impl Into<std::string::String>) -> Self {
self.instance_arn = Some(input.into());
self
}
/// <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn set_instance_arn(mut self, input: std::option::Option<std::string::String>) -> Self {
self.instance_arn = input;
self
}
/// <p>The identifier of the identity store that is connected to the IAM Identity Center instance.</p>
pub fn identity_store_id(mut self, input: impl Into<std::string::String>) -> Self {
self.identity_store_id = Some(input.into());
self
}
/// <p>The identifier of the identity store that is connected to the IAM Identity Center instance.</p>
pub fn set_identity_store_id(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.identity_store_id = input;
self
}
/// Consumes the builder and constructs a [`InstanceMetadata`](crate::model::InstanceMetadata).
pub fn build(self) -> crate::model::InstanceMetadata {
crate::model::InstanceMetadata {
instance_arn: self.instance_arn,
identity_store_id: self.identity_store_id,
}
}
}
}
impl InstanceMetadata {
/// Creates a new builder-style object to manufacture [`InstanceMetadata`](crate::model::InstanceMetadata).
pub fn builder() -> crate::model::instance_metadata::Builder {
crate::model::instance_metadata::Builder::default()
}
}
/// <p>The assignment that indicates a principal's limited access to a specified AWS account with a specified permission set.</p> <note>
/// <p>The term <i>principal</i> here refers to a user or group that is defined in IAM Identity Center.</p>
/// </note>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct AccountAssignment {
/// <p>The identifier of the AWS account.</p>
#[doc(hidden)]
pub account_id: std::option::Option<std::string::String>,
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
#[doc(hidden)]
pub permission_set_arn: std::option::Option<std::string::String>,
/// <p>The entity type for which the assignment will be created.</p>
#[doc(hidden)]
pub principal_type: std::option::Option<crate::model::PrincipalType>,
/// <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
#[doc(hidden)]
pub principal_id: std::option::Option<std::string::String>,
}
impl AccountAssignment {
/// <p>The identifier of the AWS account.</p>
pub fn account_id(&self) -> std::option::Option<&str> {
self.account_id.as_deref()
}
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn permission_set_arn(&self) -> std::option::Option<&str> {
self.permission_set_arn.as_deref()
}
/// <p>The entity type for which the assignment will be created.</p>
pub fn principal_type(&self) -> std::option::Option<&crate::model::PrincipalType> {
self.principal_type.as_ref()
}
/// <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
pub fn principal_id(&self) -> std::option::Option<&str> {
self.principal_id.as_deref()
}
}
/// See [`AccountAssignment`](crate::model::AccountAssignment).
pub mod account_assignment {
/// A builder for [`AccountAssignment`](crate::model::AccountAssignment).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) account_id: std::option::Option<std::string::String>,
pub(crate) permission_set_arn: std::option::Option<std::string::String>,
pub(crate) principal_type: std::option::Option<crate::model::PrincipalType>,
pub(crate) principal_id: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The identifier of the AWS account.</p>
pub fn account_id(mut self, input: impl Into<std::string::String>) -> Self {
self.account_id = Some(input.into());
self
}
/// <p>The identifier of the AWS account.</p>
pub fn set_account_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.account_id = input;
self
}
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn permission_set_arn(mut self, input: impl Into<std::string::String>) -> Self {
self.permission_set_arn = Some(input.into());
self
}
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn set_permission_set_arn(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.permission_set_arn = input;
self
}
/// <p>The entity type for which the assignment will be created.</p>
pub fn principal_type(mut self, input: crate::model::PrincipalType) -> Self {
self.principal_type = Some(input);
self
}
/// <p>The entity type for which the assignment will be created.</p>
pub fn set_principal_type(
mut self,
input: std::option::Option<crate::model::PrincipalType>,
) -> Self {
self.principal_type = input;
self
}
/// <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
pub fn principal_id(mut self, input: impl Into<std::string::String>) -> Self {
self.principal_id = Some(input.into());
self
}
/// <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
pub fn set_principal_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.principal_id = input;
self
}
/// Consumes the builder and constructs a [`AccountAssignment`](crate::model::AccountAssignment).
pub fn build(self) -> crate::model::AccountAssignment {
crate::model::AccountAssignment {
account_id: self.account_id,
permission_set_arn: self.permission_set_arn,
principal_type: self.principal_type,
principal_id: self.principal_id,
}
}
}
}
impl AccountAssignment {
/// Creates a new builder-style object to manufacture [`AccountAssignment`](crate::model::AccountAssignment).
pub fn builder() -> crate::model::account_assignment::Builder {
crate::model::account_assignment::Builder::default()
}
}
/// When writing a match expression against `PrincipalType`, it is important to ensure
/// your code is forward-compatible. That is, if a match arm handles a case for a
/// feature that is supported by the service but has not been represented as an enum
/// variant in a current version of SDK, your code should continue to work when you
/// upgrade SDK to a future version in which the enum does include a variant for that
/// feature.
///
/// Here is an example of how you can make a match expression forward-compatible:
///
/// ```text
/// # let principaltype = unimplemented!();
/// match principaltype {
/// PrincipalType::Group => { /* ... */ },
/// PrincipalType::User => { /* ... */ },
/// other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
/// _ => { /* ... */ },
/// }
/// ```
/// The above code demonstrates that when `principaltype` represents
/// `NewFeature`, the execution path will lead to the second last match arm,
/// even though the enum does not contain a variant `PrincipalType::NewFeature`
/// in the current version of SDK. The reason is that the variable `other`,
/// created by the `@` operator, is bound to
/// `PrincipalType::Unknown(UnknownVariantValue("NewFeature".to_owned()))`
/// and calling `as_str` on it yields `"NewFeature"`.
/// This match expression is forward-compatible when executed with a newer
/// version of SDK where the variant `PrincipalType::NewFeature` is defined.
/// Specifically, when `principaltype` represents `NewFeature`,
/// the execution path will hit the second last match arm as before by virtue of
/// calling `as_str` on `PrincipalType::NewFeature` also yielding `"NewFeature"`.
///
/// Explicitly matching on the `Unknown` variant should
/// be avoided for two reasons:
/// - The inner data `UnknownVariantValue` is opaque, and no further information can be extracted.
/// - It might inadvertently shadow other intended match arms.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(
std::clone::Clone,
std::cmp::Eq,
std::cmp::Ord,
std::cmp::PartialEq,
std::cmp::PartialOrd,
std::fmt::Debug,
std::hash::Hash,
)]
pub enum PrincipalType {
#[allow(missing_docs)] // documentation missing in model
Group,
#[allow(missing_docs)] // documentation missing in model
User,
/// `Unknown` contains new variants that have been added since this code was generated.
Unknown(crate::types::UnknownVariantValue),
}
impl std::convert::From<&str> for PrincipalType {
fn from(s: &str) -> Self {
match s {
"GROUP" => PrincipalType::Group,
"USER" => PrincipalType::User,
other => PrincipalType::Unknown(crate::types::UnknownVariantValue(other.to_owned())),
}
}
}
impl std::str::FromStr for PrincipalType {
type Err = std::convert::Infallible;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(PrincipalType::from(s))
}
}
impl PrincipalType {
/// Returns the `&str` value of the enum member.
pub fn as_str(&self) -> &str {
match self {
PrincipalType::Group => "GROUP",
PrincipalType::User => "USER",
PrincipalType::Unknown(value) => value.as_str(),
}
}
/// Returns all the `&str` values of the enum members.
pub const fn values() -> &'static [&'static str] {
&["GROUP", "USER"]
}
}
impl AsRef<str> for PrincipalType {
fn as_ref(&self) -> &str {
self.as_str()
}
}
/// <p>Provides information about the <code>AccountAssignment</code> creation request.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct AccountAssignmentOperationStatusMetadata {
/// <p>The status of the permission set provisioning process.</p>
#[doc(hidden)]
pub status: std::option::Option<crate::model::StatusValues>,
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
#[doc(hidden)]
pub request_id: std::option::Option<std::string::String>,
/// <p>The date that the permission set was created.</p>
#[doc(hidden)]
pub created_date: std::option::Option<aws_smithy_types::DateTime>,
}
impl AccountAssignmentOperationStatusMetadata {
/// <p>The status of the permission set provisioning process.</p>
pub fn status(&self) -> std::option::Option<&crate::model::StatusValues> {
self.status.as_ref()
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn request_id(&self) -> std::option::Option<&str> {
self.request_id.as_deref()
}
/// <p>The date that the permission set was created.</p>
pub fn created_date(&self) -> std::option::Option<&aws_smithy_types::DateTime> {
self.created_date.as_ref()
}
}
/// See [`AccountAssignmentOperationStatusMetadata`](crate::model::AccountAssignmentOperationStatusMetadata).
pub mod account_assignment_operation_status_metadata {
/// A builder for [`AccountAssignmentOperationStatusMetadata`](crate::model::AccountAssignmentOperationStatusMetadata).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) status: std::option::Option<crate::model::StatusValues>,
pub(crate) request_id: std::option::Option<std::string::String>,
pub(crate) created_date: std::option::Option<aws_smithy_types::DateTime>,
}
impl Builder {
/// <p>The status of the permission set provisioning process.</p>
pub fn status(mut self, input: crate::model::StatusValues) -> Self {
self.status = Some(input);
self
}
/// <p>The status of the permission set provisioning process.</p>
pub fn set_status(
mut self,
input: std::option::Option<crate::model::StatusValues>,
) -> Self {
self.status = input;
self
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn request_id(mut self, input: impl Into<std::string::String>) -> Self {
self.request_id = Some(input.into());
self
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn set_request_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.request_id = input;
self
}
/// <p>The date that the permission set was created.</p>
pub fn created_date(mut self, input: aws_smithy_types::DateTime) -> Self {
self.created_date = Some(input);
self
}
/// <p>The date that the permission set was created.</p>
pub fn set_created_date(
mut self,
input: std::option::Option<aws_smithy_types::DateTime>,
) -> Self {
self.created_date = input;
self
}
/// Consumes the builder and constructs a [`AccountAssignmentOperationStatusMetadata`](crate::model::AccountAssignmentOperationStatusMetadata).
pub fn build(self) -> crate::model::AccountAssignmentOperationStatusMetadata {
crate::model::AccountAssignmentOperationStatusMetadata {
status: self.status,
request_id: self.request_id,
created_date: self.created_date,
}
}
}
}
impl AccountAssignmentOperationStatusMetadata {
/// Creates a new builder-style object to manufacture [`AccountAssignmentOperationStatusMetadata`](crate::model::AccountAssignmentOperationStatusMetadata).
pub fn builder() -> crate::model::account_assignment_operation_status_metadata::Builder {
crate::model::account_assignment_operation_status_metadata::Builder::default()
}
}
/// <p>An entity that contains IAM policies.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct PermissionSet {
/// <p>The name of the permission set.</p>
#[doc(hidden)]
pub name: std::option::Option<std::string::String>,
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
#[doc(hidden)]
pub permission_set_arn: std::option::Option<std::string::String>,
/// <p>The description of the <code>PermissionSet</code>.</p>
#[doc(hidden)]
pub description: std::option::Option<std::string::String>,
/// <p>The date that the permission set was created.</p>
#[doc(hidden)]
pub created_date: std::option::Option<aws_smithy_types::DateTime>,
/// <p>The length of time that the application user sessions are valid for in the ISO-8601 standard.</p>
#[doc(hidden)]
pub session_duration: std::option::Option<std::string::String>,
/// <p>Used to redirect users within the application during the federation authentication process.</p>
#[doc(hidden)]
pub relay_state: std::option::Option<std::string::String>,
}
impl PermissionSet {
/// <p>The name of the permission set.</p>
pub fn name(&self) -> std::option::Option<&str> {
self.name.as_deref()
}
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn permission_set_arn(&self) -> std::option::Option<&str> {
self.permission_set_arn.as_deref()
}
/// <p>The description of the <code>PermissionSet</code>.</p>
pub fn description(&self) -> std::option::Option<&str> {
self.description.as_deref()
}
/// <p>The date that the permission set was created.</p>
pub fn created_date(&self) -> std::option::Option<&aws_smithy_types::DateTime> {
self.created_date.as_ref()
}
/// <p>The length of time that the application user sessions are valid for in the ISO-8601 standard.</p>
pub fn session_duration(&self) -> std::option::Option<&str> {
self.session_duration.as_deref()
}
/// <p>Used to redirect users within the application during the federation authentication process.</p>
pub fn relay_state(&self) -> std::option::Option<&str> {
self.relay_state.as_deref()
}
}
/// See [`PermissionSet`](crate::model::PermissionSet).
pub mod permission_set {
/// A builder for [`PermissionSet`](crate::model::PermissionSet).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) name: std::option::Option<std::string::String>,
pub(crate) permission_set_arn: std::option::Option<std::string::String>,
pub(crate) description: std::option::Option<std::string::String>,
pub(crate) created_date: std::option::Option<aws_smithy_types::DateTime>,
pub(crate) session_duration: std::option::Option<std::string::String>,
pub(crate) relay_state: std::option::Option<std::string::String>,
}
impl Builder {
/// <p>The name of the permission set.</p>
pub fn name(mut self, input: impl Into<std::string::String>) -> Self {
self.name = Some(input.into());
self
}
/// <p>The name of the permission set.</p>
pub fn set_name(mut self, input: std::option::Option<std::string::String>) -> Self {
self.name = input;
self
}
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn permission_set_arn(mut self, input: impl Into<std::string::String>) -> Self {
self.permission_set_arn = Some(input.into());
self
}
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn set_permission_set_arn(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.permission_set_arn = input;
self
}
/// <p>The description of the <code>PermissionSet</code>.</p>
pub fn description(mut self, input: impl Into<std::string::String>) -> Self {
self.description = Some(input.into());
self
}
/// <p>The description of the <code>PermissionSet</code>.</p>
pub fn set_description(mut self, input: std::option::Option<std::string::String>) -> Self {
self.description = input;
self
}
/// <p>The date that the permission set was created.</p>
pub fn created_date(mut self, input: aws_smithy_types::DateTime) -> Self {
self.created_date = Some(input);
self
}
/// <p>The date that the permission set was created.</p>
pub fn set_created_date(
mut self,
input: std::option::Option<aws_smithy_types::DateTime>,
) -> Self {
self.created_date = input;
self
}
/// <p>The length of time that the application user sessions are valid for in the ISO-8601 standard.</p>
pub fn session_duration(mut self, input: impl Into<std::string::String>) -> Self {
self.session_duration = Some(input.into());
self
}
/// <p>The length of time that the application user sessions are valid for in the ISO-8601 standard.</p>
pub fn set_session_duration(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.session_duration = input;
self
}
/// <p>Used to redirect users within the application during the federation authentication process.</p>
pub fn relay_state(mut self, input: impl Into<std::string::String>) -> Self {
self.relay_state = Some(input.into());
self
}
/// <p>Used to redirect users within the application during the federation authentication process.</p>
pub fn set_relay_state(mut self, input: std::option::Option<std::string::String>) -> Self {
self.relay_state = input;
self
}
/// Consumes the builder and constructs a [`PermissionSet`](crate::model::PermissionSet).
pub fn build(self) -> crate::model::PermissionSet {
crate::model::PermissionSet {
name: self.name,
permission_set_arn: self.permission_set_arn,
description: self.description,
created_date: self.created_date,
session_duration: self.session_duration,
relay_state: self.relay_state,
}
}
}
}
impl PermissionSet {
/// Creates a new builder-style object to manufacture [`PermissionSet`](crate::model::PermissionSet).
pub fn builder() -> crate::model::permission_set::Builder {
crate::model::permission_set::Builder::default()
}
}
/// When writing a match expression against `InstanceAccessControlAttributeConfigurationStatus`, it is important to ensure
/// your code is forward-compatible. That is, if a match arm handles a case for a
/// feature that is supported by the service but has not been represented as an enum
/// variant in a current version of SDK, your code should continue to work when you
/// upgrade SDK to a future version in which the enum does include a variant for that
/// feature.
///
/// Here is an example of how you can make a match expression forward-compatible:
///
/// ```text
/// # let instanceaccesscontrolattributeconfigurationstatus = unimplemented!();
/// match instanceaccesscontrolattributeconfigurationstatus {
/// InstanceAccessControlAttributeConfigurationStatus::CreationFailed => { /* ... */ },
/// InstanceAccessControlAttributeConfigurationStatus::CreationInProgress => { /* ... */ },
/// InstanceAccessControlAttributeConfigurationStatus::Enabled => { /* ... */ },
/// other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
/// _ => { /* ... */ },
/// }
/// ```
/// The above code demonstrates that when `instanceaccesscontrolattributeconfigurationstatus` represents
/// `NewFeature`, the execution path will lead to the second last match arm,
/// even though the enum does not contain a variant `InstanceAccessControlAttributeConfigurationStatus::NewFeature`
/// in the current version of SDK. The reason is that the variable `other`,
/// created by the `@` operator, is bound to
/// `InstanceAccessControlAttributeConfigurationStatus::Unknown(UnknownVariantValue("NewFeature".to_owned()))`
/// and calling `as_str` on it yields `"NewFeature"`.
/// This match expression is forward-compatible when executed with a newer
/// version of SDK where the variant `InstanceAccessControlAttributeConfigurationStatus::NewFeature` is defined.
/// Specifically, when `instanceaccesscontrolattributeconfigurationstatus` represents `NewFeature`,
/// the execution path will hit the second last match arm as before by virtue of
/// calling `as_str` on `InstanceAccessControlAttributeConfigurationStatus::NewFeature` also yielding `"NewFeature"`.
///
/// Explicitly matching on the `Unknown` variant should
/// be avoided for two reasons:
/// - The inner data `UnknownVariantValue` is opaque, and no further information can be extracted.
/// - It might inadvertently shadow other intended match arms.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(
std::clone::Clone,
std::cmp::Eq,
std::cmp::Ord,
std::cmp::PartialEq,
std::cmp::PartialOrd,
std::fmt::Debug,
std::hash::Hash,
)]
pub enum InstanceAccessControlAttributeConfigurationStatus {
#[allow(missing_docs)] // documentation missing in model
CreationFailed,
#[allow(missing_docs)] // documentation missing in model
CreationInProgress,
#[allow(missing_docs)] // documentation missing in model
Enabled,
/// `Unknown` contains new variants that have been added since this code was generated.
Unknown(crate::types::UnknownVariantValue),
}
impl std::convert::From<&str> for InstanceAccessControlAttributeConfigurationStatus {
fn from(s: &str) -> Self {
match s {
"CREATION_FAILED" => InstanceAccessControlAttributeConfigurationStatus::CreationFailed,
"CREATION_IN_PROGRESS" => {
InstanceAccessControlAttributeConfigurationStatus::CreationInProgress
}
"ENABLED" => InstanceAccessControlAttributeConfigurationStatus::Enabled,
other => InstanceAccessControlAttributeConfigurationStatus::Unknown(
crate::types::UnknownVariantValue(other.to_owned()),
),
}
}
}
impl std::str::FromStr for InstanceAccessControlAttributeConfigurationStatus {
type Err = std::convert::Infallible;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(InstanceAccessControlAttributeConfigurationStatus::from(s))
}
}
impl InstanceAccessControlAttributeConfigurationStatus {
/// Returns the `&str` value of the enum member.
pub fn as_str(&self) -> &str {
match self {
InstanceAccessControlAttributeConfigurationStatus::CreationFailed => "CREATION_FAILED",
InstanceAccessControlAttributeConfigurationStatus::CreationInProgress => {
"CREATION_IN_PROGRESS"
}
InstanceAccessControlAttributeConfigurationStatus::Enabled => "ENABLED",
InstanceAccessControlAttributeConfigurationStatus::Unknown(value) => value.as_str(),
}
}
/// Returns all the `&str` values of the enum members.
pub const fn values() -> &'static [&'static str] {
&["CREATION_FAILED", "CREATION_IN_PROGRESS", "ENABLED"]
}
}
impl AsRef<str> for InstanceAccessControlAttributeConfigurationStatus {
fn as_ref(&self) -> &str {
self.as_str()
}
}
/// <p>The status of the creation or deletion operation of an assignment that a principal needs to access an account.</p>
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct AccountAssignmentOperationStatus {
/// <p>The status of the permission set provisioning process.</p>
#[doc(hidden)]
pub status: std::option::Option<crate::model::StatusValues>,
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
#[doc(hidden)]
pub request_id: std::option::Option<std::string::String>,
/// <p>The message that contains an error or exception in case of an operation failure.</p>
#[doc(hidden)]
pub failure_reason: std::option::Option<std::string::String>,
/// <p>TargetID is an AWS account identifier, typically a 10-12 digit string (For example, 123456789012).</p>
#[doc(hidden)]
pub target_id: std::option::Option<std::string::String>,
/// <p>The entity type for which the assignment will be created.</p>
#[doc(hidden)]
pub target_type: std::option::Option<crate::model::TargetType>,
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
#[doc(hidden)]
pub permission_set_arn: std::option::Option<std::string::String>,
/// <p>The entity type for which the assignment will be created.</p>
#[doc(hidden)]
pub principal_type: std::option::Option<crate::model::PrincipalType>,
/// <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
#[doc(hidden)]
pub principal_id: std::option::Option<std::string::String>,
/// <p>The date that the permission set was created.</p>
#[doc(hidden)]
pub created_date: std::option::Option<aws_smithy_types::DateTime>,
}
impl AccountAssignmentOperationStatus {
/// <p>The status of the permission set provisioning process.</p>
pub fn status(&self) -> std::option::Option<&crate::model::StatusValues> {
self.status.as_ref()
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn request_id(&self) -> std::option::Option<&str> {
self.request_id.as_deref()
}
/// <p>The message that contains an error or exception in case of an operation failure.</p>
pub fn failure_reason(&self) -> std::option::Option<&str> {
self.failure_reason.as_deref()
}
/// <p>TargetID is an AWS account identifier, typically a 10-12 digit string (For example, 123456789012).</p>
pub fn target_id(&self) -> std::option::Option<&str> {
self.target_id.as_deref()
}
/// <p>The entity type for which the assignment will be created.</p>
pub fn target_type(&self) -> std::option::Option<&crate::model::TargetType> {
self.target_type.as_ref()
}
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn permission_set_arn(&self) -> std::option::Option<&str> {
self.permission_set_arn.as_deref()
}
/// <p>The entity type for which the assignment will be created.</p>
pub fn principal_type(&self) -> std::option::Option<&crate::model::PrincipalType> {
self.principal_type.as_ref()
}
/// <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
pub fn principal_id(&self) -> std::option::Option<&str> {
self.principal_id.as_deref()
}
/// <p>The date that the permission set was created.</p>
pub fn created_date(&self) -> std::option::Option<&aws_smithy_types::DateTime> {
self.created_date.as_ref()
}
}
/// See [`AccountAssignmentOperationStatus`](crate::model::AccountAssignmentOperationStatus).
pub mod account_assignment_operation_status {
/// A builder for [`AccountAssignmentOperationStatus`](crate::model::AccountAssignmentOperationStatus).
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct Builder {
pub(crate) status: std::option::Option<crate::model::StatusValues>,
pub(crate) request_id: std::option::Option<std::string::String>,
pub(crate) failure_reason: std::option::Option<std::string::String>,
pub(crate) target_id: std::option::Option<std::string::String>,
pub(crate) target_type: std::option::Option<crate::model::TargetType>,
pub(crate) permission_set_arn: std::option::Option<std::string::String>,
pub(crate) principal_type: std::option::Option<crate::model::PrincipalType>,
pub(crate) principal_id: std::option::Option<std::string::String>,
pub(crate) created_date: std::option::Option<aws_smithy_types::DateTime>,
}
impl Builder {
/// <p>The status of the permission set provisioning process.</p>
pub fn status(mut self, input: crate::model::StatusValues) -> Self {
self.status = Some(input);
self
}
/// <p>The status of the permission set provisioning process.</p>
pub fn set_status(
mut self,
input: std::option::Option<crate::model::StatusValues>,
) -> Self {
self.status = input;
self
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn request_id(mut self, input: impl Into<std::string::String>) -> Self {
self.request_id = Some(input.into());
self
}
/// <p>The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.</p>
pub fn set_request_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.request_id = input;
self
}
/// <p>The message that contains an error or exception in case of an operation failure.</p>
pub fn failure_reason(mut self, input: impl Into<std::string::String>) -> Self {
self.failure_reason = Some(input.into());
self
}
/// <p>The message that contains an error or exception in case of an operation failure.</p>
pub fn set_failure_reason(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.failure_reason = input;
self
}
/// <p>TargetID is an AWS account identifier, typically a 10-12 digit string (For example, 123456789012).</p>
pub fn target_id(mut self, input: impl Into<std::string::String>) -> Self {
self.target_id = Some(input.into());
self
}
/// <p>TargetID is an AWS account identifier, typically a 10-12 digit string (For example, 123456789012).</p>
pub fn set_target_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.target_id = input;
self
}
/// <p>The entity type for which the assignment will be created.</p>
pub fn target_type(mut self, input: crate::model::TargetType) -> Self {
self.target_type = Some(input);
self
}
/// <p>The entity type for which the assignment will be created.</p>
pub fn set_target_type(
mut self,
input: std::option::Option<crate::model::TargetType>,
) -> Self {
self.target_type = input;
self
}
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn permission_set_arn(mut self, input: impl Into<std::string::String>) -> Self {
self.permission_set_arn = Some(input.into());
self
}
/// <p>The ARN of the permission set. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a> in the <i>AWS General Reference</i>.</p>
pub fn set_permission_set_arn(
mut self,
input: std::option::Option<std::string::String>,
) -> Self {
self.permission_set_arn = input;
self
}
/// <p>The entity type for which the assignment will be created.</p>
pub fn principal_type(mut self, input: crate::model::PrincipalType) -> Self {
self.principal_type = Some(input);
self
}
/// <p>The entity type for which the assignment will be created.</p>
pub fn set_principal_type(
mut self,
input: std::option::Option<crate::model::PrincipalType>,
) -> Self {
self.principal_type = input;
self
}
/// <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
pub fn principal_id(mut self, input: impl Into<std::string::String>) -> Self {
self.principal_id = Some(input.into());
self
}
/// <p>An identifier for an object in IAM Identity Center, such as a user or group. PrincipalIds are GUIDs (For example, f81d4fae-7dec-11d0-a765-00a0c91e6bf6). For more information about PrincipalIds in IAM Identity Center, see the <a href="/singlesignon/latest/IdentityStoreAPIReference/welcome.html">IAM Identity Center Identity Store API Reference</a>.</p>
pub fn set_principal_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.principal_id = input;
self
}
/// <p>The date that the permission set was created.</p>
pub fn created_date(mut self, input: aws_smithy_types::DateTime) -> Self {
self.created_date = Some(input);
self
}
/// <p>The date that the permission set was created.</p>
pub fn set_created_date(
mut self,
input: std::option::Option<aws_smithy_types::DateTime>,
) -> Self {
self.created_date = input;
self
}
/// Consumes the builder and constructs a [`AccountAssignmentOperationStatus`](crate::model::AccountAssignmentOperationStatus).
pub fn build(self) -> crate::model::AccountAssignmentOperationStatus {
crate::model::AccountAssignmentOperationStatus {
status: self.status,
request_id: self.request_id,
failure_reason: self.failure_reason,
target_id: self.target_id,
target_type: self.target_type,
permission_set_arn: self.permission_set_arn,
principal_type: self.principal_type,
principal_id: self.principal_id,
created_date: self.created_date,
}
}
}
}
impl AccountAssignmentOperationStatus {
/// Creates a new builder-style object to manufacture [`AccountAssignmentOperationStatus`](crate::model::AccountAssignmentOperationStatus).
pub fn builder() -> crate::model::account_assignment_operation_status::Builder {
crate::model::account_assignment_operation_status::Builder::default()
}
}
/// When writing a match expression against `TargetType`, it is important to ensure
/// your code is forward-compatible. That is, if a match arm handles a case for a
/// feature that is supported by the service but has not been represented as an enum
/// variant in a current version of SDK, your code should continue to work when you
/// upgrade SDK to a future version in which the enum does include a variant for that
/// feature.
///
/// Here is an example of how you can make a match expression forward-compatible:
///
/// ```text
/// # let targettype = unimplemented!();
/// match targettype {
/// TargetType::AwsAccount => { /* ... */ },
/// other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
/// _ => { /* ... */ },
/// }
/// ```
/// The above code demonstrates that when `targettype` represents
/// `NewFeature`, the execution path will lead to the second last match arm,
/// even though the enum does not contain a variant `TargetType::NewFeature`
/// in the current version of SDK. The reason is that the variable `other`,
/// created by the `@` operator, is bound to
/// `TargetType::Unknown(UnknownVariantValue("NewFeature".to_owned()))`
/// and calling `as_str` on it yields `"NewFeature"`.
/// This match expression is forward-compatible when executed with a newer
/// version of SDK where the variant `TargetType::NewFeature` is defined.
/// Specifically, when `targettype` represents `NewFeature`,
/// the execution path will hit the second last match arm as before by virtue of
/// calling `as_str` on `TargetType::NewFeature` also yielding `"NewFeature"`.
///
/// Explicitly matching on the `Unknown` variant should
/// be avoided for two reasons:
/// - The inner data `UnknownVariantValue` is opaque, and no further information can be extracted.
/// - It might inadvertently shadow other intended match arms.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(
std::clone::Clone,
std::cmp::Eq,
std::cmp::Ord,
std::cmp::PartialEq,
std::cmp::PartialOrd,
std::fmt::Debug,
std::hash::Hash,
)]
pub enum TargetType {
#[allow(missing_docs)] // documentation missing in model
AwsAccount,
/// `Unknown` contains new variants that have been added since this code was generated.
Unknown(crate::types::UnknownVariantValue),
}
impl std::convert::From<&str> for TargetType {
fn from(s: &str) -> Self {
match s {
"AWS_ACCOUNT" => TargetType::AwsAccount,
other => TargetType::Unknown(crate::types::UnknownVariantValue(other.to_owned())),
}
}
}
impl std::str::FromStr for TargetType {
type Err = std::convert::Infallible;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(TargetType::from(s))
}
}
impl TargetType {
/// Returns the `&str` value of the enum member.
pub fn as_str(&self) -> &str {
match self {
TargetType::AwsAccount => "AWS_ACCOUNT",
TargetType::Unknown(value) => value.as_str(),
}
}
/// Returns all the `&str` values of the enum members.
pub const fn values() -> &'static [&'static str] {
&["AWS_ACCOUNT"]
}
}
impl AsRef<str> for TargetType {
fn as_ref(&self) -> &str {
self.as_str()
}
}