1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Contains information about actions that define permissions to check against a
// policy.
type Access struct {
// A list of actions for the access permissions.
//
// This member is required.
Actions []string
noSmithyDocumentSerde
}
// Contains information about an access preview.
type AccessPreview struct {
// The ARN of the analyzer used to generate the access preview.
//
// This member is required.
AnalyzerArn *string
// A map of resource ARNs for the proposed resource configuration.
//
// This member is required.
Configurations map[string]Configuration
// The time at which the access preview was created.
//
// This member is required.
CreatedAt *time.Time
// The unique ID for the access preview.
//
// This member is required.
Id *string
// The status of the access preview.
// - Creating - The access preview creation is in progress.
// - Completed - The access preview is complete. You can preview findings for
// external access to the resource.
// - Failed - The access preview creation has failed.
//
// This member is required.
Status AccessPreviewStatus
// Provides more details about the current status of the access preview. For
// example, if the creation of the access preview fails, a Failed status is
// returned. This failure can be due to an internal issue with the analysis or due
// to an invalid resource configuration.
StatusReason *AccessPreviewStatusReason
noSmithyDocumentSerde
}
// An access preview finding generated by the access preview.
type AccessPreviewFinding struct {
// Provides context on how the access preview finding compares to existing access
// identified in IAM Access Analyzer.
// - New - The finding is for newly-introduced access.
// - Unchanged - The preview finding is an existing finding that would remain
// unchanged.
// - Changed - The preview finding is an existing finding with a change in
// status.
// For example, a Changed finding with preview status Resolved and existing status
// Active indicates the existing Active finding would become Resolved as a result
// of the proposed permissions change.
//
// This member is required.
ChangeType FindingChangeType
// The time at which the access preview finding was created.
//
// This member is required.
CreatedAt *time.Time
// The ID of the access preview finding. This ID uniquely identifies the element
// in the list of access preview findings and is not related to the finding ID in
// Access Analyzer.
//
// This member is required.
Id *string
// The Amazon Web Services account ID that owns the resource. For most Amazon Web
// Services resources, the owning account is the account in which the resource was
// created.
//
// This member is required.
ResourceOwnerAccount *string
// The type of the resource that can be accessed in the finding.
//
// This member is required.
ResourceType ResourceType
// The preview status of the finding. This is what the status of the finding would
// be after permissions deployment. For example, a Changed finding with preview
// status Resolved and existing status Active indicates the existing Active
// finding would become Resolved as a result of the proposed permissions change.
//
// This member is required.
Status FindingStatus
// The action in the analyzed policy statement that an external principal has
// permission to perform.
Action []string
// The condition in the analyzed policy statement that resulted in a finding.
Condition map[string]string
// An error.
Error *string
// The existing ID of the finding in IAM Access Analyzer, provided only for
// existing findings.
ExistingFindingId *string
// The existing status of the finding, provided only for existing findings.
ExistingFindingStatus FindingStatus
// Indicates whether the policy that generated the finding allows public access to
// the resource.
IsPublic *bool
// The external principal that has access to a resource within the zone of trust.
Principal map[string]string
// The resource that an external principal has access to. This is the resource
// associated with the access preview.
Resource *string
// The sources of the finding. This indicates how the access that generated the
// finding is granted. It is populated for Amazon S3 bucket findings.
Sources []FindingSource
noSmithyDocumentSerde
}
// Provides more details about the current status of the access preview. For
// example, if the creation of the access preview fails, a Failed status is
// returned. This failure can be due to an internal issue with the analysis or due
// to an invalid proposed resource configuration.
type AccessPreviewStatusReason struct {
// The reason code for the current status of the access preview.
//
// This member is required.
Code AccessPreviewStatusReasonCode
noSmithyDocumentSerde
}
// Contains a summary of information about an access preview.
type AccessPreviewSummary struct {
// The ARN of the analyzer used to generate the access preview.
//
// This member is required.
AnalyzerArn *string
// The time at which the access preview was created.
//
// This member is required.
CreatedAt *time.Time
// The unique ID for the access preview.
//
// This member is required.
Id *string
// The status of the access preview.
// - Creating - The access preview creation is in progress.
// - Completed - The access preview is complete and previews the findings for
// external access to the resource.
// - Failed - The access preview creation has failed.
//
// This member is required.
Status AccessPreviewStatus
// Provides more details about the current status of the access preview. For
// example, if the creation of the access preview fails, a Failed status is
// returned. This failure can be due to an internal issue with the analysis or due
// to an invalid proposed resource configuration.
StatusReason *AccessPreviewStatusReason
noSmithyDocumentSerde
}
// You specify each grantee as a type-value pair using one of these types. You can
// specify only one type of grantee. For more information, see PutBucketAcl (https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAcl.html)
// .
//
// The following types satisfy this interface:
//
// AclGranteeMemberId
// AclGranteeMemberUri
type AclGrantee interface {
isAclGrantee()
}
// The value specified is the canonical user ID of an Amazon Web Services account.
type AclGranteeMemberId struct {
Value string
noSmithyDocumentSerde
}
func (*AclGranteeMemberId) isAclGrantee() {}
// Used for granting permissions to a predefined group.
type AclGranteeMemberUri struct {
Value string
noSmithyDocumentSerde
}
func (*AclGranteeMemberUri) isAclGrantee() {}
// Contains details about the analyzed resource.
type AnalyzedResource struct {
// The time at which the resource was analyzed.
//
// This member is required.
AnalyzedAt *time.Time
// The time at which the finding was created.
//
// This member is required.
CreatedAt *time.Time
// Indicates whether the policy that generated the finding grants public access to
// the resource.
//
// This member is required.
IsPublic *bool
// The ARN of the resource that was analyzed.
//
// This member is required.
ResourceArn *string
// The Amazon Web Services account ID that owns the resource.
//
// This member is required.
ResourceOwnerAccount *string
// The type of the resource that was analyzed.
//
// This member is required.
ResourceType ResourceType
// The time at which the finding was updated.
//
// This member is required.
UpdatedAt *time.Time
// The actions that an external principal is granted permission to use by the
// policy that generated the finding.
Actions []string
// An error message.
Error *string
// Indicates how the access that generated the finding is granted. This is
// populated for Amazon S3 bucket findings.
SharedVia []string
// The current status of the finding generated from the analyzed resource.
Status FindingStatus
noSmithyDocumentSerde
}
// Contains the ARN of the analyzed resource.
type AnalyzedResourceSummary struct {
// The ARN of the analyzed resource.
//
// This member is required.
ResourceArn *string
// The Amazon Web Services account ID that owns the resource.
//
// This member is required.
ResourceOwnerAccount *string
// The type of resource that was analyzed.
//
// This member is required.
ResourceType ResourceType
noSmithyDocumentSerde
}
// Contains information about the configuration of an unused access analyzer for
// an Amazon Web Services organization or account.
//
// The following types satisfy this interface:
//
// AnalyzerConfigurationMemberUnusedAccess
type AnalyzerConfiguration interface {
isAnalyzerConfiguration()
}
// Specifies the configuration of an unused access analyzer for an Amazon Web
// Services organization or account. External access analyzers do not support any
// configuration.
type AnalyzerConfigurationMemberUnusedAccess struct {
Value UnusedAccessConfiguration
noSmithyDocumentSerde
}
func (*AnalyzerConfigurationMemberUnusedAccess) isAnalyzerConfiguration() {}
// Contains information about the analyzer.
type AnalyzerSummary struct {
// The ARN of the analyzer.
//
// This member is required.
Arn *string
// A timestamp for the time at which the analyzer was created.
//
// This member is required.
CreatedAt *time.Time
// The name of the analyzer.
//
// This member is required.
Name *string
// The status of the analyzer. An Active analyzer successfully monitors supported
// resources and generates new findings. The analyzer is Disabled when a user
// action, such as removing trusted access for Identity and Access Management
// Access Analyzer from Organizations, causes the analyzer to stop generating new
// findings. The status is Creating when the analyzer creation is in progress and
// Failed when the analyzer creation has failed.
//
// This member is required.
Status AnalyzerStatus
// The type of analyzer, which corresponds to the zone of trust chosen for the
// analyzer.
//
// This member is required.
Type Type
// Specifies whether the analyzer is an external access or unused access analyzer.
Configuration AnalyzerConfiguration
// The resource that was most recently analyzed by the analyzer.
LastResourceAnalyzed *string
// The time at which the most recently analyzed resource was analyzed.
LastResourceAnalyzedAt *time.Time
// The statusReason provides more details about the current status of the
// analyzer. For example, if the creation for the analyzer fails, a Failed status
// is returned. For an analyzer with organization as the type, this failure can be
// due to an issue with creating the service-linked roles required in the member
// accounts of the Amazon Web Services organization.
StatusReason *StatusReason
// The tags added to the analyzer.
Tags map[string]string
noSmithyDocumentSerde
}
// Contains information about an archive rule.
type ArchiveRuleSummary struct {
// The time at which the archive rule was created.
//
// This member is required.
CreatedAt *time.Time
// A filter used to define the archive rule.
//
// This member is required.
Filter map[string]Criterion
// The name of the archive rule.
//
// This member is required.
RuleName *string
// The time at which the archive rule was last updated.
//
// This member is required.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// Contains information about CloudTrail access.
type CloudTrailDetails struct {
// The ARN of the service role that IAM Access Analyzer uses to access your
// CloudTrail trail and service last accessed information.
//
// This member is required.
AccessRole *string
// The start of the time range for which IAM Access Analyzer reviews your
// CloudTrail events. Events with a timestamp before this time are not considered
// to generate a policy.
//
// This member is required.
StartTime *time.Time
// A Trail object that contains settings for a trail.
//
// This member is required.
Trails []Trail
// The end of the time range for which IAM Access Analyzer reviews your CloudTrail
// events. Events with a timestamp after this time are not considered to generate a
// policy. If this is not included in the request, the default value is the current
// time.
EndTime *time.Time
noSmithyDocumentSerde
}
// Contains information about CloudTrail access.
type CloudTrailProperties struct {
// The end of the time range for which IAM Access Analyzer reviews your CloudTrail
// events. Events with a timestamp after this time are not considered to generate a
// policy. If this is not included in the request, the default value is the current
// time.
//
// This member is required.
EndTime *time.Time
// The start of the time range for which IAM Access Analyzer reviews your
// CloudTrail events. Events with a timestamp before this time are not considered
// to generate a policy.
//
// This member is required.
StartTime *time.Time
// A TrailProperties object that contains settings for trail properties.
//
// This member is required.
TrailProperties []TrailProperties
noSmithyDocumentSerde
}
// Access control configuration structures for your resource. You specify the
// configuration as a type-value pair. You can specify only one type of access
// control configuration.
//
// The following types satisfy this interface:
//
// ConfigurationMemberEbsSnapshot
// ConfigurationMemberEcrRepository
// ConfigurationMemberEfsFileSystem
// ConfigurationMemberIamRole
// ConfigurationMemberKmsKey
// ConfigurationMemberRdsDbClusterSnapshot
// ConfigurationMemberRdsDbSnapshot
// ConfigurationMemberS3Bucket
// ConfigurationMemberS3ExpressDirectoryBucket
// ConfigurationMemberSecretsManagerSecret
// ConfigurationMemberSnsTopic
// ConfigurationMemberSqsQueue
type Configuration interface {
isConfiguration()
}
// The access control configuration is for an Amazon EBS volume snapshot.
type ConfigurationMemberEbsSnapshot struct {
Value EbsSnapshotConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberEbsSnapshot) isConfiguration() {}
// The access control configuration is for an Amazon ECR repository.
type ConfigurationMemberEcrRepository struct {
Value EcrRepositoryConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberEcrRepository) isConfiguration() {}
// The access control configuration is for an Amazon EFS file system.
type ConfigurationMemberEfsFileSystem struct {
Value EfsFileSystemConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberEfsFileSystem) isConfiguration() {}
// The access control configuration is for an IAM role.
type ConfigurationMemberIamRole struct {
Value IamRoleConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberIamRole) isConfiguration() {}
// The access control configuration is for a KMS key.
type ConfigurationMemberKmsKey struct {
Value KmsKeyConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberKmsKey) isConfiguration() {}
// The access control configuration is for an Amazon RDS DB cluster snapshot.
type ConfigurationMemberRdsDbClusterSnapshot struct {
Value RdsDbClusterSnapshotConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberRdsDbClusterSnapshot) isConfiguration() {}
// The access control configuration is for an Amazon RDS DB snapshot.
type ConfigurationMemberRdsDbSnapshot struct {
Value RdsDbSnapshotConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberRdsDbSnapshot) isConfiguration() {}
// The access control configuration is for an Amazon S3 bucket.
type ConfigurationMemberS3Bucket struct {
Value S3BucketConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberS3Bucket) isConfiguration() {}
// The access control configuration is for an Amazon S3 directory bucket.
type ConfigurationMemberS3ExpressDirectoryBucket struct {
Value S3ExpressDirectoryBucketConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberS3ExpressDirectoryBucket) isConfiguration() {}
// The access control configuration is for a Secrets Manager secret.
type ConfigurationMemberSecretsManagerSecret struct {
Value SecretsManagerSecretConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberSecretsManagerSecret) isConfiguration() {}
// The access control configuration is for an Amazon SNS topic
type ConfigurationMemberSnsTopic struct {
Value SnsTopicConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberSnsTopic) isConfiguration() {}
// The access control configuration is for an Amazon SQS queue.
type ConfigurationMemberSqsQueue struct {
Value SqsQueueConfiguration
noSmithyDocumentSerde
}
func (*ConfigurationMemberSqsQueue) isConfiguration() {}
// The criteria to use in the filter that defines the archive rule. For more
// information on available filter keys, see IAM Access Analyzer filter keys (https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html)
// .
type Criterion struct {
// A "contains" operator to match for the filter used to create the rule.
Contains []string
// An "equals" operator to match for the filter used to create the rule.
Eq []string
// An "exists" operator to match for the filter used to create the rule.
Exists *bool
// A "not equals" operator to match for the filter used to create the rule.
Neq []string
noSmithyDocumentSerde
}
// The proposed access control configuration for an Amazon EBS volume snapshot.
// You can propose a configuration for a new Amazon EBS volume snapshot or an
// Amazon EBS volume snapshot that you own by specifying the user IDs, groups, and
// optional KMS encryption key. For more information, see ModifySnapshotAttribute (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySnapshotAttribute.html)
// .
type EbsSnapshotConfiguration struct {
// The groups that have access to the Amazon EBS volume snapshot. If the value all
// is specified, then the Amazon EBS volume snapshot is public.
// - If the configuration is for an existing Amazon EBS volume snapshot and you
// do not specify the groups , then the access preview uses the existing shared
// groups for the snapshot.
// - If the access preview is for a new resource and you do not specify the
// groups , then the access preview considers the snapshot without any groups .
// - To propose deletion of existing shared groups , you can specify an empty
// list for groups .
Groups []string
// The KMS key identifier for an encrypted Amazon EBS volume snapshot. The KMS key
// identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
// - If the configuration is for an existing Amazon EBS volume snapshot and you
// do not specify the kmsKeyId , or you specify an empty string, then the access
// preview uses the existing kmsKeyId of the snapshot.
// - If the access preview is for a new resource and you do not specify the
// kmsKeyId , the access preview considers the snapshot as unencrypted.
KmsKeyId *string
// The IDs of the Amazon Web Services accounts that have access to the Amazon EBS
// volume snapshot.
// - If the configuration is for an existing Amazon EBS volume snapshot and you
// do not specify the userIds , then the access preview uses the existing shared
// userIds for the snapshot.
// - If the access preview is for a new resource and you do not specify the
// userIds , then the access preview considers the snapshot without any userIds .
// - To propose deletion of existing shared accountIds , you can specify an empty
// list for userIds .
UserIds []string
noSmithyDocumentSerde
}
// The proposed access control configuration for an Amazon ECR repository. You can
// propose a configuration for a new Amazon ECR repository or an existing Amazon
// ECR repository that you own by specifying the Amazon ECR policy. For more
// information, see Repository (https://docs.aws.amazon.com/AmazonECR/latest/APIReference/API_Repository.html)
// .
// - If the configuration is for an existing Amazon ECR repository and you do
// not specify the Amazon ECR policy, then the access preview uses the existing
// Amazon ECR policy for the repository.
// - If the access preview is for a new resource and you do not specify the
// policy, then the access preview assumes an Amazon ECR repository without a
// policy.
// - To propose deletion of an existing Amazon ECR repository policy, you can
// specify an empty string for the Amazon ECR policy.
type EcrRepositoryConfiguration struct {
// The JSON repository policy text to apply to the Amazon ECR repository. For more
// information, see Private repository policy examples (https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policy-examples.html)
// in the Amazon ECR User Guide.
RepositoryPolicy *string
noSmithyDocumentSerde
}
// The proposed access control configuration for an Amazon EFS file system. You
// can propose a configuration for a new Amazon EFS file system or an existing
// Amazon EFS file system that you own by specifying the Amazon EFS policy. For
// more information, see Using file systems in Amazon EFS (https://docs.aws.amazon.com/efs/latest/ug/using-fs.html)
// .
// - If the configuration is for an existing Amazon EFS file system and you do
// not specify the Amazon EFS policy, then the access preview uses the existing
// Amazon EFS policy for the file system.
// - If the access preview is for a new resource and you do not specify the
// policy, then the access preview assumes an Amazon EFS file system without a
// policy.
// - To propose deletion of an existing Amazon EFS file system policy, you can
// specify an empty string for the Amazon EFS policy.
type EfsFileSystemConfiguration struct {
// The JSON policy definition to apply to the Amazon EFS file system. For more
// information on the elements that make up a file system policy, see Amazon EFS
// Resource-based policies (https://docs.aws.amazon.com/efs/latest/ug/access-control-overview.html#access-control-manage-access-intro-resource-policies)
// .
FileSystemPolicy *string
noSmithyDocumentSerde
}
// Contains information about an external access finding.
type ExternalAccessDetails struct {
// The condition in the analyzed policy statement that resulted in an external
// access finding.
//
// This member is required.
Condition map[string]string
// The action in the analyzed policy statement that an external principal has
// permission to use.
Action []string
// Specifies whether the external access finding is public.
IsPublic *bool
// The external principal that has access to a resource within the zone of trust.
Principal map[string]string
// The sources of the external access finding. This indicates how the access that
// generated the finding is granted. It is populated for Amazon S3 bucket findings.
Sources []FindingSource
noSmithyDocumentSerde
}
// Contains information about a finding.
type Finding struct {
// The time at which the resource was analyzed.
//
// This member is required.
AnalyzedAt *time.Time
// The condition in the analyzed policy statement that resulted in a finding.
//
// This member is required.
Condition map[string]string
// The time at which the finding was generated.
//
// This member is required.
CreatedAt *time.Time
// The ID of the finding.
//
// This member is required.
Id *string
// The Amazon Web Services account ID that owns the resource.
//
// This member is required.
ResourceOwnerAccount *string
// The type of the resource identified in the finding.
//
// This member is required.
ResourceType ResourceType
// The current status of the finding.
//
// This member is required.
Status FindingStatus
// The time at which the finding was updated.
//
// This member is required.
UpdatedAt *time.Time
// The action in the analyzed policy statement that an external principal has
// permission to use.
Action []string
// An error.
Error *string
// Indicates whether the policy that generated the finding allows public access to
// the resource.
IsPublic *bool
// The external principal that has access to a resource within the zone of trust.
Principal map[string]string
// The resource that an external principal has access to.
Resource *string
// The sources of the finding. This indicates how the access that generated the
// finding is granted. It is populated for Amazon S3 bucket findings.
Sources []FindingSource
noSmithyDocumentSerde
}
// Contains information about an external access or unused access finding. Only
// one parameter can be used in a FindingDetails object.
//
// The following types satisfy this interface:
//
// FindingDetailsMemberExternalAccessDetails
// FindingDetailsMemberUnusedIamRoleDetails
// FindingDetailsMemberUnusedIamUserAccessKeyDetails
// FindingDetailsMemberUnusedIamUserPasswordDetails
// FindingDetailsMemberUnusedPermissionDetails
type FindingDetails interface {
isFindingDetails()
}
// The details for an external access analyzer finding.
type FindingDetailsMemberExternalAccessDetails struct {
Value ExternalAccessDetails
noSmithyDocumentSerde
}
func (*FindingDetailsMemberExternalAccessDetails) isFindingDetails() {}
// The details for an unused access analyzer finding with an unused IAM role
// finding type.
type FindingDetailsMemberUnusedIamRoleDetails struct {
Value UnusedIamRoleDetails
noSmithyDocumentSerde
}
func (*FindingDetailsMemberUnusedIamRoleDetails) isFindingDetails() {}
// The details for an unused access analyzer finding with an unused IAM user
// access key finding type.
type FindingDetailsMemberUnusedIamUserAccessKeyDetails struct {
Value UnusedIamUserAccessKeyDetails
noSmithyDocumentSerde
}
func (*FindingDetailsMemberUnusedIamUserAccessKeyDetails) isFindingDetails() {}
// The details for an unused access analyzer finding with an unused IAM user
// password finding type.
type FindingDetailsMemberUnusedIamUserPasswordDetails struct {
Value UnusedIamUserPasswordDetails
noSmithyDocumentSerde
}
func (*FindingDetailsMemberUnusedIamUserPasswordDetails) isFindingDetails() {}
// The details for an unused access analyzer finding with an unused permission
// finding type.
type FindingDetailsMemberUnusedPermissionDetails struct {
Value UnusedPermissionDetails
noSmithyDocumentSerde
}
func (*FindingDetailsMemberUnusedPermissionDetails) isFindingDetails() {}
// The source of the finding. This indicates how the access that generated the
// finding is granted. It is populated for Amazon S3 bucket findings.
type FindingSource struct {
// Indicates the type of access that generated the finding.
//
// This member is required.
Type FindingSourceType
// Includes details about how the access that generated the finding is granted.
// This is populated for Amazon S3 bucket findings.
Detail *FindingSourceDetail
noSmithyDocumentSerde
}
// Includes details about how the access that generated the finding is granted.
// This is populated for Amazon S3 bucket findings.
type FindingSourceDetail struct {
// The account of the cross-account access point that generated the finding.
AccessPointAccount *string
// The ARN of the access point that generated the finding. The ARN format depends
// on whether the ARN represents an access point or a multi-region access point.
AccessPointArn *string
noSmithyDocumentSerde
}
// Contains information about a finding.
type FindingSummary struct {
// The time at which the resource-based policy that generated the finding was
// analyzed.
//
// This member is required.
AnalyzedAt *time.Time
// The condition in the analyzed policy statement that resulted in a finding.
//
// This member is required.
Condition map[string]string
// The time at which the finding was created.
//
// This member is required.
CreatedAt *time.Time
// The ID of the finding.
//
// This member is required.
Id *string
// The Amazon Web Services account ID that owns the resource.
//
// This member is required.
ResourceOwnerAccount *string
// The type of the resource that the external principal has access to.
//
// This member is required.
ResourceType ResourceType
// The status of the finding.
//
// This member is required.
Status FindingStatus
// The time at which the finding was most recently updated.
//
// This member is required.
UpdatedAt *time.Time
// The action in the analyzed policy statement that an external principal has
// permission to use.
Action []string
// The error that resulted in an Error finding.
Error *string
// Indicates whether the finding reports a resource that has a policy that allows
// public access.
IsPublic *bool
// The external principal that has access to a resource within the zone of trust.
Principal map[string]string
// The resource that the external principal has access to.
Resource *string
// The sources of the finding. This indicates how the access that generated the
// finding is granted. It is populated for Amazon S3 bucket findings.
Sources []FindingSource
noSmithyDocumentSerde
}
// Contains information about a finding.
type FindingSummaryV2 struct {
// The time at which the resource-based policy or IAM entity that generated the
// finding was analyzed.
//
// This member is required.
AnalyzedAt *time.Time
// The time at which the finding was created.
//
// This member is required.
CreatedAt *time.Time
// The ID of the finding.
//
// This member is required.
Id *string
// The Amazon Web Services account ID that owns the resource.
//
// This member is required.
ResourceOwnerAccount *string
// The type of the resource that the external principal has access to.
//
// This member is required.
ResourceType ResourceType
// The status of the finding.
//
// This member is required.
Status FindingStatus
// The time at which the finding was most recently updated.
//
// This member is required.
UpdatedAt *time.Time
// The error that resulted in an Error finding.
Error *string
// The type of the external access or unused access finding.
FindingType FindingType
// The resource that the external principal has access to.
Resource *string
noSmithyDocumentSerde
}
// Contains the text for the generated policy.
type GeneratedPolicy struct {
// The text to use as the content for the new policy. The policy is created using
// the CreatePolicy (https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicy.html)
// action.
//
// This member is required.
Policy *string
noSmithyDocumentSerde
}
// Contains the generated policy details.
type GeneratedPolicyProperties struct {
// The ARN of the IAM entity (user or role) for which you are generating a policy.
//
// This member is required.
PrincipalArn *string
// Lists details about the Trail used to generated policy.
CloudTrailProperties *CloudTrailProperties
// This value is set to true if the generated policy contains all possible actions
// for a service that IAM Access Analyzer identified from the CloudTrail trail that
// you specified, and false otherwise.
IsComplete *bool
noSmithyDocumentSerde
}
// Contains the text for the generated policy and its details.
type GeneratedPolicyResult struct {
// A GeneratedPolicyProperties object that contains properties of the generated
// policy.
//
// This member is required.
Properties *GeneratedPolicyProperties
// The text to use as the content for the new policy. The policy is created using
// the CreatePolicy (https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicy.html)
// action.
GeneratedPolicies []GeneratedPolicy
noSmithyDocumentSerde
}
// The proposed access control configuration for an IAM role. You can propose a
// configuration for a new IAM role or an existing IAM role that you own by
// specifying the trust policy. If the configuration is for a new IAM role, you
// must specify the trust policy. If the configuration is for an existing IAM role
// that you own and you do not propose the trust policy, the access preview uses
// the existing trust policy for the role. The proposed trust policy cannot be an
// empty string. For more information about role trust policy limits, see IAM and
// STS quotas (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html)
// .
type IamRoleConfiguration struct {
// The proposed trust policy for the IAM role.
TrustPolicy *string
noSmithyDocumentSerde
}
// An criterion statement in an archive rule. Each archive rule may have multiple
// criteria.
type InlineArchiveRule struct {
// The condition and values for a criterion.
//
// This member is required.
Filter map[string]Criterion
// The name of the rule.
//
// This member is required.
RuleName *string
noSmithyDocumentSerde
}
// This configuration sets the network origin for the Amazon S3 access point or
// multi-region access point to Internet .
type InternetConfiguration struct {
noSmithyDocumentSerde
}
// Contains details about the policy generation request.
type JobDetails struct {
// The JobId that is returned by the StartPolicyGeneration operation. The JobId
// can be used with GetGeneratedPolicy to retrieve the generated policies or used
// with CancelPolicyGeneration to cancel the policy generation request.
//
// This member is required.
JobId *string
// A timestamp of when the job was started.
//
// This member is required.
StartedOn *time.Time
// The status of the job request.
//
// This member is required.
Status JobStatus
// A timestamp of when the job was completed.
CompletedOn *time.Time
// The job error for the policy generation request.
JobError *JobError
noSmithyDocumentSerde
}
// Contains the details about the policy generation error.
type JobError struct {
// The job error code.
//
// This member is required.
Code JobErrorCode
// Specific information about the error. For example, which service quota was
// exceeded or which resource was not found.
//
// This member is required.
Message *string
noSmithyDocumentSerde
}
// A proposed grant configuration for a KMS key. For more information, see
// CreateGrant (https://docs.aws.amazon.com/kms/latest/APIReference/API_CreateGrant.html)
// .
type KmsGrantConfiguration struct {
// The principal that is given permission to perform the operations that the grant
// permits.
//
// This member is required.
GranteePrincipal *string
// The Amazon Web Services account under which the grant was issued. The account
// is used to propose KMS grants issued by accounts other than the owner of the
// key.
//
// This member is required.
IssuingAccount *string
// A list of operations that the grant permits.
//
// This member is required.
Operations []KmsGrantOperation
// Use this structure to propose allowing cryptographic operations (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations)
// in the grant only when the operation request includes the specified encryption
// context (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context)
// .
Constraints *KmsGrantConstraints
// The principal that is given permission to retire the grant by using RetireGrant (https://docs.aws.amazon.com/kms/latest/APIReference/API_RetireGrant.html)
// operation.
RetiringPrincipal *string
noSmithyDocumentSerde
}
// Use this structure to propose allowing cryptographic operations (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations)
// in the grant only when the operation request includes the specified encryption
// context (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context)
// . You can specify only one type of encryption context. An empty map is treated
// as not specified. For more information, see GrantConstraints (https://docs.aws.amazon.com/kms/latest/APIReference/API_GrantConstraints.html)
// .
type KmsGrantConstraints struct {
// A list of key-value pairs that must match the encryption context in the
// cryptographic operation (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations)
// request. The grant allows the operation only when the encryption context in the
// request is the same as the encryption context specified in this constraint.
EncryptionContextEquals map[string]string
// A list of key-value pairs that must be included in the encryption context of
// the cryptographic operation (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations)
// request. The grant allows the cryptographic operation only when the encryption
// context in the request includes the key-value pairs specified in this
// constraint, although it can include additional key-value pairs.
EncryptionContextSubset map[string]string
noSmithyDocumentSerde
}
// Proposed access control configuration for a KMS key. You can propose a
// configuration for a new KMS key or an existing KMS key that you own by
// specifying the key policy and KMS grant configuration. If the configuration is
// for an existing key and you do not specify the key policy, the access preview
// uses the existing policy for the key. If the access preview is for a new
// resource and you do not specify the key policy, then the access preview uses the
// default key policy. The proposed key policy cannot be an empty string. For more
// information, see Default key policy (https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default)
// . For more information about key policy limits, see Resource quotas (https://docs.aws.amazon.com/kms/latest/developerguide/resource-limits.html)
// .
type KmsKeyConfiguration struct {
// A list of proposed grant configurations for the KMS key. If the proposed grant
// configuration is for an existing key, the access preview uses the proposed list
// of grant configurations in place of the existing grants. Otherwise, the access
// preview uses the existing grants for the key.
Grants []KmsGrantConfiguration
// Resource policy configuration for the KMS key. The only valid value for the
// name of the key policy is default . For more information, see Default key policy (https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default)
// .
KeyPolicies map[string]string
noSmithyDocumentSerde
}
// A location in a policy that is represented as a path through the JSON
// representation and a corresponding span.
type Location struct {
// A path in a policy, represented as a sequence of path elements.
//
// This member is required.
Path []PathElement
// A span in a policy.
//
// This member is required.
Span *Span
noSmithyDocumentSerde
}
// The proposed InternetConfiguration or VpcConfiguration to apply to the Amazon
// S3 access point. VpcConfiguration does not apply to multi-region access points.
// You can make the access point accessible from the internet, or you can specify
// that all requests made through that access point must originate from a specific
// virtual private cloud (VPC). You can specify only one type of network
// configuration. For more information, see Creating access points (https://docs.aws.amazon.com/AmazonS3/latest/dev/creating-access-points.html)
// .
//
// The following types satisfy this interface:
//
// NetworkOriginConfigurationMemberInternetConfiguration
// NetworkOriginConfigurationMemberVpcConfiguration
type NetworkOriginConfiguration interface {
isNetworkOriginConfiguration()
}
// The configuration for the Amazon S3 access point or multi-region access point
// with an Internet origin.
type NetworkOriginConfigurationMemberInternetConfiguration struct {
Value InternetConfiguration
noSmithyDocumentSerde
}
func (*NetworkOriginConfigurationMemberInternetConfiguration) isNetworkOriginConfiguration() {}
// The proposed virtual private cloud (VPC) configuration for the Amazon S3 access
// point. VPC configuration does not apply to multi-region access points. For more
// information, see VpcConfiguration (https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_VpcConfiguration.html)
// .
type NetworkOriginConfigurationMemberVpcConfiguration struct {
Value VpcConfiguration
noSmithyDocumentSerde
}
func (*NetworkOriginConfigurationMemberVpcConfiguration) isNetworkOriginConfiguration() {}
// A single element in a path through the JSON representation of a policy.
//
// The following types satisfy this interface:
//
// PathElementMemberIndex
// PathElementMemberKey
// PathElementMemberSubstring
// PathElementMemberValue
type PathElement interface {
isPathElement()
}
// Refers to an index in a JSON array.
type PathElementMemberIndex struct {
Value int32
noSmithyDocumentSerde
}
func (*PathElementMemberIndex) isPathElement() {}
// Refers to a key in a JSON object.
type PathElementMemberKey struct {
Value string
noSmithyDocumentSerde
}
func (*PathElementMemberKey) isPathElement() {}
// Refers to a substring of a literal string in a JSON object.
type PathElementMemberSubstring struct {
Value Substring
noSmithyDocumentSerde
}
func (*PathElementMemberSubstring) isPathElement() {}
// Refers to the value associated with a given key in a JSON object.
type PathElementMemberValue struct {
Value string
noSmithyDocumentSerde
}
func (*PathElementMemberValue) isPathElement() {}
// Contains details about the policy generation status and properties.
type PolicyGeneration struct {
// The JobId that is returned by the StartPolicyGeneration operation. The JobId
// can be used with GetGeneratedPolicy to retrieve the generated policies or used
// with CancelPolicyGeneration to cancel the policy generation request.
//
// This member is required.
JobId *string
// The ARN of the IAM entity (user or role) for which you are generating a policy.
//
// This member is required.
PrincipalArn *string
// A timestamp of when the policy generation started.
//
// This member is required.
StartedOn *time.Time
// The status of the policy generation request.
//
// This member is required.
Status JobStatus
// A timestamp of when the policy generation was completed.
CompletedOn *time.Time
noSmithyDocumentSerde
}
// Contains the ARN details about the IAM entity for which the policy is generated.
type PolicyGenerationDetails struct {
// The ARN of the IAM entity (user or role) for which you are generating a policy.
//
// This member is required.
PrincipalArn *string
noSmithyDocumentSerde
}
// A position in a policy.
type Position struct {
// The column of the position, starting from 0.
//
// This member is required.
Column *int32
// The line of the position, starting from 1.
//
// This member is required.
Line *int32
// The offset within the policy that corresponds to the position, starting from 0.
//
// This member is required.
Offset *int32
noSmithyDocumentSerde
}
// The values for a manual Amazon RDS DB cluster snapshot attribute.
//
// The following types satisfy this interface:
//
// RdsDbClusterSnapshotAttributeValueMemberAccountIds
type RdsDbClusterSnapshotAttributeValue interface {
isRdsDbClusterSnapshotAttributeValue()
}
// The Amazon Web Services account IDs that have access to the manual Amazon RDS
// DB cluster snapshot. If the value all is specified, then the Amazon RDS DB
// cluster snapshot is public and can be copied or restored by all Amazon Web
// Services accounts.
// - If the configuration is for an existing Amazon RDS DB cluster snapshot and
// you do not specify the accountIds in RdsDbClusterSnapshotAttributeValue , then
// the access preview uses the existing shared accountIds for the snapshot.
// - If the access preview is for a new resource and you do not specify the
// specify the accountIds in RdsDbClusterSnapshotAttributeValue , then the access
// preview considers the snapshot without any attributes.
// - To propose deletion of existing shared accountIds , you can specify an empty
// list for accountIds in the RdsDbClusterSnapshotAttributeValue .
type RdsDbClusterSnapshotAttributeValueMemberAccountIds struct {
Value []string
noSmithyDocumentSerde
}
func (*RdsDbClusterSnapshotAttributeValueMemberAccountIds) isRdsDbClusterSnapshotAttributeValue() {}
// The proposed access control configuration for an Amazon RDS DB cluster
// snapshot. You can propose a configuration for a new Amazon RDS DB cluster
// snapshot or an Amazon RDS DB cluster snapshot that you own by specifying the
// RdsDbClusterSnapshotAttributeValue and optional KMS encryption key. For more
// information, see ModifyDBClusterSnapshotAttribute (https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_ModifyDBClusterSnapshotAttribute.html)
// .
type RdsDbClusterSnapshotConfiguration struct {
// The names and values of manual DB cluster snapshot attributes. Manual DB
// cluster snapshot attributes are used to authorize other Amazon Web Services
// accounts to restore a manual DB cluster snapshot. The only valid value for
// AttributeName for the attribute map is restore
Attributes map[string]RdsDbClusterSnapshotAttributeValue
// The KMS key identifier for an encrypted Amazon RDS DB cluster snapshot. The KMS
// key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
//
// - If the configuration is for an existing Amazon RDS DB cluster snapshot and
// you do not specify the kmsKeyId , or you specify an empty string, then the
// access preview uses the existing kmsKeyId of the snapshot.
// - If the access preview is for a new resource and you do not specify the
// specify the kmsKeyId , then the access preview considers the snapshot as
// unencrypted.
KmsKeyId *string
noSmithyDocumentSerde
}
// The name and values of a manual Amazon RDS DB snapshot attribute. Manual DB
// snapshot attributes are used to authorize other Amazon Web Services accounts to
// restore a manual DB snapshot.
//
// The following types satisfy this interface:
//
// RdsDbSnapshotAttributeValueMemberAccountIds
type RdsDbSnapshotAttributeValue interface {
isRdsDbSnapshotAttributeValue()
}
// The Amazon Web Services account IDs that have access to the manual Amazon RDS
// DB snapshot. If the value all is specified, then the Amazon RDS DB snapshot is
// public and can be copied or restored by all Amazon Web Services accounts.
// - If the configuration is for an existing Amazon RDS DB snapshot and you do
// not specify the accountIds in RdsDbSnapshotAttributeValue , then the access
// preview uses the existing shared accountIds for the snapshot.
// - If the access preview is for a new resource and you do not specify the
// specify the accountIds in RdsDbSnapshotAttributeValue , then the access
// preview considers the snapshot without any attributes.
// - To propose deletion of an existing shared accountIds , you can specify an
// empty list for accountIds in the RdsDbSnapshotAttributeValue .
type RdsDbSnapshotAttributeValueMemberAccountIds struct {
Value []string
noSmithyDocumentSerde
}
func (*RdsDbSnapshotAttributeValueMemberAccountIds) isRdsDbSnapshotAttributeValue() {}
// The proposed access control configuration for an Amazon RDS DB snapshot. You
// can propose a configuration for a new Amazon RDS DB snapshot or an Amazon RDS DB
// snapshot that you own by specifying the RdsDbSnapshotAttributeValue and
// optional KMS encryption key. For more information, see ModifyDBSnapshotAttribute (https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_ModifyDBSnapshotAttribute.html)
// .
type RdsDbSnapshotConfiguration struct {
// The names and values of manual DB snapshot attributes. Manual DB snapshot
// attributes are used to authorize other Amazon Web Services accounts to restore a
// manual DB snapshot. The only valid value for attributeName for the attribute
// map is restore.
Attributes map[string]RdsDbSnapshotAttributeValue
// The KMS key identifier for an encrypted Amazon RDS DB snapshot. The KMS key
// identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
// - If the configuration is for an existing Amazon RDS DB snapshot and you do
// not specify the kmsKeyId , or you specify an empty string, then the access
// preview uses the existing kmsKeyId of the snapshot.
// - If the access preview is for a new resource and you do not specify the
// specify the kmsKeyId , then the access preview considers the snapshot as
// unencrypted.
KmsKeyId *string
noSmithyDocumentSerde
}
// Contains information about the reasoning why a check for access passed or
// failed.
type ReasonSummary struct {
// A description of the reasoning of a result of checking for access.
Description *string
// The identifier for the reason statement.
StatementId *string
// The index number of the reason statement.
StatementIndex *int32
noSmithyDocumentSerde
}
// The configuration for an Amazon S3 access point or multi-region access point
// for the bucket. You can propose up to 10 access points or multi-region access
// points per bucket. If the proposed Amazon S3 access point configuration is for
// an existing bucket, the access preview uses the proposed access point
// configuration in place of the existing access points. To propose an access point
// without a policy, you can provide an empty string as the access point policy.
// For more information, see Creating access points (https://docs.aws.amazon.com/AmazonS3/latest/dev/creating-access-points.html)
// . For more information about access point policy limits, see Access points
// restrictions and limitations (https://docs.aws.amazon.com/AmazonS3/latest/dev/access-points-restrictions-limitations.html)
// .
type S3AccessPointConfiguration struct {
// The access point or multi-region access point policy.
AccessPointPolicy *string
// The proposed Internet and VpcConfiguration to apply to this Amazon S3 access
// point. VpcConfiguration does not apply to multi-region access points. If the
// access preview is for a new resource and neither is specified, the access
// preview uses Internet for the network origin. If the access preview is for an
// existing resource and neither is specified, the access preview uses the exiting
// network origin.
NetworkOrigin NetworkOriginConfiguration
// The proposed S3PublicAccessBlock configuration to apply to this Amazon S3
// access point or multi-region access point.
PublicAccessBlock *S3PublicAccessBlockConfiguration
noSmithyDocumentSerde
}
// A proposed access control list grant configuration for an Amazon S3 bucket. For
// more information, see How to Specify an ACL (https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#setting-acls)
// .
type S3BucketAclGrantConfiguration struct {
// The grantee to whom you’re assigning access rights.
//
// This member is required.
Grantee AclGrantee
// The permissions being granted.
//
// This member is required.
Permission AclPermission
noSmithyDocumentSerde
}
// Proposed access control configuration for an Amazon S3 bucket. You can propose
// a configuration for a new Amazon S3 bucket or an existing Amazon S3 bucket that
// you own by specifying the Amazon S3 bucket policy, bucket ACLs, bucket BPA
// settings, Amazon S3 access points, and multi-region access points attached to
// the bucket. If the configuration is for an existing Amazon S3 bucket and you do
// not specify the Amazon S3 bucket policy, the access preview uses the existing
// policy attached to the bucket. If the access preview is for a new resource and
// you do not specify the Amazon S3 bucket policy, the access preview assumes a
// bucket without a policy. To propose deletion of an existing bucket policy, you
// can specify an empty string. For more information about bucket policy limits,
// see Bucket Policy Examples (https://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket-policies.html)
// .
type S3BucketConfiguration struct {
// The configuration of Amazon S3 access points or multi-region access points for
// the bucket. You can propose up to 10 new access points per bucket.
AccessPoints map[string]S3AccessPointConfiguration
// The proposed list of ACL grants for the Amazon S3 bucket. You can propose up to
// 100 ACL grants per bucket. If the proposed grant configuration is for an
// existing bucket, the access preview uses the proposed list of grant
// configurations in place of the existing grants. Otherwise, the access preview
// uses the existing grants for the bucket.
BucketAclGrants []S3BucketAclGrantConfiguration
// The proposed bucket policy for the Amazon S3 bucket.
BucketPolicy *string
// The proposed block public access configuration for the Amazon S3 bucket.
BucketPublicAccessBlock *S3PublicAccessBlockConfiguration
noSmithyDocumentSerde
}
// Proposed access control configuration for an Amazon S3 directory bucket. You
// can propose a configuration for a new Amazon S3 directory bucket or an existing
// Amazon S3 directory bucket that you own by specifying the Amazon S3 bucket
// policy. If the configuration is for an existing Amazon S3 directory bucket and
// you do not specify the Amazon S3 bucket policy, the access preview uses the
// existing policy attached to the directory bucket. If the access preview is for a
// new resource and you do not specify the Amazon S3 bucket policy, the access
// preview assumes an directory bucket without a policy. To propose deletion of an
// existing bucket policy, you can specify an empty string. For more information
// about bucket policy limits, see Example bucket policies (https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-security-iam-example-bucket-policies.html)
// .
type S3ExpressDirectoryBucketConfiguration struct {
// The proposed bucket policy for the Amazon S3 directory bucket.
BucketPolicy *string
noSmithyDocumentSerde
}
// The PublicAccessBlock configuration to apply to this Amazon S3 bucket. If the
// proposed configuration is for an existing Amazon S3 bucket and the configuration
// is not specified, the access preview uses the existing setting. If the proposed
// configuration is for a new bucket and the configuration is not specified, the
// access preview uses false . If the proposed configuration is for a new access
// point or multi-region access point and the access point BPA configuration is not
// specified, the access preview uses true . For more information, see
// PublicAccessBlockConfiguration (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html)
// .
type S3PublicAccessBlockConfiguration struct {
// Specifies whether Amazon S3 should ignore public ACLs for this bucket and
// objects in this bucket.
//
// This member is required.
IgnorePublicAcls *bool
// Specifies whether Amazon S3 should restrict public bucket policies for this
// bucket.
//
// This member is required.
RestrictPublicBuckets *bool
noSmithyDocumentSerde
}
// The configuration for a Secrets Manager secret. For more information, see
// CreateSecret (https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_CreateSecret.html)
// . You can propose a configuration for a new secret or an existing secret that
// you own by specifying the secret policy and optional KMS encryption key. If the
// configuration is for an existing secret and you do not specify the secret
// policy, the access preview uses the existing policy for the secret. If the
// access preview is for a new resource and you do not specify the policy, the
// access preview assumes a secret without a policy. To propose deletion of an
// existing policy, you can specify an empty string. If the proposed configuration
// is for a new secret and you do not specify the KMS key ID, the access preview
// uses the Amazon Web Services managed key aws/secretsmanager . If you specify an
// empty string for the KMS key ID, the access preview uses the Amazon Web Services
// managed key of the Amazon Web Services account. For more information about
// secret policy limits, see Quotas for Secrets Manager. (https://docs.aws.amazon.com/secretsmanager/latest/userguide/reference_limits.html)
// .
type SecretsManagerSecretConfiguration struct {
// The proposed ARN, key ID, or alias of the KMS key.
KmsKeyId *string
// The proposed resource policy defining who can access or manage the secret.
SecretPolicy *string
noSmithyDocumentSerde
}
// The proposed access control configuration for an Amazon SNS topic. You can
// propose a configuration for a new Amazon SNS topic or an existing Amazon SNS
// topic that you own by specifying the policy. If the configuration is for an
// existing Amazon SNS topic and you do not specify the Amazon SNS policy, then the
// access preview uses the existing Amazon SNS policy for the topic. If the access
// preview is for a new resource and you do not specify the policy, then the access
// preview assumes an Amazon SNS topic without a policy. To propose deletion of an
// existing Amazon SNS topic policy, you can specify an empty string for the Amazon
// SNS policy. For more information, see Topic (https://docs.aws.amazon.com/sns/latest/api/API_Topic.html)
// .
type SnsTopicConfiguration struct {
// The JSON policy text that defines who can access an Amazon SNS topic. For more
// information, see Example cases for Amazon SNS access control (https://docs.aws.amazon.com/sns/latest/dg/sns-access-policy-use-cases.html)
// in the Amazon SNS Developer Guide.
TopicPolicy *string
noSmithyDocumentSerde
}
// The criteria used to sort.
type SortCriteria struct {
// The name of the attribute to sort on.
AttributeName *string
// The sort order, ascending or descending.
OrderBy OrderBy
noSmithyDocumentSerde
}
// A span in a policy. The span consists of a start position (inclusive) and end
// position (exclusive).
type Span struct {
// The end position of the span (exclusive).
//
// This member is required.
End *Position
// The start position of the span (inclusive).
//
// This member is required.
Start *Position
noSmithyDocumentSerde
}
// The proposed access control configuration for an Amazon SQS queue. You can
// propose a configuration for a new Amazon SQS queue or an existing Amazon SQS
// queue that you own by specifying the Amazon SQS policy. If the configuration is
// for an existing Amazon SQS queue and you do not specify the Amazon SQS policy,
// the access preview uses the existing Amazon SQS policy for the queue. If the
// access preview is for a new resource and you do not specify the policy, the
// access preview assumes an Amazon SQS queue without a policy. To propose deletion
// of an existing Amazon SQS queue policy, you can specify an empty string for the
// Amazon SQS policy. For more information about Amazon SQS policy limits, see
// Quotas related to policies (https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-policies.html)
// .
type SqsQueueConfiguration struct {
// The proposed resource policy for the Amazon SQS queue.
QueuePolicy *string
noSmithyDocumentSerde
}
// Provides more details about the current status of the analyzer. For example, if
// the creation for the analyzer fails, a Failed status is returned. For an
// analyzer with organization as the type, this failure can be due to an issue with
// creating the service-linked roles required in the member accounts of the Amazon
// Web Services organization.
type StatusReason struct {
// The reason code for the current status of the analyzer.
//
// This member is required.
Code ReasonCode
noSmithyDocumentSerde
}
// A reference to a substring of a literal string in a JSON document.
type Substring struct {
// The length of the substring.
//
// This member is required.
Length *int32
// The start index of the substring, starting from 0.
//
// This member is required.
Start *int32
noSmithyDocumentSerde
}
// Contains details about the CloudTrail trail being analyzed to generate a policy.
type Trail struct {
// Specifies the ARN of the trail. The format of a trail ARN is
// arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail .
//
// This member is required.
CloudTrailArn *string
// Possible values are true or false . If set to true , IAM Access Analyzer
// retrieves CloudTrail data from all regions to analyze and generate a policy.
AllRegions *bool
// A list of regions to get CloudTrail data from and analyze to generate a policy.
Regions []string
noSmithyDocumentSerde
}
// Contains details about the CloudTrail trail being analyzed to generate a policy.
type TrailProperties struct {
// Specifies the ARN of the trail. The format of a trail ARN is
// arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail .
//
// This member is required.
CloudTrailArn *string
// Possible values are true or false . If set to true , IAM Access Analyzer
// retrieves CloudTrail data from all regions to analyze and generate a policy.
AllRegions *bool
// A list of regions to get CloudTrail data from and analyze to generate a policy.
Regions []string
noSmithyDocumentSerde
}
// Contains information about an unused access analyzer.
type UnusedAccessConfiguration struct {
// The specified access age in days for which to generate findings for unused
// access. For example, if you specify 90 days, the analyzer will generate findings
// for IAM entities within the accounts of the selected organization for any access
// that hasn't been used in 90 or more days since the analyzer's last scan. You can
// choose a value between 1 and 180 days.
UnusedAccessAge *int32
noSmithyDocumentSerde
}
// Contains information about an unused access finding for an action. IAM Access
// Analyzer charges for unused access analysis based on the number of IAM roles and
// users analyzed per month. For more details on pricing, see IAM Access Analyzer
// pricing (https://aws.amazon.com/iam/access-analyzer/pricing) .
type UnusedAction struct {
// The action for which the unused access finding was generated.
//
// This member is required.
Action *string
// The time at which the action was last accessed.
LastAccessed *time.Time
noSmithyDocumentSerde
}
// Contains information about an unused access finding for an IAM role. IAM Access
// Analyzer charges for unused access analysis based on the number of IAM roles and
// users analyzed per month. For more details on pricing, see IAM Access Analyzer
// pricing (https://aws.amazon.com/iam/access-analyzer/pricing) .
type UnusedIamRoleDetails struct {
// The time at which the role was last accessed.
LastAccessed *time.Time
noSmithyDocumentSerde
}
// Contains information about an unused access finding for an IAM user access key.
// IAM Access Analyzer charges for unused access analysis based on the number of
// IAM roles and users analyzed per month. For more details on pricing, see IAM
// Access Analyzer pricing (https://aws.amazon.com/iam/access-analyzer/pricing) .
type UnusedIamUserAccessKeyDetails struct {
// The ID of the access key for which the unused access finding was generated.
//
// This member is required.
AccessKeyId *string
// The time at which the access key was last accessed.
LastAccessed *time.Time
noSmithyDocumentSerde
}
// Contains information about an unused access finding for an IAM user password.
// IAM Access Analyzer charges for unused access analysis based on the number of
// IAM roles and users analyzed per month. For more details on pricing, see IAM
// Access Analyzer pricing (https://aws.amazon.com/iam/access-analyzer/pricing) .
type UnusedIamUserPasswordDetails struct {
// The time at which the password was last accessed.
LastAccessed *time.Time
noSmithyDocumentSerde
}
// Contains information about an unused access finding for a permission. IAM
// Access Analyzer charges for unused access analysis based on the number of IAM
// roles and users analyzed per month. For more details on pricing, see IAM Access
// Analyzer pricing (https://aws.amazon.com/iam/access-analyzer/pricing) .
type UnusedPermissionDetails struct {
// The namespace of the Amazon Web Services service that contains the unused
// actions.
//
// This member is required.
ServiceNamespace *string
// A list of unused actions for which the unused access finding was generated.
Actions []UnusedAction
// The time at which the permission last accessed.
LastAccessed *time.Time
noSmithyDocumentSerde
}
// A finding in a policy. Each finding is an actionable recommendation that can be
// used to improve the policy.
type ValidatePolicyFinding struct {
// A localized message that explains the finding and provides guidance on how to
// address it.
//
// This member is required.
FindingDetails *string
// The impact of the finding. Security warnings report when the policy allows
// access that we consider overly permissive. Errors report when a part of the
// policy is not functional. Warnings report non-security issues when a policy does
// not conform to policy writing best practices. Suggestions recommend stylistic
// improvements in the policy that do not impact access.
//
// This member is required.
FindingType ValidatePolicyFindingType
// The issue code provides an identifier of the issue associated with this finding.
//
// This member is required.
IssueCode *string
// A link to additional documentation about the type of finding.
//
// This member is required.
LearnMoreLink *string
// The list of locations in the policy document that are related to the finding.
// The issue code provides a summary of an issue identified by the finding.
//
// This member is required.
Locations []Location
noSmithyDocumentSerde
}
// Contains information about a validation exception.
type ValidationExceptionField struct {
// A message about the validation exception.
//
// This member is required.
Message *string
// The name of the validation exception.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// The proposed virtual private cloud (VPC) configuration for the Amazon S3 access
// point. VPC configuration does not apply to multi-region access points. For more
// information, see VpcConfiguration (https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_VpcConfiguration.html)
// .
type VpcConfiguration struct {
// If this field is specified, this access point will only allow connections from
// the specified VPC ID.
//
// This member is required.
VpcId *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isAclGrantee() {}
func (*UnknownUnionMember) isAnalyzerConfiguration() {}
func (*UnknownUnionMember) isConfiguration() {}
func (*UnknownUnionMember) isFindingDetails() {}
func (*UnknownUnionMember) isNetworkOriginConfiguration() {}
func (*UnknownUnionMember) isPathElement() {}
func (*UnknownUnionMember) isRdsDbClusterSnapshotAttributeValue() {}
func (*UnknownUnionMember) isRdsDbSnapshotAttributeValue() {}
|