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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// An object that contains details about when a principal in the reported
// Organizations entity last attempted to access an Amazon Web Services service. A
// principal can be an IAM user, an IAM role, or the Amazon Web Services account
// root user within the reported Organizations entity. This data type is a response
// element in the GetOrganizationsAccessReport operation.
type AccessDetail struct {
// The name of the service in which access was attempted.
//
// This member is required.
ServiceName *string
// The namespace of the service in which access was attempted. To learn the
// service namespace of a service, see Actions, resources, and condition keys for
// Amazon Web Services services (https://docs.aws.amazon.com/service-authorization/latest/reference/reference_policies_actions-resources-contextkeys.html)
// in the Service Authorization Reference. Choose the name of the service to view
// details for that service. In the first paragraph, find the service prefix. For
// example, (service prefix: a4b) . For more information about service namespaces,
// see Amazon Web Services service namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces)
// in the Amazon Web Services General Reference.
//
// This member is required.
ServiceNamespace *string
// The path of the Organizations entity (root, organizational unit, or account)
// from which an authenticated principal last attempted to access the service.
// Amazon Web Services does not report unauthenticated requests. This field is null
// if no principals (IAM users, IAM roles, or root user) in the reported
// Organizations entity attempted to access the service within the tracking period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// .
EntityPath *string
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when an authenticated principal most recently attempted to access the service.
// Amazon Web Services does not report unauthenticated requests. This field is null
// if no principals in the reported Organizations entity attempted to access the
// service within the tracking period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// .
LastAuthenticatedTime *time.Time
// The Region where the last service access attempt occurred. This field is null
// if no principals in the reported Organizations entity attempted to access the
// service within the tracking period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// .
Region *string
// The number of accounts with authenticated principals (root user, IAM users, and
// IAM roles) that attempted to access the service in the tracking period.
TotalAuthenticatedEntities *int32
noSmithyDocumentSerde
}
// Contains information about an Amazon Web Services access key. This data type is
// used as a response element in the CreateAccessKey and ListAccessKeys
// operations. The SecretAccessKey value is returned only in response to
// CreateAccessKey . You can get a secret access key only when you first create an
// access key; you cannot recover the secret access key later. If you lose a secret
// access key, you must create a new access key.
type AccessKey struct {
// The ID for this access key.
//
// This member is required.
AccessKeyId *string
// The secret key used to sign requests.
//
// This member is required.
SecretAccessKey *string
// The status of the access key. Active means that the key is valid for API calls,
// while Inactive means it is not.
//
// This member is required.
Status StatusType
// The name of the IAM user that the access key is associated with.
//
// This member is required.
UserName *string
// The date when the access key was created.
CreateDate *time.Time
noSmithyDocumentSerde
}
// Contains information about the last time an Amazon Web Services access key was
// used since IAM began tracking this information on April 22, 2015. This data type
// is used as a response element in the GetAccessKeyLastUsed operation.
type AccessKeyLastUsed struct {
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the access key was most recently used. This field is null in the
// following situations:
// - The user does not have an access key.
// - An access key exists but has not been used since IAM began tracking this
// information.
// - There is no sign-in data associated with the user.
//
// This member is required.
LastUsedDate *time.Time
// The Amazon Web Services Region where this access key was most recently used.
// The value for this field is "N/A" in the following situations:
// - The user does not have an access key.
// - An access key exists but has not been used since IAM began tracking this
// information.
// - There is no sign-in data associated with the user.
// For more information about Amazon Web Services Regions, see Regions and
// endpoints (https://docs.aws.amazon.com/general/latest/gr/rande.html) in the
// Amazon Web Services General Reference.
//
// This member is required.
Region *string
// The name of the Amazon Web Services service with which this access key was most
// recently used. The value of this field is "N/A" in the following situations:
// - The user does not have an access key.
// - An access key exists but has not been used since IAM started tracking this
// information.
// - There is no sign-in data associated with the user.
//
// This member is required.
ServiceName *string
noSmithyDocumentSerde
}
// Contains information about an Amazon Web Services access key, without its
// secret key. This data type is used as a response element in the ListAccessKeys
// operation.
type AccessKeyMetadata struct {
// The ID for this access key.
AccessKeyId *string
// The date when the access key was created.
CreateDate *time.Time
// The status of the access key. Active means that the key is valid for API calls;
// Inactive means it is not.
Status StatusType
// The name of the IAM user that the key is associated with.
UserName *string
noSmithyDocumentSerde
}
// Contains information about an attached permissions boundary. An attached
// permissions boundary is a managed policy that has been attached to a user or
// role to set the permissions boundary. For more information about permissions
// boundaries, see Permissions boundaries for IAM identities (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html)
// in the IAM User Guide.
type AttachedPermissionsBoundary struct {
// The ARN of the policy used to set the permissions boundary for the user or role.
PermissionsBoundaryArn *string
// The permissions boundary usage type that indicates what type of IAM resource is
// used as the permissions boundary for an entity. This data type can only have a
// value of Policy .
PermissionsBoundaryType PermissionsBoundaryAttachmentType
noSmithyDocumentSerde
}
// Contains information about an attached policy. An attached policy is a managed
// policy that has been attached to a user, group, or role. This data type is used
// as a response element in the ListAttachedGroupPolicies ,
// ListAttachedRolePolicies , ListAttachedUserPolicies , and
// GetAccountAuthorizationDetails operations. For more information about managed
// policies, refer to Managed policies and inline policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html)
// in the IAM User Guide.
type AttachedPolicy struct {
// The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web
// Services resources. For more information about ARNs, go to Amazon Resource
// Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// in the Amazon Web Services General Reference.
PolicyArn *string
// The friendly name of the attached policy.
PolicyName *string
noSmithyDocumentSerde
}
// Contains information about a condition context key. It includes the name of the
// key and specifies the value (or values, if the context key supports multiple
// values) to use in the simulation. This information is used when evaluating the
// Condition elements of the input policies. This data type is used as an input
// parameter to SimulateCustomPolicy and SimulatePrincipalPolicy .
type ContextEntry struct {
// The full name of a condition context key, including the service prefix. For
// example, aws:SourceIp or s3:VersionId .
ContextKeyName *string
// The data type of the value (or values) specified in the ContextKeyValues
// parameter.
ContextKeyType ContextKeyTypeEnum
// The value (or values, if the condition context key supports multiple values) to
// provide to the simulation when the key is referenced by a Condition element in
// an input policy.
ContextKeyValues []string
noSmithyDocumentSerde
}
// The reason that the service-linked role deletion failed. This data type is used
// as a response element in the GetServiceLinkedRoleDeletionStatus operation.
type DeletionTaskFailureReasonType struct {
// A short description of the reason that the service-linked role deletion failed.
Reason *string
// A list of objects that contains details about the service-linked role deletion
// failure, if that information is returned by the service. If the service-linked
// role has active sessions or if any resources that were used by the role have not
// been deleted from the linked service, the role can't be deleted. This parameter
// includes a list of the resources that are associated with the role and the
// Region in which the resources are being used.
RoleUsageList []RoleUsageType
noSmithyDocumentSerde
}
// An object that contains details about when the IAM entities (users or roles)
// were last used in an attempt to access the specified Amazon Web Services
// service. This data type is a response element in the
// GetServiceLastAccessedDetailsWithEntities operation.
type EntityDetails struct {
// The EntityInfo object that contains details about the entity (user or role).
//
// This member is required.
EntityInfo *EntityInfo
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the authenticated entity last attempted to access Amazon Web Services.
// Amazon Web Services does not report unauthenticated requests. This field is null
// if no IAM entities attempted to access the service within the tracking period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// .
LastAuthenticated *time.Time
noSmithyDocumentSerde
}
// Contains details about the specified entity (user or role). This data type is
// an element of the EntityDetails object.
type EntityInfo struct {
// The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web
// Services resources. For more information about ARNs, go to Amazon Resource
// Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// in the Amazon Web Services General Reference.
//
// This member is required.
Arn *string
// The identifier of the entity (user or role).
//
// This member is required.
Id *string
// The name of the entity (user or role).
//
// This member is required.
Name *string
// The type of entity (user or role).
//
// This member is required.
Type PolicyOwnerEntityType
// The path to the entity (user or role). For more information about paths, see
// IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
Path *string
noSmithyDocumentSerde
}
// Contains information about the reason that the operation failed. This data type
// is used as a response element in the GetOrganizationsAccessReport ,
// GetServiceLastAccessedDetails , and GetServiceLastAccessedDetailsWithEntities
// operations.
type ErrorDetails struct {
// The error code associated with the operation failure.
//
// This member is required.
Code *string
// Detailed information about the reason that the operation failed.
//
// This member is required.
Message *string
noSmithyDocumentSerde
}
// Contains the results of a simulation. This data type is used by the return
// parameter of SimulateCustomPolicy and SimulatePrincipalPolicy .
type EvaluationResult struct {
// The name of the API operation tested on the indicated resource.
//
// This member is required.
EvalActionName *string
// The result of the simulation.
//
// This member is required.
EvalDecision PolicyEvaluationDecisionType
// Additional details about the results of the cross-account evaluation decision.
// This parameter is populated for only cross-account simulations. It contains a
// brief summary of how each policy type contributes to the final evaluation
// decision. If the simulation evaluates policies within the same account and
// includes a resource ARN, then the parameter is present but the response is
// empty. If the simulation evaluates policies within the same account and
// specifies all resources ( * ), then the parameter is not returned. When you make
// a cross-account request, Amazon Web Services evaluates the request in the
// trusting account and the trusted account. The request is allowed only if both
// evaluations return true . For more information about how policies are evaluated,
// see Evaluating policies within a single account (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html#policy-eval-basics)
// . If an Organizations SCP included in the evaluation denies access, the
// simulation ends. In this case, policy evaluation does not proceed any further
// and this parameter is not returned.
EvalDecisionDetails map[string]PolicyEvaluationDecisionType
// The ARN of the resource that the indicated API operation was tested on.
EvalResourceName *string
// A list of the statements in the input policies that determine the result for
// this scenario. Remember that even if multiple statements allow the operation on
// the resource, if only one statement denies that operation, then the explicit
// deny overrides any allow. In addition, the deny statement is the only entry
// included in the result.
MatchedStatements []Statement
// A list of context keys that are required by the included input policies but
// that were not provided by one of the input parameters. This list is used when
// the resource in a simulation is "*", either explicitly, or when the ResourceArns
// parameter blank. If you include a list of resources, then any missing context
// values are instead included under the ResourceSpecificResults section. To
// discover the context keys used by a set of policies, you can call
// GetContextKeysForCustomPolicy or GetContextKeysForPrincipalPolicy .
MissingContextValues []string
// A structure that details how Organizations and its service control policies
// affect the results of the simulation. Only applies if the simulated user's
// account is part of an organization.
OrganizationsDecisionDetail *OrganizationsDecisionDetail
// Contains information about the effect that a permissions boundary has on a
// policy simulation when the boundary is applied to an IAM entity.
PermissionsBoundaryDecisionDetail *PermissionsBoundaryDecisionDetail
// The individual results of the simulation of the API operation specified in
// EvalActionName on each resource.
ResourceSpecificResults []ResourceSpecificResult
noSmithyDocumentSerde
}
// Contains information about an IAM group entity. This data type is used as a
// response element in the following operations:
// - CreateGroup
// - GetGroup
// - ListGroups
type Group struct {
// The Amazon Resource Name (ARN) specifying the group. For more information about
// ARNs and how to use them in policies, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
Arn *string
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the group was created.
//
// This member is required.
CreateDate *time.Time
// The stable and unique string identifying the group. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
GroupId *string
// The friendly name that identifies the group.
//
// This member is required.
GroupName *string
// The path to the group. For more information about paths, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
Path *string
noSmithyDocumentSerde
}
// Contains information about an IAM group, including all of the group's policies.
// This data type is used as a response element in the
// GetAccountAuthorizationDetails operation.
type GroupDetail struct {
// The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web
// Services resources. For more information about ARNs, go to Amazon Resource
// Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// in the Amazon Web Services General Reference.
Arn *string
// A list of the managed policies attached to the group.
AttachedManagedPolicies []AttachedPolicy
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the group was created.
CreateDate *time.Time
// The stable and unique string identifying the group. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
GroupId *string
// The friendly name that identifies the group.
GroupName *string
// A list of the inline policies embedded in the group.
GroupPolicyList []PolicyDetail
// The path to the group. For more information about paths, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
Path *string
noSmithyDocumentSerde
}
// Contains information about an instance profile. This data type is used as a
// response element in the following operations:
// - CreateInstanceProfile
// - GetInstanceProfile
// - ListInstanceProfiles
// - ListInstanceProfilesForRole
type InstanceProfile struct {
// The Amazon Resource Name (ARN) specifying the instance profile. For more
// information about ARNs and how to use them in policies, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
Arn *string
// The date when the instance profile was created.
//
// This member is required.
CreateDate *time.Time
// The stable and unique string identifying the instance profile. For more
// information about IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
InstanceProfileId *string
// The name identifying the instance profile.
//
// This member is required.
InstanceProfileName *string
// The path to the instance profile. For more information about paths, see IAM
// identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
Path *string
// The role associated with the instance profile.
//
// This member is required.
Roles []Role
// A list of tags that are attached to the instance profile. For more information
// about tagging, see Tagging IAM resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html)
// in the IAM User Guide.
Tags []Tag
noSmithyDocumentSerde
}
// Contains details about the permissions policies that are attached to the
// specified identity (user, group, or role). This data type is used as a response
// element in the ListPoliciesGrantingServiceAccess operation.
type ListPoliciesGrantingServiceAccessEntry struct {
// The PoliciesGrantingServiceAccess object that contains details about the policy.
Policies []PolicyGrantingServiceAccess
// The namespace of the service that was accessed. To learn the service namespace
// of a service, see Actions, resources, and condition keys for Amazon Web
// Services services (https://docs.aws.amazon.com/service-authorization/latest/reference/reference_policies_actions-resources-contextkeys.html)
// in the Service Authorization Reference. Choose the name of the service to view
// details for that service. In the first paragraph, find the service prefix. For
// example, (service prefix: a4b) . For more information about service namespaces,
// see Amazon Web Services service namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces)
// in the Amazon Web Services General Reference.
ServiceNamespace *string
noSmithyDocumentSerde
}
// Contains the user name and password create date for a user. This data type is
// used as a response element in the CreateLoginProfile and GetLoginProfile
// operations.
type LoginProfile struct {
// The date when the password for the user was created.
//
// This member is required.
CreateDate *time.Time
// The name of the user, which can be used for signing in to the Amazon Web
// Services Management Console.
//
// This member is required.
UserName *string
// Specifies whether the user is required to set a new password on next sign-in.
PasswordResetRequired bool
noSmithyDocumentSerde
}
// Contains information about a managed policy, including the policy's ARN,
// versions, and the number of principal entities (users, groups, and roles) that
// the policy is attached to. This data type is used as a response element in the
// GetAccountAuthorizationDetails operation. For more information about managed
// policies, see Managed policies and inline policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html)
// in the IAM User Guide.
type ManagedPolicyDetail struct {
// The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web
// Services resources. For more information about ARNs, go to Amazon Resource
// Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// in the Amazon Web Services General Reference.
Arn *string
// The number of principal entities (users, groups, and roles) that the policy is
// attached to.
AttachmentCount *int32
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the policy was created.
CreateDate *time.Time
// The identifier for the version of the policy that is set as the default
// (operative) version. For more information about policy versions, see Versioning
// for managed policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html)
// in the IAM User Guide.
DefaultVersionId *string
// A friendly description of the policy.
Description *string
// Specifies whether the policy can be attached to an IAM user, group, or role.
IsAttachable bool
// The path to the policy. For more information about paths, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
Path *string
// The number of entities (users and roles) for which the policy is used as the
// permissions boundary. For more information about permissions boundaries, see
// Permissions boundaries for IAM identities (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html)
// in the IAM User Guide.
PermissionsBoundaryUsageCount *int32
// The stable and unique string identifying the policy. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
PolicyId *string
// The friendly name (not ARN) identifying the policy.
PolicyName *string
// A list containing information about the versions of the policy.
PolicyVersionList []PolicyVersion
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the policy was last updated. When a policy has only one version, this
// field contains the date and time when the policy was created. When a policy has
// more than one version, this field contains the date and time when the most
// recent policy version was created.
UpdateDate *time.Time
noSmithyDocumentSerde
}
// Contains information about an MFA device. This data type is used as a response
// element in the ListMFADevices operation.
type MFADevice struct {
// The date when the MFA device was enabled for the user.
//
// This member is required.
EnableDate *time.Time
// The serial number that uniquely identifies the MFA device. For virtual MFA
// devices, the serial number is the device ARN.
//
// This member is required.
SerialNumber *string
// The user with whom the MFA device is associated.
//
// This member is required.
UserName *string
noSmithyDocumentSerde
}
// Contains the Amazon Resource Name (ARN) for an IAM OpenID Connect provider.
type OpenIDConnectProviderListEntry struct {
// The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web
// Services resources. For more information about ARNs, go to Amazon Resource
// Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// in the Amazon Web Services General Reference.
Arn *string
noSmithyDocumentSerde
}
// Contains information about the effect that Organizations has on a policy
// simulation.
type OrganizationsDecisionDetail struct {
// Specifies whether the simulated operation is allowed by the Organizations
// service control policies that impact the simulated user's account.
AllowedByOrganizations bool
noSmithyDocumentSerde
}
// Contains information about the account password policy. This data type is used
// as a response element in the GetAccountPasswordPolicy operation.
type PasswordPolicy struct {
// Specifies whether IAM users are allowed to change their own password. Gives IAM
// users permissions to iam:ChangePassword for only their user and to the
// iam:GetAccountPasswordPolicy action. This option does not attach a permissions
// policy to each user, rather the permissions are applied at the account-level for
// all users by IAM.
AllowUsersToChangePassword bool
// Indicates whether passwords in the account expire. Returns true if
// MaxPasswordAge contains a value greater than 0. Returns false if MaxPasswordAge
// is 0 or not present.
ExpirePasswords bool
// Specifies whether IAM users are prevented from setting a new password via the
// Amazon Web Services Management Console after their password has expired. The IAM
// user cannot access the console until an administrator resets the password. IAM
// users with iam:ChangePassword permission and active access keys can reset their
// own expired console password using the CLI or API.
HardExpiry *bool
// The number of days that an IAM user password is valid.
MaxPasswordAge *int32
// Minimum length to require for IAM user passwords.
MinimumPasswordLength *int32
// Specifies the number of previous passwords that IAM users are prevented from
// reusing.
PasswordReusePrevention *int32
// Specifies whether IAM user passwords must contain at least one lowercase
// character (a to z).
RequireLowercaseCharacters bool
// Specifies whether IAM user passwords must contain at least one numeric
// character (0 to 9).
RequireNumbers bool
// Specifies whether IAM user passwords must contain at least one of the following
// symbols: ! @ # $ % ^ & * ( ) _ + - = [ ] { } | '
RequireSymbols bool
// Specifies whether IAM user passwords must contain at least one uppercase
// character (A to Z).
RequireUppercaseCharacters bool
noSmithyDocumentSerde
}
// Contains information about the effect that a permissions boundary has on a
// policy simulation when the boundary is applied to an IAM entity.
type PermissionsBoundaryDecisionDetail struct {
// Specifies whether an action is allowed by a permissions boundary that is
// applied to an IAM entity (user or role). A value of true means that the
// permissions boundary does not deny the action. This means that the policy
// includes an Allow statement that matches the request. In this case, if an
// identity-based policy also allows the action, the request is allowed. A value of
// false means that either the requested action is not allowed (implicitly denied)
// or that the action is explicitly denied by the permissions boundary. In both of
// these cases, the action is not allowed, regardless of the identity-based policy.
AllowedByPermissionsBoundary bool
noSmithyDocumentSerde
}
// Contains information about a managed policy. This data type is used as a
// response element in the CreatePolicy , GetPolicy , and ListPolicies operations.
// For more information about managed policies, refer to Managed policies and
// inline policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html)
// in the IAM User Guide.
type Policy struct {
// The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web
// Services resources. For more information about ARNs, go to Amazon Resource
// Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// in the Amazon Web Services General Reference.
Arn *string
// The number of entities (users, groups, and roles) that the policy is attached
// to.
AttachmentCount *int32
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the policy was created.
CreateDate *time.Time
// The identifier for the version of the policy that is set as the default version.
DefaultVersionId *string
// A friendly description of the policy. This element is included in the response
// to the GetPolicy operation. It is not included in the response to the
// ListPolicies operation.
Description *string
// Specifies whether the policy can be attached to an IAM user, group, or role.
IsAttachable bool
// The path to the policy. For more information about paths, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
Path *string
// The number of entities (users and roles) for which the policy is used to set
// the permissions boundary. For more information about permissions boundaries, see
// Permissions boundaries for IAM identities (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html)
// in the IAM User Guide.
PermissionsBoundaryUsageCount *int32
// The stable and unique string identifying the policy. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
PolicyId *string
// The friendly name (not ARN) identifying the policy.
PolicyName *string
// A list of tags that are attached to the instance profile. For more information
// about tagging, see Tagging IAM resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html)
// in the IAM User Guide.
Tags []Tag
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the policy was last updated. When a policy has only one version, this
// field contains the date and time when the policy was created. When a policy has
// more than one version, this field contains the date and time when the most
// recent policy version was created.
UpdateDate *time.Time
noSmithyDocumentSerde
}
// Contains information about an IAM policy, including the policy document. This
// data type is used as a response element in the GetAccountAuthorizationDetails
// operation.
type PolicyDetail struct {
// The policy document.
PolicyDocument *string
// The name of the policy.
PolicyName *string
noSmithyDocumentSerde
}
// Contains details about the permissions policies that are attached to the
// specified identity (user, group, or role). This data type is an element of the
// ListPoliciesGrantingServiceAccessEntry object.
type PolicyGrantingServiceAccess struct {
// The policy name.
//
// This member is required.
PolicyName *string
// The policy type. For more information about these policy types, see Managed
// policies and inline policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html)
// in the IAM User Guide.
//
// This member is required.
PolicyType PolicyType
// The name of the entity (user or role) to which the inline policy is attached.
// This field is null for managed policies. For more information about these policy
// types, see Managed policies and inline policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html)
// in the IAM User Guide.
EntityName *string
// The type of entity (user or role) that used the policy to access the service to
// which the inline policy is attached. This field is null for managed policies.
// For more information about these policy types, see Managed policies and inline
// policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html)
// in the IAM User Guide.
EntityType PolicyOwnerEntityType
// The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web
// Services resources. For more information about ARNs, go to Amazon Resource
// Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// in the Amazon Web Services General Reference.
PolicyArn *string
noSmithyDocumentSerde
}
// Contains information about a group that a managed policy is attached to. This
// data type is used as a response element in the ListEntitiesForPolicy operation.
// For more information about managed policies, refer to Managed policies and
// inline policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html)
// in the IAM User Guide.
type PolicyGroup struct {
// The stable and unique string identifying the group. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html)
// in the IAM User Guide.
GroupId *string
// The name (friendly name, not ARN) identifying the group.
GroupName *string
noSmithyDocumentSerde
}
// Contains information about a role that a managed policy is attached to. This
// data type is used as a response element in the ListEntitiesForPolicy operation.
// For more information about managed policies, refer to Managed policies and
// inline policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html)
// in the IAM User Guide.
type PolicyRole struct {
// The stable and unique string identifying the role. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html)
// in the IAM User Guide.
RoleId *string
// The name (friendly name, not ARN) identifying the role.
RoleName *string
noSmithyDocumentSerde
}
// Contains information about a user that a managed policy is attached to. This
// data type is used as a response element in the ListEntitiesForPolicy operation.
// For more information about managed policies, refer to Managed policies and
// inline policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html)
// in the IAM User Guide.
type PolicyUser struct {
// The stable and unique string identifying the user. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html)
// in the IAM User Guide.
UserId *string
// The name (friendly name, not ARN) identifying the user.
UserName *string
noSmithyDocumentSerde
}
// Contains information about a version of a managed policy. This data type is
// used as a response element in the CreatePolicyVersion , GetPolicyVersion ,
// ListPolicyVersions , and GetAccountAuthorizationDetails operations. For more
// information about managed policies, refer to Managed policies and inline
// policies (https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-vs-inline.html)
// in the IAM User Guide.
type PolicyVersion struct {
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the policy version was created.
CreateDate *time.Time
// The policy document. The policy document is returned in the response to the
// GetPolicyVersion and GetAccountAuthorizationDetails operations. It is not
// returned in the response to the CreatePolicyVersion or ListPolicyVersions
// operations. The policy document returned in this structure is URL-encoded
// compliant with RFC 3986 (https://tools.ietf.org/html/rfc3986) . You can use a
// URL decoding method to convert the policy back to plain JSON text. For example,
// if you use Java, you can use the decode method of the java.net.URLDecoder
// utility class in the Java SDK. Other languages and SDKs provide similar
// functionality.
Document *string
// Specifies whether the policy version is set as the policy's default version.
IsDefaultVersion bool
// The identifier for the policy version. Policy version identifiers always begin
// with v (always lowercase). When a policy is created, the first policy version
// is v1 .
VersionId *string
noSmithyDocumentSerde
}
// Contains the row and column of a location of a Statement element in a policy
// document. This data type is used as a member of the Statement type.
type Position struct {
// The column in the line containing the specified position in the document.
Column int32
// The line containing the specified position in the document.
Line int32
noSmithyDocumentSerde
}
// Contains the result of the simulation of a single API operation call on a
// single resource. This data type is used by a member of the EvaluationResult
// data type.
type ResourceSpecificResult struct {
// The result of the simulation of the simulated API operation on the resource
// specified in EvalResourceName .
//
// This member is required.
EvalResourceDecision PolicyEvaluationDecisionType
// The name of the simulated resource, in Amazon Resource Name (ARN) format.
//
// This member is required.
EvalResourceName *string
// Additional details about the results of the evaluation decision on a single
// resource. This parameter is returned only for cross-account simulations. This
// parameter explains how each policy type contributes to the resource-specific
// evaluation decision.
EvalDecisionDetails map[string]PolicyEvaluationDecisionType
// A list of the statements in the input policies that determine the result for
// this part of the simulation. Remember that even if multiple statements allow the
// operation on the resource, if any statement denies that operation, then the
// explicit deny overrides any allow. In addition, the deny statement is the only
// entry included in the result.
MatchedStatements []Statement
// A list of context keys that are required by the included input policies but
// that were not provided by one of the input parameters. This list is used when a
// list of ARNs is included in the ResourceArns parameter instead of "*". If you
// do not specify individual resources, by setting ResourceArns to "*" or by not
// including the ResourceArns parameter, then any missing context values are
// instead included under the EvaluationResults section. To discover the context
// keys used by a set of policies, you can call GetContextKeysForCustomPolicy or
// GetContextKeysForPrincipalPolicy .
MissingContextValues []string
// Contains information about the effect that a permissions boundary has on a
// policy simulation when that boundary is applied to an IAM entity.
PermissionsBoundaryDecisionDetail *PermissionsBoundaryDecisionDetail
noSmithyDocumentSerde
}
// Contains information about an IAM role. This structure is returned as a
// response element in several API operations that interact with roles.
type Role struct {
// The Amazon Resource Name (ARN) specifying the role. For more information about
// ARNs and how to use them in policies, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide guide.
//
// This member is required.
Arn *string
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the role was created.
//
// This member is required.
CreateDate *time.Time
// The path to the role. For more information about paths, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
Path *string
// The stable and unique string identifying the role. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
RoleId *string
// The friendly name that identifies the role.
//
// This member is required.
RoleName *string
// The policy that grants an entity permission to assume the role.
AssumeRolePolicyDocument *string
// A description of the role that you provide.
Description *string
// The maximum session duration (in seconds) for the specified role. Anyone who
// uses the CLI, or API to assume the role can specify the duration using the
// optional DurationSeconds API parameter or duration-seconds CLI parameter.
MaxSessionDuration *int32
// The ARN of the policy used to set the permissions boundary for the role. For
// more information about permissions boundaries, see Permissions boundaries for
// IAM identities (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html)
// in the IAM User Guide.
PermissionsBoundary *AttachedPermissionsBoundary
// Contains information about the last time that an IAM role was used. This
// includes the date and time and the Region in which the role was last used.
// Activity is only reported for the trailing 400 days. This period can be shorter
// if your Region began supporting these features within the last year. The role
// might have been used more than 400 days ago. For more information, see Regions
// where data is tracked (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#access-advisor_tracking-period)
// in the IAM user Guide.
RoleLastUsed *RoleLastUsed
// A list of tags that are attached to the role. For more information about
// tagging, see Tagging IAM resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html)
// in the IAM User Guide.
Tags []Tag
noSmithyDocumentSerde
}
// Contains information about an IAM role, including all of the role's policies.
// This data type is used as a response element in the
// GetAccountAuthorizationDetails operation.
type RoleDetail struct {
// The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web
// Services resources. For more information about ARNs, go to Amazon Resource
// Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// in the Amazon Web Services General Reference.
Arn *string
// The trust policy that grants permission to assume the role.
AssumeRolePolicyDocument *string
// A list of managed policies attached to the role. These policies are the role's
// access (permissions) policies.
AttachedManagedPolicies []AttachedPolicy
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the role was created.
CreateDate *time.Time
// A list of instance profiles that contain this role.
InstanceProfileList []InstanceProfile
// The path to the role. For more information about paths, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
Path *string
// The ARN of the policy used to set the permissions boundary for the role. For
// more information about permissions boundaries, see Permissions boundaries for
// IAM identities (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html)
// in the IAM User Guide.
PermissionsBoundary *AttachedPermissionsBoundary
// The stable and unique string identifying the role. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
RoleId *string
// Contains information about the last time that an IAM role was used. This
// includes the date and time and the Region in which the role was last used.
// Activity is only reported for the trailing 400 days. This period can be shorter
// if your Region began supporting these features within the last year. The role
// might have been used more than 400 days ago. For more information, see Regions
// where data is tracked (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#access-advisor_tracking-period)
// in the IAM User Guide.
RoleLastUsed *RoleLastUsed
// The friendly name that identifies the role.
RoleName *string
// A list of inline policies embedded in the role. These policies are the role's
// access (permissions) policies.
RolePolicyList []PolicyDetail
// A list of tags that are attached to the role. For more information about
// tagging, see Tagging IAM resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html)
// in the IAM User Guide.
Tags []Tag
noSmithyDocumentSerde
}
// Contains information about the last time that an IAM role was used. This
// includes the date and time and the Region in which the role was last used.
// Activity is only reported for the trailing 400 days. This period can be shorter
// if your Region began supporting these features within the last year. The role
// might have been used more than 400 days ago. For more information, see Regions
// where data is tracked (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#access-advisor_tracking-period)
// in the IAM user Guide. This data type is returned as a response element in the
// GetRole and GetAccountAuthorizationDetails operations.
type RoleLastUsed struct {
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// that the role was last used. This field is null if the role has not been used
// within the IAM tracking period. For more information about the tracking period,
// see Regions where data is tracked (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#access-advisor_tracking-period)
// in the IAM User Guide.
LastUsedDate *time.Time
// The name of the Amazon Web Services Region in which the role was last used.
Region *string
noSmithyDocumentSerde
}
// An object that contains details about how a service-linked role is used, if
// that information is returned by the service. This data type is used as a
// response element in the GetServiceLinkedRoleDeletionStatus operation.
type RoleUsageType struct {
// The name of the Region where the service-linked role is being used.
Region *string
// The name of the resource that is using the service-linked role.
Resources []string
noSmithyDocumentSerde
}
// Contains the list of SAML providers for this account.
type SAMLProviderListEntry struct {
// The Amazon Resource Name (ARN) of the SAML provider.
Arn *string
// The date and time when the SAML provider was created.
CreateDate *time.Time
// The expiration date and time for the SAML provider.
ValidUntil *time.Time
noSmithyDocumentSerde
}
// Contains information about a server certificate. This data type is used as a
// response element in the GetServerCertificate operation.
type ServerCertificate struct {
// The contents of the public key certificate.
//
// This member is required.
CertificateBody *string
// The meta information of the server certificate, such as its name, path, ID, and
// ARN.
//
// This member is required.
ServerCertificateMetadata *ServerCertificateMetadata
// The contents of the public key certificate chain.
CertificateChain *string
// A list of tags that are attached to the server certificate. For more
// information about tagging, see Tagging IAM resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html)
// in the IAM User Guide.
Tags []Tag
noSmithyDocumentSerde
}
// Contains information about a server certificate without its certificate body,
// certificate chain, and private key. This data type is used as a response element
// in the UploadServerCertificate and ListServerCertificates operations.
type ServerCertificateMetadata struct {
// The Amazon Resource Name (ARN) specifying the server certificate. For more
// information about ARNs and how to use them in policies, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
Arn *string
// The path to the server certificate. For more information about paths, see IAM
// identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
Path *string
// The stable and unique string identifying the server certificate. For more
// information about IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
ServerCertificateId *string
// The name that identifies the server certificate.
//
// This member is required.
ServerCertificateName *string
// The date on which the certificate is set to expire.
Expiration *time.Time
// The date when the server certificate was uploaded.
UploadDate *time.Time
noSmithyDocumentSerde
}
// Contains details about the most recent attempt to access the service. This data
// type is used as a response element in the GetServiceLastAccessedDetails
// operation.
type ServiceLastAccessed struct {
// The name of the service in which access was attempted.
//
// This member is required.
ServiceName *string
// The namespace of the service in which access was attempted. To learn the
// service namespace of a service, see Actions, resources, and condition keys for
// Amazon Web Services services (https://docs.aws.amazon.com/service-authorization/latest/reference/reference_policies_actions-resources-contextkeys.html)
// in the Service Authorization Reference. Choose the name of the service to view
// details for that service. In the first paragraph, find the service prefix. For
// example, (service prefix: a4b) . For more information about service namespaces,
// see Amazon Web Services Service Namespaces (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces)
// in the Amazon Web Services General Reference.
//
// This member is required.
ServiceNamespace *string
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when an authenticated entity most recently attempted to access the service.
// Amazon Web Services does not report unauthenticated requests. This field is null
// if no IAM entities attempted to access the service within the tracking period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// .
LastAuthenticated *time.Time
// The ARN of the authenticated entity (user or role) that last attempted to
// access the service. Amazon Web Services does not report unauthenticated
// requests. This field is null if no IAM entities attempted to access the service
// within the tracking period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// .
LastAuthenticatedEntity *string
// The Region from which the authenticated entity (user or role) last attempted to
// access the service. Amazon Web Services does not report unauthenticated
// requests. This field is null if no IAM entities attempted to access the service
// within the tracking period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// .
LastAuthenticatedRegion *string
// The total number of authenticated principals (root user, IAM users, or IAM
// roles) that have attempted to access the service. This field is null if no
// principals attempted to access the service within the tracking period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// .
TotalAuthenticatedEntities *int32
// An object that contains details about the most recent attempt to access a
// tracked action within the service. This field is null if there no tracked
// actions or if the principal did not use the tracked actions within the tracking
// period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// . This field is also null if the report was generated at the service level and
// not the action level. For more information, see the Granularity field in
// GenerateServiceLastAccessedDetails .
TrackedActionsLastAccessed []TrackedActionLastAccessed
noSmithyDocumentSerde
}
// Contains the details of a service-specific credential.
type ServiceSpecificCredential struct {
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the service-specific credential were created.
//
// This member is required.
CreateDate *time.Time
// The name of the service associated with the service-specific credential.
//
// This member is required.
ServiceName *string
// The generated password for the service-specific credential.
//
// This member is required.
ServicePassword *string
// The unique identifier for the service-specific credential.
//
// This member is required.
ServiceSpecificCredentialId *string
// The generated user name for the service-specific credential. This value is
// generated by combining the IAM user's name combined with the ID number of the
// Amazon Web Services account, as in jane-at-123456789012 , for example. This
// value cannot be configured by the user.
//
// This member is required.
ServiceUserName *string
// The status of the service-specific credential. Active means that the key is
// valid for API calls, while Inactive means it is not.
//
// This member is required.
Status StatusType
// The name of the IAM user associated with the service-specific credential.
//
// This member is required.
UserName *string
noSmithyDocumentSerde
}
// Contains additional details about a service-specific credential.
type ServiceSpecificCredentialMetadata struct {
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the service-specific credential were created.
//
// This member is required.
CreateDate *time.Time
// The name of the service associated with the service-specific credential.
//
// This member is required.
ServiceName *string
// The unique identifier for the service-specific credential.
//
// This member is required.
ServiceSpecificCredentialId *string
// The generated user name for the service-specific credential.
//
// This member is required.
ServiceUserName *string
// The status of the service-specific credential. Active means that the key is
// valid for API calls, while Inactive means it is not.
//
// This member is required.
Status StatusType
// The name of the IAM user associated with the service-specific credential.
//
// This member is required.
UserName *string
noSmithyDocumentSerde
}
// Contains information about an X.509 signing certificate. This data type is used
// as a response element in the UploadSigningCertificate and
// ListSigningCertificates operations.
type SigningCertificate struct {
// The contents of the signing certificate.
//
// This member is required.
CertificateBody *string
// The ID for the signing certificate.
//
// This member is required.
CertificateId *string
// The status of the signing certificate. Active means that the key is valid for
// API calls, while Inactive means it is not.
//
// This member is required.
Status StatusType
// The name of the user the signing certificate is associated with.
//
// This member is required.
UserName *string
// The date when the signing certificate was uploaded.
UploadDate *time.Time
noSmithyDocumentSerde
}
// Contains information about an SSH public key. This data type is used as a
// response element in the GetSSHPublicKey and UploadSSHPublicKey operations.
type SSHPublicKey struct {
// The MD5 message digest of the SSH public key.
//
// This member is required.
Fingerprint *string
// The SSH public key.
//
// This member is required.
SSHPublicKeyBody *string
// The unique identifier for the SSH public key.
//
// This member is required.
SSHPublicKeyId *string
// The status of the SSH public key. Active means that the key can be used for
// authentication with an CodeCommit repository. Inactive means that the key
// cannot be used.
//
// This member is required.
Status StatusType
// The name of the IAM user associated with the SSH public key.
//
// This member is required.
UserName *string
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the SSH public key was uploaded.
UploadDate *time.Time
noSmithyDocumentSerde
}
// Contains information about an SSH public key, without the key's body or
// fingerprint. This data type is used as a response element in the
// ListSSHPublicKeys operation.
type SSHPublicKeyMetadata struct {
// The unique identifier for the SSH public key.
//
// This member is required.
SSHPublicKeyId *string
// The status of the SSH public key. Active means that the key can be used for
// authentication with an CodeCommit repository. Inactive means that the key
// cannot be used.
//
// This member is required.
Status StatusType
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the SSH public key was uploaded.
//
// This member is required.
UploadDate *time.Time
// The name of the IAM user associated with the SSH public key.
//
// This member is required.
UserName *string
noSmithyDocumentSerde
}
// Contains a reference to a Statement element in a policy document that
// determines the result of the simulation. This data type is used by the
// MatchedStatements member of the EvaluationResult type.
type Statement struct {
// The row and column of the end of a Statement in an IAM policy.
EndPosition *Position
// The identifier of the policy that was provided as an input.
SourcePolicyId *string
// The type of the policy.
SourcePolicyType PolicySourceType
// The row and column of the beginning of the Statement in an IAM policy.
StartPosition *Position
noSmithyDocumentSerde
}
// A structure that represents user-provided metadata that can be associated with
// an IAM resource. For more information about tagging, see Tagging IAM resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html)
// in the IAM User Guide.
type Tag struct {
// The key name that can be used to look up or retrieve the associated value. For
// example, Department or Cost Center are common choices.
//
// This member is required.
Key *string
// The value associated with this tag. For example, tags with a key name of
// Department could have values such as Human Resources , Accounting , and Support
// . Tags with a key name of Cost Center might have values that consist of the
// number associated with the different cost centers in your company. Typically,
// many resources have tags with the same key name but with different values.
// Amazon Web Services always interprets the tag Value as a single string. If you
// need to store an array, you can store comma-separated values in the string.
// However, you must interpret the value in your code.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// Contains details about the most recent attempt to access an action within the
// service. This data type is used as a response element in the
// GetServiceLastAccessedDetails operation.
type TrackedActionLastAccessed struct {
// The name of the tracked action to which access was attempted. Tracked actions
// are actions that report activity to IAM.
ActionName *string
// The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web
// Services resources. For more information about ARNs, go to Amazon Resource
// Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// in the Amazon Web Services General Reference.
LastAccessedEntity *string
// The Region from which the authenticated entity (user or role) last attempted to
// access the tracked action. Amazon Web Services does not report unauthenticated
// requests. This field is null if no IAM entities attempted to access the service
// within the tracking period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// .
LastAccessedRegion *string
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when an authenticated entity most recently attempted to access the tracked
// service. Amazon Web Services does not report unauthenticated requests. This
// field is null if no IAM entities attempted to access the service within the
// tracking period (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period)
// .
LastAccessedTime *time.Time
noSmithyDocumentSerde
}
// Contains information about an IAM user entity. This data type is used as a
// response element in the following operations:
// - CreateUser
// - GetUser
// - ListUsers
type User struct {
// The Amazon Resource Name (ARN) that identifies the user. For more information
// about ARNs and how to use ARNs in policies, see IAM Identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
Arn *string
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the user was created.
//
// This member is required.
CreateDate *time.Time
// The path to the user. For more information about paths, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide. The ARN of the policy used to set the permissions
// boundary for the user.
//
// This member is required.
Path *string
// The stable and unique string identifying the user. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
//
// This member is required.
UserId *string
// The friendly name identifying the user.
//
// This member is required.
UserName *string
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the user's password was last used to sign in to an Amazon Web Services
// website. For a list of Amazon Web Services websites that capture a user's last
// sign-in time, see the Credential reports (https://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html)
// topic in the IAM User Guide. If a password is used more than once in a
// five-minute span, only the first use is returned in this field. If the field is
// null (no value), then it indicates that they never signed in with a password.
// This can be because:
// - The user never had a password.
// - A password exists but has not been used since IAM started tracking this
// information on October 20, 2014.
// A null value does not mean that the user never had a password. Also, if the
// user does not currently have a password but had one in the past, then this field
// contains the date and time the most recent password was used. This value is
// returned only in the GetUser and ListUsers operations.
PasswordLastUsed *time.Time
// For more information about permissions boundaries, see Permissions boundaries
// for IAM identities (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html)
// in the IAM User Guide.
PermissionsBoundary *AttachedPermissionsBoundary
// A list of tags that are associated with the user. For more information about
// tagging, see Tagging IAM resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html)
// in the IAM User Guide.
Tags []Tag
noSmithyDocumentSerde
}
// Contains information about an IAM user, including all the user's policies and
// all the IAM groups the user is in. This data type is used as a response element
// in the GetAccountAuthorizationDetails operation.
type UserDetail struct {
// The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web
// Services resources. For more information about ARNs, go to Amazon Resource
// Names (ARNs) (https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// in the Amazon Web Services General Reference.
Arn *string
// A list of the managed policies attached to the user.
AttachedManagedPolicies []AttachedPolicy
// The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601)
// , when the user was created.
CreateDate *time.Time
// A list of IAM groups that the user is in.
GroupList []string
// The path to the user. For more information about paths, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
Path *string
// The ARN of the policy used to set the permissions boundary for the user. For
// more information about permissions boundaries, see Permissions boundaries for
// IAM identities (https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html)
// in the IAM User Guide.
PermissionsBoundary *AttachedPermissionsBoundary
// A list of tags that are associated with the user. For more information about
// tagging, see Tagging IAM resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html)
// in the IAM User Guide.
Tags []Tag
// The stable and unique string identifying the user. For more information about
// IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
// in the IAM User Guide.
UserId *string
// The friendly name identifying the user.
UserName *string
// A list of the inline policies embedded in the user.
UserPolicyList []PolicyDetail
noSmithyDocumentSerde
}
// Contains information about a virtual MFA device.
type VirtualMFADevice struct {
// The serial number associated with VirtualMFADevice .
//
// This member is required.
SerialNumber *string
// The base32 seed defined as specified in RFC3548 (https://tools.ietf.org/html/rfc3548.txt)
// . The Base32StringSeed is base32-encoded.
Base32StringSeed []byte
// The date and time on which the virtual MFA device was enabled.
EnableDate *time.Time
// A QR code PNG image that encodes
// otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String where
// $virtualMFADeviceName is one of the create call arguments. AccountName is the
// user name if set (otherwise, the account ID otherwise), and Base32String is the
// seed in base32 format. The Base32String value is base64-encoded.
QRCodePNG []byte
// A list of tags that are attached to the virtual MFA device. For more
// information about tagging, see Tagging IAM resources (https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html)
// in the IAM User Guide.
Tags []Tag
// The IAM user associated with this virtual MFA device.
User *User
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|