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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// The choice level additional resources for a custom lens. This field does not
// apply to Amazon Web Services official lenses.
type AdditionalResources struct {
// The URLs for additional resources, either helpful resources or improvement
// plans, for a custom lens. Up to five additional URLs can be specified.
Content []ChoiceContent
// Type of additional resource for a custom lens.
Type AdditionalResourceType
noSmithyDocumentSerde
}
// An answer of the question.
type Answer struct {
// A list of selected choices to a question in your workload.
ChoiceAnswers []ChoiceAnswer
// List of choices available for a question.
Choices []Choice
// The helpful resource text to be displayed for a custom lens. This field does
// not apply to Amazon Web Services official lenses.
HelpfulResourceDisplayText *string
// The helpful resource URL. For Amazon Web Services official lenses, this is the
// helpful resource URL for a question or choice. For custom lenses, this is the
// helpful resource URL for a question and is only provided if
// HelpfulResourceDisplayText was specified for the question.
HelpfulResourceUrl *string
// The improvement plan URL for a question in an Amazon Web Services official
// lenses. This value is only available if the question has been answered. This
// value does not apply to custom lenses.
ImprovementPlanUrl *string
// Defines whether this question is applicable to a lens review.
IsApplicable *bool
// The notes associated with the workload. For a review template, these are the
// notes that will be associated with the workload when the template is applied.
Notes *string
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// The description of the question.
QuestionDescription *string
// The ID of the question.
QuestionId *string
// The title of the question.
QuestionTitle *string
// The reason why the question is not applicable to your workload.
Reason AnswerReason
// The risk for a given workload, lens review, pillar, or question.
Risk Risk
// List of selected choice IDs in a question answer. The values entered replace
// the previously selected choices.
SelectedChoices []string
noSmithyDocumentSerde
}
// An answer summary of a lens review in a workload.
type AnswerSummary struct {
// A list of selected choices to a question in your workload.
ChoiceAnswerSummaries []ChoiceAnswerSummary
// List of choices available for a question.
Choices []Choice
// Defines whether this question is applicable to a lens review.
IsApplicable *bool
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// The ID of the question.
QuestionId *string
// The title of the question.
QuestionTitle *string
// The type of the question.
QuestionType QuestionType
// The reason why a choice is non-applicable to a question in your workload.
Reason AnswerReason
// The risk for a given workload, lens review, pillar, or question.
Risk Risk
// List of selected choice IDs in a question answer. The values entered replace
// the previously selected choices.
SelectedChoices []string
noSmithyDocumentSerde
}
// A best practice, or question choice, that has been identified as a risk in this
// question.
type BestPractice struct {
// The ID of a choice.
ChoiceId *string
// The title of a choice.
ChoiceTitle *string
noSmithyDocumentSerde
}
// Account details for a Well-Architected best practice in relation to Trusted
// Advisor checks.
type CheckDetail struct {
// An Amazon Web Services account ID.
AccountId *string
// The ID of a choice.
ChoiceId *string
// Trusted Advisor check description.
Description *string
// Count of flagged resources associated to the check.
FlaggedResources *int32
// Trusted Advisor check ID.
Id *string
// Well-Architected Lens ARN associated to the check.
LensArn *string
// Trusted Advisor check name.
Name *string
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// Provider of the check related to the best practice.
Provider CheckProvider
// The ID of the question.
QuestionId *string
// Reason associated to the check.
Reason CheckFailureReason
// Status associated to the check.
Status CheckStatus
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// Trusted Advisor check summary.
type CheckSummary struct {
// Account summary associated to the check.
AccountSummary map[string]int32
// The ID of a choice.
ChoiceId *string
// Trusted Advisor check description.
Description *string
// Trusted Advisor check ID.
Id *string
// Well-Architected Lens ARN associated to the check.
LensArn *string
// Trusted Advisor check name.
Name *string
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// Provider of the check related to the best practice.
Provider CheckProvider
// The ID of the question.
QuestionId *string
// Status associated to the check.
Status CheckStatus
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// A choice available to answer question.
type Choice struct {
// The additional resources for a choice in a custom lens. A choice can have up to
// two additional resources: one of type HELPFUL_RESOURCE , one of type
// IMPROVEMENT_PLAN , or both.
AdditionalResources []AdditionalResources
// The ID of a choice.
ChoiceId *string
// The description of a choice.
Description *string
// The helpful resource (both text and URL) for a particular choice. This field
// only applies to custom lenses. Each choice can have only one helpful resource.
HelpfulResource *ChoiceContent
// The improvement plan (both text and URL) for a particular choice. This field
// only applies to custom lenses. Each choice can have only one improvement plan.
ImprovementPlan *ChoiceContent
// The title of a choice.
Title *string
noSmithyDocumentSerde
}
// A choice that has been answered on a question in your workload.
type ChoiceAnswer struct {
// The ID of a choice.
ChoiceId *string
// The notes associated with a choice.
Notes *string
// The reason why a choice is non-applicable to a question in your workload.
Reason ChoiceReason
// The status of a choice.
Status ChoiceStatus
noSmithyDocumentSerde
}
// A choice summary that has been answered on a question in your workload.
type ChoiceAnswerSummary struct {
// The ID of a choice.
ChoiceId *string
// The reason why a choice is non-applicable to a question in your workload.
Reason ChoiceReason
// The status of a choice.
Status ChoiceStatus
noSmithyDocumentSerde
}
// The choice content.
type ChoiceContent struct {
// The display text for the choice content.
DisplayText *string
// The URL for the choice content.
Url *string
noSmithyDocumentSerde
}
// The choice level improvement plan.
type ChoiceImprovementPlan struct {
// The ID of a choice.
ChoiceId *string
// The display text for the improvement plan.
DisplayText *string
// The improvement plan URL for a question in an Amazon Web Services official
// lenses. This value is only available if the question has been answered. This
// value does not apply to custom lenses.
ImprovementPlanUrl *string
noSmithyDocumentSerde
}
// A list of choices to be updated.
type ChoiceUpdate struct {
// The status of a choice.
//
// This member is required.
Status ChoiceStatus
// The notes associated with a choice.
Notes *string
// The reason why a choice is non-applicable to a question in your workload.
Reason ChoiceReason
noSmithyDocumentSerde
}
// A metric that contributes to the consolidated report.
type ConsolidatedReportMetric struct {
// The metrics for the lenses in the workload.
Lenses []LensMetric
// The total number of lenses applied to the workload.
LensesAppliedCount *int32
// The metric type of a metric in the consolidated report. Currently only WORKLOAD
// metric types are supported.
MetricType MetricType
// A map from risk names to the count of how many questions have that rating.
RiskCounts map[string]int32
// The date and time recorded.
UpdatedAt *time.Time
// The ARN for the workload.
WorkloadArn *string
// The ID assigned to the workload. This ID is unique within an Amazon Web
// Services Region.
WorkloadId *string
// The name of the workload. The name must be unique within an account within an
// Amazon Web Services Region. Spaces and capitalization are ignored when checking
// for uniqueness.
WorkloadName *string
noSmithyDocumentSerde
}
// An improvement summary of a lens review in a workload.
type ImprovementSummary struct {
// The improvement plan URL for a question in an Amazon Web Services official
// lenses. This value is only available if the question has been answered. This
// value does not apply to custom lenses.
ImprovementPlanUrl *string
// The improvement plan details.
ImprovementPlans []ChoiceImprovementPlan
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// The ID of the question.
QuestionId *string
// The title of the question.
QuestionTitle *string
// The risk for a given workload, lens review, pillar, or question.
Risk Risk
noSmithyDocumentSerde
}
// A lens return object.
type Lens struct {
// The description of the lens.
Description *string
// The ARN of a lens.
LensArn *string
// The version of a lens.
LensVersion *string
// The full name of the lens.
Name *string
// The Amazon Web Services account ID that owns the lens.
Owner *string
// The ID assigned to the share invitation.
ShareInvitationId *string
// The tags assigned to the lens.
Tags map[string]string
noSmithyDocumentSerde
}
// A metric for a particular lens in a workload.
type LensMetric struct {
// The lens ARN.
LensArn *string
// The metrics for the pillars in a lens.
Pillars []PillarMetric
// A map from risk names to the count of how many questions have that rating.
RiskCounts map[string]int32
noSmithyDocumentSerde
}
// A lens review of a question.
type LensReview struct {
// The alias of the lens. For Amazon Web Services official lenses, this is either
// the lens alias, such as serverless , or the lens ARN, such as
// arn:aws:wellarchitected:us-east-1::lens/serverless . Note that some operations
// (such as ExportLens and CreateLensShare) are not permitted on Amazon Web
// Services official lenses. For custom lenses, this is the lens ARN, such as
// arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef
// . Each lens is identified by its LensSummary$LensAlias .
LensAlias *string
// The ARN for the lens.
LensArn *string
// The full name of the lens.
LensName *string
// The status of the lens.
LensStatus LensStatus
// The version of the lens.
LensVersion *string
// The token to use to retrieve the next set of results.
NextToken *string
// The notes associated with the workload. For a review template, these are the
// notes that will be associated with the workload when the template is applied.
Notes *string
// List of pillar review summaries of lens review in a workload.
PillarReviewSummaries []PillarReviewSummary
// A map from risk names to the count of how many questions have that rating.
PrioritizedRiskCounts map[string]int32
// The profiles associated with the workload.
Profiles []WorkloadProfile
// A map from risk names to the count of how many questions have that rating.
RiskCounts map[string]int32
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// A report of a lens review.
type LensReviewReport struct {
// The Base64-encoded string representation of a lens review report. This data can
// be used to create a PDF file. Only returned by GetConsolidatedReport when PDF
// format is requested.
Base64String *string
// The alias of the lens. For Amazon Web Services official lenses, this is either
// the lens alias, such as serverless , or the lens ARN, such as
// arn:aws:wellarchitected:us-east-1::lens/serverless . Note that some operations
// (such as ExportLens and CreateLensShare) are not permitted on Amazon Web
// Services official lenses. For custom lenses, this is the lens ARN, such as
// arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef
// . Each lens is identified by its LensSummary$LensAlias .
LensAlias *string
// The ARN for the lens.
LensArn *string
noSmithyDocumentSerde
}
// A lens review summary of a workload.
type LensReviewSummary struct {
// The alias of the lens. For Amazon Web Services official lenses, this is either
// the lens alias, such as serverless , or the lens ARN, such as
// arn:aws:wellarchitected:us-east-1::lens/serverless . Note that some operations
// (such as ExportLens and CreateLensShare) are not permitted on Amazon Web
// Services official lenses. For custom lenses, this is the lens ARN, such as
// arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef
// . Each lens is identified by its LensSummary$LensAlias .
LensAlias *string
// The ARN for the lens.
LensArn *string
// The full name of the lens.
LensName *string
// The status of the lens.
LensStatus LensStatus
// The version of the lens.
LensVersion *string
// A map from risk names to the count of how many questions have that rating.
PrioritizedRiskCounts map[string]int32
// The profiles associated with the workload.
Profiles []WorkloadProfile
// A map from risk names to the count of how many questions have that rating.
RiskCounts map[string]int32
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// A lens share summary return object.
type LensShareSummary struct {
// The ID associated with the share.
ShareId *string
// The Amazon Web Services account ID, organization ID, or organizational unit
// (OU) ID with which the workload, lens, profile, or review template is shared.
SharedWith *string
// The status of the share request.
Status ShareStatus
// Optional message to compliment the Status field.
StatusMessage *string
noSmithyDocumentSerde
}
// A lens summary of a lens.
type LensSummary struct {
// The date and time recorded.
CreatedAt *time.Time
// The description of the lens.
Description *string
// The alias of the lens. For Amazon Web Services official lenses, this is either
// the lens alias, such as serverless , or the lens ARN, such as
// arn:aws:wellarchitected:us-east-1::lens/serverless . Note that some operations
// (such as ExportLens and CreateLensShare) are not permitted on Amazon Web
// Services official lenses. For custom lenses, this is the lens ARN, such as
// arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef
// . Each lens is identified by its LensSummary$LensAlias .
LensAlias *string
// The ARN of the lens.
LensArn *string
// The full name of the lens.
LensName *string
// The status of the lens.
LensStatus LensStatus
// The type of the lens.
LensType LensType
// The version of the lens.
LensVersion *string
// An Amazon Web Services account ID.
Owner *string
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// Lens upgrade summary return object.
type LensUpgradeSummary struct {
// The current version of the lens.
CurrentLensVersion *string
// The latest version of the lens.
LatestLensVersion *string
// The alias of the lens. For Amazon Web Services official lenses, this is either
// the lens alias, such as serverless , or the lens ARN, such as
// arn:aws:wellarchitected:us-east-1::lens/serverless . Note that some operations
// (such as ExportLens and CreateLensShare) are not permitted on Amazon Web
// Services official lenses. For custom lenses, this is the lens ARN, such as
// arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef
// . Each lens is identified by its LensSummary$LensAlias .
LensAlias *string
// The ARN for the lens.
LensArn *string
// ResourceArn of the lens being upgraded
ResourceArn *string
// The name of the workload. The name must be unique within an account within an
// Amazon Web Services Region. Spaces and capitalization are ignored when checking
// for uniqueness.
ResourceName *string
// The ID assigned to the workload. This ID is unique within an Amazon Web
// Services Region.
WorkloadId *string
// The name of the workload. The name must be unique within an account within an
// Amazon Web Services Region. Spaces and capitalization are ignored when checking
// for uniqueness.
WorkloadName *string
noSmithyDocumentSerde
}
// A milestone return object.
type Milestone struct {
// The name of the milestone in a workload. Milestone names must be unique within
// a workload.
MilestoneName *string
// The milestone number. A workload can have a maximum of 100 milestones.
MilestoneNumber *int32
// The date and time recorded.
RecordedAt *time.Time
// A workload return object.
Workload *Workload
noSmithyDocumentSerde
}
// A milestone summary return object.
type MilestoneSummary struct {
// The name of the milestone in a workload. Milestone names must be unique within
// a workload.
MilestoneName *string
// The milestone number. A workload can have a maximum of 100 milestones.
MilestoneNumber *int32
// The date and time recorded.
RecordedAt *time.Time
// A workload summary return object.
WorkloadSummary *WorkloadSummary
noSmithyDocumentSerde
}
// A notification summary return object.
type NotificationSummary struct {
// Summary of lens upgrade.
LensUpgradeSummary *LensUpgradeSummary
// The type of notification.
Type NotificationType
noSmithyDocumentSerde
}
// A pillar difference return object.
type PillarDifference struct {
// Indicates the type of change to the pillar.
DifferenceStatus DifferenceStatus
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// The name of the pillar.
PillarName *string
// List of question differences.
QuestionDifferences []QuestionDifference
noSmithyDocumentSerde
}
// A metric for a particular pillar in a lens.
type PillarMetric struct {
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// The questions that have been identified as risks in the pillar.
Questions []QuestionMetric
// A map from risk names to the count of how many questions have that rating.
RiskCounts map[string]int32
noSmithyDocumentSerde
}
// A pillar review summary of a lens review.
type PillarReviewSummary struct {
// The notes associated with the workload. For a review template, these are the
// notes that will be associated with the workload when the template is applied.
Notes *string
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// The name of the pillar.
PillarName *string
// A map from risk names to the count of how many questions have that rating.
PrioritizedRiskCounts map[string]int32
// A map from risk names to the count of how many questions have that rating.
RiskCounts map[string]int32
noSmithyDocumentSerde
}
// A profile.
type Profile struct {
// The date and time recorded.
CreatedAt *time.Time
// An Amazon Web Services account ID.
Owner *string
// The profile ARN.
ProfileArn *string
// The profile description.
ProfileDescription *string
// The profile name.
ProfileName *string
// Profile questions.
ProfileQuestions []ProfileQuestion
// The profile version.
ProfileVersion *string
// The ID assigned to the share invitation.
ShareInvitationId *string
// The tags assigned to the profile.
Tags map[string]string
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// The profile choice.
type ProfileChoice struct {
// The description of a choice.
ChoiceDescription *string
// The ID of a choice.
ChoiceId *string
// The title of a choice.
ChoiceTitle *string
noSmithyDocumentSerde
}
// The profile notification summary.
type ProfileNotificationSummary struct {
// The current profile version.
CurrentProfileVersion *string
// The latest profile version.
LatestProfileVersion *string
// The profile ARN.
ProfileArn *string
// The profile name.
ProfileName *string
// Type of notification.
Type ProfileNotificationType
// The ID assigned to the workload. This ID is unique within an Amazon Web
// Services Region.
WorkloadId *string
// The name of the workload. The name must be unique within an account within an
// Amazon Web Services Region. Spaces and capitalization are ignored when checking
// for uniqueness.
WorkloadName *string
noSmithyDocumentSerde
}
// A profile question.
type ProfileQuestion struct {
// The maximum number of selected choices.
MaxSelectedChoices *int32
// The minimum number of selected choices.
MinSelectedChoices *int32
// The question choices.
QuestionChoices []ProfileChoice
// The description of the question.
QuestionDescription *string
// The ID of the question.
QuestionId *string
// The title of the question.
QuestionTitle *string
// The selected choices.
SelectedChoiceIds []string
noSmithyDocumentSerde
}
// An update to a profile question.
type ProfileQuestionUpdate struct {
// The ID of the question.
QuestionId *string
// The selected choices.
SelectedChoiceIds []string
noSmithyDocumentSerde
}
// Summary of a profile share.
type ProfileShareSummary struct {
// The ID associated with the share.
ShareId *string
// The Amazon Web Services account ID, organization ID, or organizational unit
// (OU) ID with which the workload, lens, profile, or review template is shared.
SharedWith *string
// The status of the share request.
Status ShareStatus
// Profile share invitation status message.
StatusMessage *string
noSmithyDocumentSerde
}
// Summary of a profile.
type ProfileSummary struct {
// The date and time recorded.
CreatedAt *time.Time
// An Amazon Web Services account ID.
Owner *string
// The profile ARN.
ProfileArn *string
// The profile description.
ProfileDescription *string
// The profile name.
ProfileName *string
// The profile version.
ProfileVersion *string
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// The profile template.
type ProfileTemplate struct {
// The date and time recorded.
CreatedAt *time.Time
// The name of the profile template.
TemplateName *string
// Profile template questions.
TemplateQuestions []ProfileTemplateQuestion
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// A profile template choice.
type ProfileTemplateChoice struct {
// The description of a choice.
ChoiceDescription *string
// The ID of a choice.
ChoiceId *string
// The title of a choice.
ChoiceTitle *string
noSmithyDocumentSerde
}
// A profile template question.
type ProfileTemplateQuestion struct {
// The maximum number of choices selected.
MaxSelectedChoices *int32
// The minimum number of choices selected.
MinSelectedChoices *int32
// The question choices.
QuestionChoices []ProfileTemplateChoice
// The description of the question.
QuestionDescription *string
// The ID of the question.
QuestionId *string
// The title of the question.
QuestionTitle *string
noSmithyDocumentSerde
}
// A question difference return object.
type QuestionDifference struct {
// Indicates the type of change to the question.
DifferenceStatus DifferenceStatus
// The ID of the question.
QuestionId *string
// The title of the question.
QuestionTitle *string
noSmithyDocumentSerde
}
// A metric for a particular question in the pillar.
type QuestionMetric struct {
// The best practices, or choices, that have been identified as contributing to
// risk in a question.
BestPractices []BestPractice
// The ID of the question.
QuestionId *string
// The risk for a given workload, lens review, pillar, or question.
Risk Risk
noSmithyDocumentSerde
}
// A review template.
type ReviewTemplate struct {
// The review template description.
Description *string
// The lenses applied to the review template.
Lenses []string
// The notes associated with the workload. For a review template, these are the
// notes that will be associated with the workload when the template is applied.
Notes *string
// An Amazon Web Services account ID.
Owner *string
// A count of how many total questions are answered and unanswered in the review
// template.
QuestionCounts map[string]int32
// The ID assigned to the template share invitation.
ShareInvitationId *string
// The tags assigned to the review template.
Tags map[string]string
// The review template ARN.
TemplateArn *string
// The name of the review template.
TemplateName *string
// The latest status of a review template.
UpdateStatus ReviewTemplateUpdateStatus
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// An answer of the question.
type ReviewTemplateAnswer struct {
// The status of whether or not this question has been answered.
AnswerStatus ReviewTemplateAnswerStatus
// A list of selected choices to a question in your review template.
ChoiceAnswers []ChoiceAnswer
// List of choices available for a question.
Choices []Choice
// The helpful resource text to be displayed for a custom lens. This field does
// not apply to Amazon Web Services official lenses.
HelpfulResourceDisplayText *string
// The helpful resource URL. For Amazon Web Services official lenses, this is the
// helpful resource URL for a question or choice. For custom lenses, this is the
// helpful resource URL for a question and is only provided if
// HelpfulResourceDisplayText was specified for the question.
HelpfulResourceUrl *string
// The improvement plan URL for a question in an Amazon Web Services official
// lenses. This value is only available if the question has been answered. This
// value does not apply to custom lenses.
ImprovementPlanUrl *string
// Defines whether this question is applicable to a lens review.
IsApplicable *bool
// The notes associated with the workload. For a review template, these are the
// notes that will be associated with the workload when the template is applied.
Notes *string
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// The description of the question.
QuestionDescription *string
// The ID of the question.
QuestionId *string
// The title of the question.
QuestionTitle *string
// The reason why the question is not applicable to your review template.
Reason AnswerReason
// List of selected choice IDs in a question answer. The values entered replace
// the previously selected choices.
SelectedChoices []string
noSmithyDocumentSerde
}
// The summary of review template answers.
type ReviewTemplateAnswerSummary struct {
// The status of whether or not this question has been answered.
AnswerStatus ReviewTemplateAnswerStatus
// A list of selected choices to a question in the review template.
ChoiceAnswerSummaries []ChoiceAnswerSummary
// List of choices available for a question.
Choices []Choice
// Defines whether this question is applicable to a lens review.
IsApplicable *bool
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// The ID of the question.
QuestionId *string
// The title of the question.
QuestionTitle *string
// The type of question.
QuestionType QuestionType
// The reason why a choice is not-applicable to a question in the review template.
Reason AnswerReason
// List of selected choice IDs in a question answer. The values entered replace
// the previously selected choices.
SelectedChoices []string
noSmithyDocumentSerde
}
// The lens review of a review template.
type ReviewTemplateLensReview struct {
// The alias of the lens. For Amazon Web Services official lenses, this is either
// the lens alias, such as serverless , or the lens ARN, such as
// arn:aws:wellarchitected:us-east-1::lens/serverless . Note that some operations
// (such as ExportLens and CreateLensShare) are not permitted on Amazon Web
// Services official lenses. For custom lenses, this is the lens ARN, such as
// arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef
// . Each lens is identified by its LensSummary$LensAlias .
LensAlias *string
// The lens ARN.
LensArn *string
// The full name of the lens.
LensName *string
// The status of the lens.
LensStatus LensStatus
// The version of the lens.
LensVersion *string
// The token to use to retrieve the next set of results.
NextToken *string
// The notes associated with the workload. For a review template, these are the
// notes that will be associated with the workload when the template is applied.
Notes *string
// Pillar review summaries of a lens review.
PillarReviewSummaries []ReviewTemplatePillarReviewSummary
// A count of how many questions are answered and unanswered in the lens review.
QuestionCounts map[string]int32
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// Summary of a review template.
type ReviewTemplatePillarReviewSummary struct {
// The notes associated with the workload. For a review template, these are the
// notes that will be associated with the workload when the template is applied.
Notes *string
// The ID used to identify a pillar, for example, security . A pillar is identified
// by its PillarReviewSummary$PillarId .
PillarId *string
// The name of the pillar.
PillarName *string
// A count of how many questions are answered and unanswered in the requested
// pillar of the lens review.
QuestionCounts map[string]int32
noSmithyDocumentSerde
}
// Summary of a review template.
type ReviewTemplateSummary struct {
// Description of the review template.
Description *string
// Lenses associated with the review template.
Lenses []string
// An Amazon Web Services account ID.
Owner *string
// The review template ARN.
TemplateArn *string
// The name of the review template.
TemplateName *string
// The latest status of a review template.
UpdateStatus ReviewTemplateUpdateStatus
// The date and time recorded.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// The share invitation.
type ShareInvitation struct {
// The alias of the lens. For Amazon Web Services official lenses, this is either
// the lens alias, such as serverless , or the lens ARN, such as
// arn:aws:wellarchitected:us-east-1::lens/serverless . Note that some operations
// (such as ExportLens and CreateLensShare) are not permitted on Amazon Web
// Services official lenses. For custom lenses, this is the lens ARN, such as
// arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef
// . Each lens is identified by its LensSummary$LensAlias .
LensAlias *string
// The ARN for the lens.
LensArn *string
// The profile ARN.
ProfileArn *string
// The ID assigned to the share invitation.
ShareInvitationId *string
// The resource type of the share invitation.
ShareResourceType ShareResourceType
// The review template ARN.
TemplateArn *string
// The ID assigned to the workload. This ID is unique within an Amazon Web
// Services Region.
WorkloadId *string
noSmithyDocumentSerde
}
// A share invitation summary return object.
type ShareInvitationSummary struct {
// The ARN for the lens.
LensArn *string
// The full name of the lens.
LensName *string
// Permission granted on a share request.
PermissionType PermissionType
// The profile ARN.
ProfileArn *string
// The profile name.
ProfileName *string
// The ID assigned to the share invitation.
ShareInvitationId *string
// The resource type of the share invitation.
ShareResourceType ShareResourceType
// An Amazon Web Services account ID.
SharedBy *string
// The Amazon Web Services account ID, organization ID, or organizational unit
// (OU) ID with which the workload, lens, profile, or review template is shared.
SharedWith *string
// The review template ARN.
TemplateArn *string
// The name of the review template.
TemplateName *string
// The ID assigned to the workload. This ID is unique within an Amazon Web
// Services Region.
WorkloadId *string
// The name of the workload. The name must be unique within an account within an
// Amazon Web Services Region. Spaces and capitalization are ignored when checking
// for uniqueness.
WorkloadName *string
noSmithyDocumentSerde
}
// Summary of a review template share.
type TemplateShareSummary struct {
// The ID associated with the share.
ShareId *string
// The Amazon Web Services account ID, organization ID, or organizational unit
// (OU) ID with which the workload, lens, profile, or review template is shared.
SharedWith *string
// The status of the share request.
Status ShareStatus
// Review template share invitation status message.
StatusMessage *string
noSmithyDocumentSerde
}
// Stores information about a field passed inside a request that resulted in an
// exception.
type ValidationExceptionField struct {
// Description of the error.
//
// This member is required.
Message *string
// The field name for which validation failed.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// The differences between the base and latest versions of the lens.
type VersionDifferences struct {
// The differences between the base and latest versions of the lens.
PillarDifferences []PillarDifference
noSmithyDocumentSerde
}
// A workload return object.
type Workload struct {
// The list of Amazon Web Services account IDs associated with the workload.
AccountIds []string
// List of AppRegistry application ARNs associated to the workload.
Applications []string
// The URL of the architectural design for the workload.
ArchitecturalDesign *string
// The list of Amazon Web Services Regions associated with the workload, for
// example, us-east-2 , or ca-central-1 .
AwsRegions []string
// The description for the workload.
Description *string
// Discovery configuration associated to the workload.
DiscoveryConfig *WorkloadDiscoveryConfig
// The environment for the workload.
Environment WorkloadEnvironment
// The improvement status for a workload.
ImprovementStatus WorkloadImprovementStatus
// The industry for the workload.
Industry *string
// The industry type for the workload. If specified, must be one of the following:
// - Agriculture
// - Automobile
// - Defense
// - Design and Engineering
// - Digital Advertising
// - Education
// - Environmental Protection
// - Financial Services
// - Gaming
// - General Public Services
// - Healthcare
// - Hospitality
// - InfoTech
// - Justice and Public Safety
// - Life Sciences
// - Manufacturing
// - Media & Entertainment
// - Mining & Resources
// - Oil & Gas
// - Power & Utilities
// - Professional Services
// - Real Estate & Construction
// - Retail & Wholesale
// - Social Protection
// - Telecommunications
// - Travel, Transportation & Logistics
// - Other
IndustryType *string
// Flag indicating whether the workload owner has acknowledged that the Review
// owner field is required. If a Review owner is not added to the workload within
// 60 days of acknowledgement, access to the workload is restricted until an owner
// is added.
IsReviewOwnerUpdateAcknowledged *bool
// The list of lenses associated with the workload. Each lens is identified by its
// LensSummary$LensAlias . If a review template that specifies lenses is applied to
// the workload, those lenses are applied to the workload in addition to these
// lenses.
Lenses []string
// The list of non-Amazon Web Services Regions associated with the workload.
NonAwsRegions []string
// The notes associated with the workload. For a review template, these are the
// notes that will be associated with the workload when the template is applied.
Notes *string
// An Amazon Web Services account ID.
Owner *string
// The priorities of the pillars, which are used to order items in the improvement
// plan. Each pillar is represented by its PillarReviewSummary$PillarId .
PillarPriorities []string
// A map from risk names to the count of how many questions have that rating.
PrioritizedRiskCounts map[string]int32
// Profile associated with a workload.
Profiles []WorkloadProfile
// The review owner of the workload. The name, email address, or identifier for
// the primary group or individual that owns the workload review process.
ReviewOwner *string
// The date and time recorded.
ReviewRestrictionDate *time.Time
// A map from risk names to the count of how many questions have that rating.
RiskCounts map[string]int32
// The ID assigned to the share invitation.
ShareInvitationId *string
// The tags associated with the workload.
Tags map[string]string
// The date and time recorded.
UpdatedAt *time.Time
// The ARN for the workload.
WorkloadArn *string
// The ID assigned to the workload. This ID is unique within an Amazon Web
// Services Region.
WorkloadId *string
// The name of the workload. The name must be unique within an account within an
// Amazon Web Services Region. Spaces and capitalization are ignored when checking
// for uniqueness.
WorkloadName *string
noSmithyDocumentSerde
}
// Discovery configuration associated to the workload.
type WorkloadDiscoveryConfig struct {
// Discovery integration status in respect to Trusted Advisor for the workload.
TrustedAdvisorIntegrationStatus TrustedAdvisorIntegrationStatus
// The mode to use for identifying resources associated with the workload. You can
// specify WORKLOAD_METADATA , APP_REGISTRY , or both.
WorkloadResourceDefinition []DefinitionType
noSmithyDocumentSerde
}
// The profile associated with a workload.
type WorkloadProfile struct {
// The profile ARN.
ProfileArn *string
// The profile version.
ProfileVersion *string
noSmithyDocumentSerde
}
// A workload share return object.
type WorkloadShare struct {
// Permission granted on a share request.
PermissionType PermissionType
// The ID associated with the share.
ShareId *string
// An Amazon Web Services account ID.
SharedBy *string
// The Amazon Web Services account ID, organization ID, or organizational unit
// (OU) ID with which the workload, lens, profile, or review template is shared.
SharedWith *string
// The status of the share request.
Status ShareStatus
// The ID assigned to the workload. This ID is unique within an Amazon Web
// Services Region.
WorkloadId *string
// The name of the workload. The name must be unique within an account within an
// Amazon Web Services Region. Spaces and capitalization are ignored when checking
// for uniqueness.
WorkloadName *string
noSmithyDocumentSerde
}
// A workload share summary return object.
type WorkloadShareSummary struct {
// Permission granted on a share request.
PermissionType PermissionType
// The ID associated with the share.
ShareId *string
// The Amazon Web Services account ID, organization ID, or organizational unit
// (OU) ID with which the workload, lens, profile, or review template is shared.
SharedWith *string
// The status of the share request.
Status ShareStatus
// Optional message to compliment the Status field.
StatusMessage *string
noSmithyDocumentSerde
}
// A workload summary return object.
type WorkloadSummary struct {
// The improvement status for a workload.
ImprovementStatus WorkloadImprovementStatus
// The list of lenses associated with the workload. Each lens is identified by its
// LensSummary$LensAlias . If a review template that specifies lenses is applied to
// the workload, those lenses are applied to the workload in addition to these
// lenses.
Lenses []string
// An Amazon Web Services account ID.
Owner *string
// A map from risk names to the count of how many questions have that rating.
PrioritizedRiskCounts map[string]int32
// Profile associated with a workload.
Profiles []WorkloadProfile
// A map from risk names to the count of how many questions have that rating.
RiskCounts map[string]int32
// The date and time recorded.
UpdatedAt *time.Time
// The ARN for the workload.
WorkloadArn *string
// The ID assigned to the workload. This ID is unique within an Amazon Web
// Services Region.
WorkloadId *string
// The name of the workload. The name must be unique within an account within an
// Amazon Web Services Region. Spaces and capitalization are ignored when checking
// for uniqueness.
WorkloadName *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|