@aws-sdk/client-wellarchitected 3.40.0 → 3.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/README.md +6 -6
  3. package/dist-cjs/WellArchitected.js +120 -0
  4. package/dist-cjs/commands/CreateLensShareCommand.js +36 -0
  5. package/dist-cjs/commands/CreateLensVersionCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteLensCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteLensShareCommand.js +36 -0
  8. package/dist-cjs/commands/ExportLensCommand.js +36 -0
  9. package/dist-cjs/commands/GetLensCommand.js +36 -0
  10. package/dist-cjs/commands/ImportLensCommand.js +36 -0
  11. package/dist-cjs/commands/ListLensSharesCommand.js +36 -0
  12. package/dist-cjs/commands/index.js +8 -0
  13. package/dist-cjs/endpoints.js +8 -0
  14. package/dist-cjs/models/models_0.js +150 -17
  15. package/dist-cjs/pagination/ListLensSharesPaginator.js +35 -0
  16. package/dist-cjs/pagination/index.js +1 -0
  17. package/dist-cjs/protocols/Aws_restJson1.js +1137 -62
  18. package/dist-es/WellArchitected.js +120 -0
  19. package/dist-es/commands/CreateLensShareCommand.js +39 -0
  20. package/dist-es/commands/CreateLensVersionCommand.js +39 -0
  21. package/dist-es/commands/DeleteLensCommand.js +39 -0
  22. package/dist-es/commands/DeleteLensShareCommand.js +39 -0
  23. package/dist-es/commands/ExportLensCommand.js +39 -0
  24. package/dist-es/commands/GetLensCommand.js +39 -0
  25. package/dist-es/commands/ImportLensCommand.js +39 -0
  26. package/dist-es/commands/ListLensSharesCommand.js +39 -0
  27. package/dist-es/commands/index.js +8 -0
  28. package/dist-es/endpoints.js +8 -0
  29. package/dist-es/models/models_0.js +109 -12
  30. package/dist-es/pagination/ListLensSharesPaginator.js +74 -0
  31. package/dist-es/pagination/index.js +1 -0
  32. package/dist-es/protocols/Aws_restJson1.js +1232 -40
  33. package/dist-types/WellArchitected.d.ts +156 -13
  34. package/dist-types/WellArchitectedClient.d.ts +16 -8
  35. package/dist-types/commands/AssociateLensesCommand.d.ts +11 -1
  36. package/dist-types/commands/CreateLensShareCommand.d.ts +48 -0
  37. package/dist-types/commands/CreateLensVersionCommand.d.ts +39 -0
  38. package/dist-types/commands/CreateMilestoneCommand.d.ts +1 -1
  39. package/dist-types/commands/CreateWorkloadCommand.d.ts +4 -4
  40. package/dist-types/commands/CreateWorkloadShareCommand.d.ts +4 -4
  41. package/dist-types/commands/DeleteLensCommand.d.ts +49 -0
  42. package/dist-types/commands/DeleteLensShareCommand.d.ts +48 -0
  43. package/dist-types/commands/DeleteWorkloadCommand.d.ts +1 -1
  44. package/dist-types/commands/DeleteWorkloadShareCommand.d.ts +1 -1
  45. package/dist-types/commands/DisassociateLensesCommand.d.ts +3 -2
  46. package/dist-types/commands/ExportLensCommand.d.ts +49 -0
  47. package/dist-types/commands/GetAnswerCommand.d.ts +1 -1
  48. package/dist-types/commands/GetLensCommand.d.ts +35 -0
  49. package/dist-types/commands/GetLensReviewCommand.d.ts +1 -1
  50. package/dist-types/commands/GetLensReviewReportCommand.d.ts +1 -1
  51. package/dist-types/commands/GetLensVersionDifferenceCommand.d.ts +1 -1
  52. package/dist-types/commands/GetMilestoneCommand.d.ts +1 -1
  53. package/dist-types/commands/GetWorkloadCommand.d.ts +1 -1
  54. package/dist-types/commands/ImportLensCommand.d.ts +53 -0
  55. package/dist-types/commands/ListAnswersCommand.d.ts +1 -1
  56. package/dist-types/commands/ListLensReviewImprovementsCommand.d.ts +1 -1
  57. package/dist-types/commands/ListLensReviewsCommand.d.ts +1 -1
  58. package/dist-types/commands/ListLensSharesCommand.d.ts +35 -0
  59. package/dist-types/commands/ListLensesCommand.d.ts +1 -1
  60. package/dist-types/commands/ListMilestonesCommand.d.ts +1 -1
  61. package/dist-types/commands/ListNotificationsCommand.d.ts +1 -1
  62. package/dist-types/commands/ListShareInvitationsCommand.d.ts +1 -1
  63. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  64. package/dist-types/commands/ListWorkloadSharesCommand.d.ts +1 -1
  65. package/dist-types/commands/ListWorkloadsCommand.d.ts +1 -1
  66. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  67. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  68. package/dist-types/commands/UpdateAnswerCommand.d.ts +1 -1
  69. package/dist-types/commands/UpdateLensReviewCommand.d.ts +1 -1
  70. package/dist-types/commands/UpdateShareInvitationCommand.d.ts +1 -1
  71. package/dist-types/commands/UpdateWorkloadCommand.d.ts +1 -1
  72. package/dist-types/commands/UpdateWorkloadShareCommand.d.ts +1 -1
  73. package/dist-types/commands/UpgradeLensReviewCommand.d.ts +1 -1
  74. package/dist-types/commands/index.d.ts +8 -0
  75. package/dist-types/models/models_0.d.ts +676 -118
  76. package/dist-types/pagination/ListLensSharesPaginator.d.ts +4 -0
  77. package/dist-types/pagination/index.d.ts +1 -0
  78. package/dist-types/protocols/Aws_restJson1.d.ts +24 -0
  79. package/dist-types/ts3.4/WellArchitected.d.ts +40 -0
  80. package/dist-types/ts3.4/WellArchitectedClient.d.ts +10 -2
  81. package/dist-types/ts3.4/commands/CreateLensShareCommand.d.ts +17 -0
  82. package/dist-types/ts3.4/commands/CreateLensVersionCommand.d.ts +17 -0
  83. package/dist-types/ts3.4/commands/DeleteLensCommand.d.ts +17 -0
  84. package/dist-types/ts3.4/commands/DeleteLensShareCommand.d.ts +17 -0
  85. package/dist-types/ts3.4/commands/ExportLensCommand.d.ts +17 -0
  86. package/dist-types/ts3.4/commands/GetLensCommand.d.ts +17 -0
  87. package/dist-types/ts3.4/commands/ImportLensCommand.d.ts +17 -0
  88. package/dist-types/ts3.4/commands/ListLensSharesCommand.d.ts +17 -0
  89. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  90. package/dist-types/ts3.4/models/models_0.d.ts +321 -24
  91. package/dist-types/ts3.4/pagination/ListLensSharesPaginator.d.ts +4 -0
  92. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  93. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  94. package/package.json +4 -4
@@ -38,6 +38,17 @@ export declare namespace ChoiceAnswer {
38
38
  const filterSensitiveLog: (obj: ChoiceAnswer) => any;
39
39
  }
40
40
 
41
+ export interface ChoiceContent {
42
+
43
+ DisplayText?: string;
44
+
45
+ Url?: string;
46
+ }
47
+ export declare namespace ChoiceContent {
48
+
49
+ const filterSensitiveLog: (obj: ChoiceContent) => any;
50
+ }
51
+
41
52
  export interface Choice {
42
53
 
43
54
  ChoiceId?: string;
@@ -45,6 +56,10 @@ export interface Choice {
45
56
  Title?: string;
46
57
 
47
58
  Description?: string;
59
+
60
+ HelpfulResource?: ChoiceContent;
61
+
62
+ ImprovementPlan?: ChoiceContent;
48
63
  }
49
64
  export declare namespace Choice {
50
65
 
@@ -79,6 +94,8 @@ export interface Answer {
79
94
 
80
95
  HelpfulResourceUrl?: string;
81
96
 
97
+ HelpfulResourceDisplayText?: string;
98
+
82
99
  Choices?: Choice[];
83
100
 
84
101
  SelectedChoices?: string[];
@@ -235,6 +252,19 @@ export declare namespace ValidationException {
235
252
  const filterSensitiveLog: (obj: ValidationException) => any;
236
253
  }
237
254
 
255
+ export interface ChoiceImprovementPlan {
256
+
257
+ ChoiceId?: string;
258
+
259
+ DisplayText?: string;
260
+
261
+ ImprovementPlanUrl?: string;
262
+ }
263
+ export declare namespace ChoiceImprovementPlan {
264
+
265
+ const filterSensitiveLog: (obj: ChoiceImprovementPlan) => any;
266
+ }
267
+
238
268
  export interface ChoiceUpdate {
239
269
 
240
270
  Status: ChoiceStatus | string | undefined;
@@ -247,29 +277,25 @@ export declare namespace ChoiceUpdate {
247
277
 
248
278
  const filterSensitiveLog: (obj: ChoiceUpdate) => any;
249
279
  }
250
-
251
- export interface CreateMilestoneInput {
280
+ export interface CreateLensShareInput {
252
281
 
253
- WorkloadId: string | undefined;
282
+ LensAlias: string | undefined;
254
283
 
255
- MilestoneName: string | undefined;
284
+ SharedWith: string | undefined;
256
285
 
257
286
  ClientRequestToken?: string;
258
287
  }
259
- export declare namespace CreateMilestoneInput {
288
+ export declare namespace CreateLensShareInput {
260
289
 
261
- const filterSensitiveLog: (obj: CreateMilestoneInput) => any;
290
+ const filterSensitiveLog: (obj: CreateLensShareInput) => any;
262
291
  }
263
-
264
- export interface CreateMilestoneOutput {
265
-
266
- WorkloadId?: string;
292
+ export interface CreateLensShareOutput {
267
293
 
268
- MilestoneNumber?: number;
294
+ ShareId?: string;
269
295
  }
270
- export declare namespace CreateMilestoneOutput {
296
+ export declare namespace CreateLensShareOutput {
271
297
 
272
- const filterSensitiveLog: (obj: CreateMilestoneOutput) => any;
298
+ const filterSensitiveLog: (obj: CreateLensShareOutput) => any;
273
299
  }
274
300
 
275
301
  export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
@@ -290,6 +316,54 @@ export declare namespace ServiceQuotaExceededException {
290
316
 
291
317
  const filterSensitiveLog: (obj: ServiceQuotaExceededException) => any;
292
318
  }
319
+ export interface CreateLensVersionInput {
320
+
321
+ LensAlias: string | undefined;
322
+
323
+ LensVersion: string | undefined;
324
+
325
+ IsMajorVersion?: boolean;
326
+
327
+ ClientRequestToken?: string;
328
+ }
329
+ export declare namespace CreateLensVersionInput {
330
+
331
+ const filterSensitiveLog: (obj: CreateLensVersionInput) => any;
332
+ }
333
+ export interface CreateLensVersionOutput {
334
+
335
+ LensArn?: string;
336
+
337
+ LensVersion?: string;
338
+ }
339
+ export declare namespace CreateLensVersionOutput {
340
+
341
+ const filterSensitiveLog: (obj: CreateLensVersionOutput) => any;
342
+ }
343
+
344
+ export interface CreateMilestoneInput {
345
+
346
+ WorkloadId: string | undefined;
347
+
348
+ MilestoneName: string | undefined;
349
+
350
+ ClientRequestToken?: string;
351
+ }
352
+ export declare namespace CreateMilestoneInput {
353
+
354
+ const filterSensitiveLog: (obj: CreateMilestoneInput) => any;
355
+ }
356
+
357
+ export interface CreateMilestoneOutput {
358
+
359
+ WorkloadId?: string;
360
+
361
+ MilestoneNumber?: number;
362
+ }
363
+ export declare namespace CreateMilestoneOutput {
364
+
365
+ const filterSensitiveLog: (obj: CreateMilestoneOutput) => any;
366
+ }
293
367
  export declare enum WorkloadEnvironment {
294
368
  PREPRODUCTION = "PREPRODUCTION",
295
369
  PRODUCTION = "PRODUCTION"
@@ -374,6 +448,35 @@ export declare namespace CreateWorkloadShareOutput {
374
448
 
375
449
  const filterSensitiveLog: (obj: CreateWorkloadShareOutput) => any;
376
450
  }
451
+ export declare enum LensStatusType {
452
+ ALL = "ALL",
453
+ DRAFT = "DRAFT",
454
+ PUBLISHED = "PUBLISHED"
455
+ }
456
+ export interface DeleteLensInput {
457
+
458
+ LensAlias: string | undefined;
459
+
460
+ ClientRequestToken?: string;
461
+
462
+ LensStatus: LensStatusType | string | undefined;
463
+ }
464
+ export declare namespace DeleteLensInput {
465
+
466
+ const filterSensitiveLog: (obj: DeleteLensInput) => any;
467
+ }
468
+ export interface DeleteLensShareInput {
469
+
470
+ ShareId: string | undefined;
471
+
472
+ LensAlias: string | undefined;
473
+
474
+ ClientRequestToken?: string;
475
+ }
476
+ export declare namespace DeleteLensShareInput {
477
+
478
+ const filterSensitiveLog: (obj: DeleteLensShareInput) => any;
479
+ }
377
480
 
378
481
  export interface DeleteWorkloadInput {
379
482
 
@@ -414,6 +517,24 @@ export declare namespace DisassociateLensesInput {
414
517
 
415
518
  const filterSensitiveLog: (obj: DisassociateLensesInput) => any;
416
519
  }
520
+ export interface ExportLensInput {
521
+
522
+ LensAlias: string | undefined;
523
+
524
+ LensVersion?: string;
525
+ }
526
+ export declare namespace ExportLensInput {
527
+
528
+ const filterSensitiveLog: (obj: ExportLensInput) => any;
529
+ }
530
+ export interface ExportLensOutput {
531
+
532
+ LensJSON?: string;
533
+ }
534
+ export declare namespace ExportLensOutput {
535
+
536
+ const filterSensitiveLog: (obj: ExportLensOutput) => any;
537
+ }
417
538
 
418
539
  export interface GetAnswerInput {
419
540
 
@@ -438,12 +559,51 @@ export interface GetAnswerOutput {
438
559
 
439
560
  LensAlias?: string;
440
561
 
562
+ LensArn?: string;
563
+
441
564
  Answer?: Answer;
442
565
  }
443
566
  export declare namespace GetAnswerOutput {
444
567
 
445
568
  const filterSensitiveLog: (obj: GetAnswerOutput) => any;
446
569
  }
570
+ export interface GetLensInput {
571
+
572
+ LensAlias: string | undefined;
573
+
574
+ LensVersion?: string;
575
+ }
576
+ export declare namespace GetLensInput {
577
+
578
+ const filterSensitiveLog: (obj: GetLensInput) => any;
579
+ }
580
+
581
+ export interface Lens {
582
+
583
+ LensArn?: string;
584
+
585
+ LensVersion?: string;
586
+
587
+ Name?: string;
588
+
589
+ Description?: string;
590
+
591
+ Owner?: string;
592
+
593
+ ShareInvitationId?: string;
594
+ }
595
+ export declare namespace Lens {
596
+
597
+ const filterSensitiveLog: (obj: Lens) => any;
598
+ }
599
+ export interface GetLensOutput {
600
+
601
+ Lens?: Lens;
602
+ }
603
+ export declare namespace GetLensOutput {
604
+
605
+ const filterSensitiveLog: (obj: GetLensOutput) => any;
606
+ }
447
607
 
448
608
  export interface GetLensReviewInput {
449
609
 
@@ -459,8 +619,10 @@ export declare namespace GetLensReviewInput {
459
619
  }
460
620
  export declare enum LensStatus {
461
621
  CURRENT = "CURRENT",
622
+ DELETED = "DELETED",
462
623
  DEPRECATED = "DEPRECATED",
463
- NOT_CURRENT = "NOT_CURRENT"
624
+ NOT_CURRENT = "NOT_CURRENT",
625
+ UNSHARED = "UNSHARED"
464
626
  }
465
627
 
466
628
  export interface PillarReviewSummary {
@@ -484,6 +646,8 @@ export interface LensReview {
484
646
 
485
647
  LensAlias?: string;
486
648
 
649
+ LensArn?: string;
650
+
487
651
  LensVersion?: string;
488
652
 
489
653
  LensName?: string;
@@ -537,6 +701,8 @@ export interface LensReviewReport {
537
701
 
538
702
  LensAlias?: string;
539
703
 
704
+ LensArn?: string;
705
+
540
706
  Base64String?: string;
541
707
  }
542
708
  export declare namespace LensReviewReport {
@@ -560,7 +726,9 @@ export interface GetLensVersionDifferenceInput {
560
726
 
561
727
  LensAlias: string | undefined;
562
728
 
563
- BaseLensVersion: string | undefined;
729
+ BaseLensVersion?: string;
730
+
731
+ TargetLensVersion?: string;
564
732
  }
565
733
  export declare namespace GetLensVersionDifferenceInput {
566
734
 
@@ -584,6 +752,8 @@ export interface PillarDifference {
584
752
 
585
753
  PillarId?: string;
586
754
 
755
+ PillarName?: string;
756
+
587
757
  DifferenceStatus?: DifferenceStatus | string;
588
758
 
589
759
  QuestionDifferences?: QuestionDifference[];
@@ -605,8 +775,12 @@ export interface GetLensVersionDifferenceOutput {
605
775
 
606
776
  LensAlias?: string;
607
777
 
778
+ LensArn?: string;
779
+
608
780
  BaseLensVersion?: string;
609
781
 
782
+ TargetLensVersion?: string;
783
+
610
784
  LatestLensVersion?: string;
611
785
 
612
786
  VersionDifferences?: VersionDifferences;
@@ -734,6 +908,37 @@ export declare namespace GetWorkloadOutput {
734
908
 
735
909
  const filterSensitiveLog: (obj: GetWorkloadOutput) => any;
736
910
  }
911
+ export interface ImportLensInput {
912
+
913
+ LensAlias?: string;
914
+
915
+ JSONString: string | undefined;
916
+
917
+ ClientRequestToken?: string;
918
+
919
+ Tags?: {
920
+ [key: string]: string;
921
+ };
922
+ }
923
+ export declare namespace ImportLensInput {
924
+
925
+ const filterSensitiveLog: (obj: ImportLensInput) => any;
926
+ }
927
+ export declare enum ImportLensStatus {
928
+ COMPLETE = "COMPLETE",
929
+ ERROR = "ERROR",
930
+ IN_PROGRESS = "IN_PROGRESS"
931
+ }
932
+ export interface ImportLensOutput {
933
+
934
+ LensArn?: string;
935
+
936
+ Status?: ImportLensStatus | string;
937
+ }
938
+ export declare namespace ImportLensOutput {
939
+
940
+ const filterSensitiveLog: (obj: ImportLensOutput) => any;
941
+ }
737
942
 
738
943
  export interface ImprovementSummary {
739
944
 
@@ -746,6 +951,8 @@ export interface ImprovementSummary {
746
951
  Risk?: Risk | string;
747
952
 
748
953
  ImprovementPlanUrl?: string;
954
+
955
+ ImprovementPlans?: ChoiceImprovementPlan[];
749
956
  }
750
957
  export declare namespace ImprovementSummary {
751
958
 
@@ -756,6 +963,8 @@ export interface LensReviewSummary {
756
963
 
757
964
  LensAlias?: string;
758
965
 
966
+ LensArn?: string;
967
+
759
968
  LensVersion?: string;
760
969
 
761
970
  LensName?: string;
@@ -772,16 +981,53 @@ export declare namespace LensReviewSummary {
772
981
 
773
982
  const filterSensitiveLog: (obj: LensReviewSummary) => any;
774
983
  }
984
+ export declare enum ShareStatus {
985
+ ACCEPTED = "ACCEPTED",
986
+ EXPIRED = "EXPIRED",
987
+ PENDING = "PENDING",
988
+ REJECTED = "REJECTED",
989
+ REVOKED = "REVOKED"
990
+ }
991
+
992
+ export interface LensShareSummary {
993
+
994
+ ShareId?: string;
995
+
996
+ SharedWith?: string;
997
+
998
+ Status?: ShareStatus | string;
999
+ }
1000
+ export declare namespace LensShareSummary {
1001
+
1002
+ const filterSensitiveLog: (obj: LensShareSummary) => any;
1003
+ }
1004
+ export declare enum LensType {
1005
+ AWS_OFFICIAL = "AWS_OFFICIAL",
1006
+ CUSTOM_SELF = "CUSTOM_SELF",
1007
+ CUSTOM_SHARED = "CUSTOM_SHARED"
1008
+ }
775
1009
 
776
1010
  export interface LensSummary {
777
1011
 
778
- LensAlias?: string;
1012
+ LensArn?: string;
779
1013
 
780
- LensVersion?: string;
1014
+ LensAlias?: string;
781
1015
 
782
1016
  LensName?: string;
783
1017
 
1018
+ LensType?: LensType | string;
1019
+
784
1020
  Description?: string;
1021
+
1022
+ CreatedAt?: Date;
1023
+
1024
+ UpdatedAt?: Date;
1025
+
1026
+ LensVersion?: string;
1027
+
1028
+ Owner?: string;
1029
+
1030
+ LensStatus?: LensStatus | string;
785
1031
  }
786
1032
  export declare namespace LensSummary {
787
1033
 
@@ -796,6 +1042,8 @@ export interface LensUpgradeSummary {
796
1042
 
797
1043
  LensAlias?: string;
798
1044
 
1045
+ LensArn?: string;
1046
+
799
1047
  CurrentLensVersion?: string;
800
1048
 
801
1049
  LatestLensVersion?: string;
@@ -832,6 +1080,8 @@ export interface ListAnswersOutput {
832
1080
 
833
1081
  LensAlias?: string;
834
1082
 
1083
+ LensArn?: string;
1084
+
835
1085
  AnswerSummaries?: AnswerSummary[];
836
1086
 
837
1087
  NextToken?: string;
@@ -846,6 +1096,12 @@ export interface ListLensesInput {
846
1096
  NextToken?: string;
847
1097
 
848
1098
  MaxResults?: number;
1099
+
1100
+ LensType?: LensType | string;
1101
+
1102
+ LensStatus?: LensStatusType | string;
1103
+
1104
+ LensName?: string;
849
1105
  }
850
1106
  export declare namespace ListLensesInput {
851
1107
 
@@ -890,6 +1146,8 @@ export interface ListLensReviewImprovementsOutput {
890
1146
 
891
1147
  LensAlias?: string;
892
1148
 
1149
+ LensArn?: string;
1150
+
893
1151
  ImprovementSummaries?: ImprovementSummary[];
894
1152
 
895
1153
  NextToken?: string;
@@ -928,6 +1186,30 @@ export declare namespace ListLensReviewsOutput {
928
1186
 
929
1187
  const filterSensitiveLog: (obj: ListLensReviewsOutput) => any;
930
1188
  }
1189
+ export interface ListLensSharesInput {
1190
+
1191
+ LensAlias: string | undefined;
1192
+
1193
+ SharedWithPrefix?: string;
1194
+
1195
+ NextToken?: string;
1196
+
1197
+ MaxResults?: number;
1198
+ }
1199
+ export declare namespace ListLensSharesInput {
1200
+
1201
+ const filterSensitiveLog: (obj: ListLensSharesInput) => any;
1202
+ }
1203
+ export interface ListLensSharesOutput {
1204
+
1205
+ LensShareSummaries?: LensShareSummary[];
1206
+
1207
+ NextToken?: string;
1208
+ }
1209
+ export declare namespace ListLensSharesOutput {
1210
+
1211
+ const filterSensitiveLog: (obj: ListLensSharesOutput) => any;
1212
+ }
931
1213
 
932
1214
  export interface ListMilestonesInput {
933
1215
 
@@ -1031,11 +1313,19 @@ export declare namespace ListNotificationsOutput {
1031
1313
 
1032
1314
  const filterSensitiveLog: (obj: ListNotificationsOutput) => any;
1033
1315
  }
1316
+ export declare enum ShareResourceType {
1317
+ LENS = "LENS",
1318
+ WORKLOAD = "WORKLOAD"
1319
+ }
1034
1320
 
1035
1321
  export interface ListShareInvitationsInput {
1036
1322
 
1037
1323
  WorkloadNamePrefix?: string;
1038
1324
 
1325
+ LensNamePrefix?: string;
1326
+
1327
+ ShareResourceType?: ShareResourceType | string;
1328
+
1039
1329
  NextToken?: string;
1040
1330
 
1041
1331
  MaxResults?: number;
@@ -1055,9 +1345,15 @@ export interface ShareInvitationSummary {
1055
1345
 
1056
1346
  PermissionType?: PermissionType | string;
1057
1347
 
1348
+ ShareResourceType?: ShareResourceType | string;
1349
+
1058
1350
  WorkloadName?: string;
1059
1351
 
1060
1352
  WorkloadId?: string;
1353
+
1354
+ LensName?: string;
1355
+
1356
+ LensArn?: string;
1061
1357
  }
1062
1358
  export declare namespace ShareInvitationSummary {
1063
1359
 
@@ -1131,13 +1427,6 @@ export declare namespace ListWorkloadSharesInput {
1131
1427
 
1132
1428
  const filterSensitiveLog: (obj: ListWorkloadSharesInput) => any;
1133
1429
  }
1134
- export declare enum ShareStatus {
1135
- ACCEPTED = "ACCEPTED",
1136
- EXPIRED = "EXPIRED",
1137
- PENDING = "PENDING",
1138
- REJECTED = "REJECTED",
1139
- REVOKED = "REVOKED"
1140
- }
1141
1430
 
1142
1431
  export interface WorkloadShareSummary {
1143
1432
 
@@ -1171,7 +1460,13 @@ export interface ShareInvitation {
1171
1460
 
1172
1461
  ShareInvitationId?: string;
1173
1462
 
1463
+ ShareResourceType?: ShareResourceType | string;
1464
+
1174
1465
  WorkloadId?: string;
1466
+
1467
+ LensAlias?: string;
1468
+
1469
+ LensArn?: string;
1175
1470
  }
1176
1471
  export declare namespace ShareInvitation {
1177
1472
 
@@ -1247,6 +1542,8 @@ export interface UpdateAnswerOutput {
1247
1542
 
1248
1543
  LensAlias?: string;
1249
1544
 
1545
+ LensArn?: string;
1546
+
1250
1547
  Answer?: Answer;
1251
1548
  }
1252
1549
  export declare namespace UpdateAnswerOutput {
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListLensSharesCommandInput, ListLensSharesCommandOutput } from "../commands/ListLensSharesCommand";
3
+ import { WellArchitectedPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListLensShares(config: WellArchitectedPaginationConfiguration, input: ListLensSharesCommandInput, ...additionalArguments: any): Paginator<ListLensSharesCommandOutput>;
@@ -2,6 +2,7 @@ export * from "./Interfaces";
2
2
  export * from "./ListAnswersPaginator";
3
3
  export * from "./ListLensReviewImprovementsPaginator";
4
4
  export * from "./ListLensReviewsPaginator";
5
+ export * from "./ListLensSharesPaginator";
5
6
  export * from "./ListLensesPaginator";
6
7
  export * from "./ListMilestonesPaginator";
7
8
  export * from "./ListNotificationsPaginator";
@@ -1,22 +1,30 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
3
  import { AssociateLensesCommandInput, AssociateLensesCommandOutput } from "../commands/AssociateLensesCommand";
4
+ import { CreateLensShareCommandInput, CreateLensShareCommandOutput } from "../commands/CreateLensShareCommand";
5
+ import { CreateLensVersionCommandInput, CreateLensVersionCommandOutput } from "../commands/CreateLensVersionCommand";
4
6
  import { CreateMilestoneCommandInput, CreateMilestoneCommandOutput } from "../commands/CreateMilestoneCommand";
5
7
  import { CreateWorkloadCommandInput, CreateWorkloadCommandOutput } from "../commands/CreateWorkloadCommand";
6
8
  import { CreateWorkloadShareCommandInput, CreateWorkloadShareCommandOutput } from "../commands/CreateWorkloadShareCommand";
9
+ import { DeleteLensCommandInput, DeleteLensCommandOutput } from "../commands/DeleteLensCommand";
10
+ import { DeleteLensShareCommandInput, DeleteLensShareCommandOutput } from "../commands/DeleteLensShareCommand";
7
11
  import { DeleteWorkloadCommandInput, DeleteWorkloadCommandOutput } from "../commands/DeleteWorkloadCommand";
8
12
  import { DeleteWorkloadShareCommandInput, DeleteWorkloadShareCommandOutput } from "../commands/DeleteWorkloadShareCommand";
9
13
  import { DisassociateLensesCommandInput, DisassociateLensesCommandOutput } from "../commands/DisassociateLensesCommand";
14
+ import { ExportLensCommandInput, ExportLensCommandOutput } from "../commands/ExportLensCommand";
10
15
  import { GetAnswerCommandInput, GetAnswerCommandOutput } from "../commands/GetAnswerCommand";
16
+ import { GetLensCommandInput, GetLensCommandOutput } from "../commands/GetLensCommand";
11
17
  import { GetLensReviewCommandInput, GetLensReviewCommandOutput } from "../commands/GetLensReviewCommand";
12
18
  import { GetLensReviewReportCommandInput, GetLensReviewReportCommandOutput } from "../commands/GetLensReviewReportCommand";
13
19
  import { GetLensVersionDifferenceCommandInput, GetLensVersionDifferenceCommandOutput } from "../commands/GetLensVersionDifferenceCommand";
14
20
  import { GetMilestoneCommandInput, GetMilestoneCommandOutput } from "../commands/GetMilestoneCommand";
15
21
  import { GetWorkloadCommandInput, GetWorkloadCommandOutput } from "../commands/GetWorkloadCommand";
22
+ import { ImportLensCommandInput, ImportLensCommandOutput } from "../commands/ImportLensCommand";
16
23
  import { ListAnswersCommandInput, ListAnswersCommandOutput } from "../commands/ListAnswersCommand";
17
24
  import { ListLensesCommandInput, ListLensesCommandOutput } from "../commands/ListLensesCommand";
18
25
  import { ListLensReviewImprovementsCommandInput, ListLensReviewImprovementsCommandOutput } from "../commands/ListLensReviewImprovementsCommand";
19
26
  import { ListLensReviewsCommandInput, ListLensReviewsCommandOutput } from "../commands/ListLensReviewsCommand";
27
+ import { ListLensSharesCommandInput, ListLensSharesCommandOutput } from "../commands/ListLensSharesCommand";
20
28
  import { ListMilestonesCommandInput, ListMilestonesCommandOutput } from "../commands/ListMilestonesCommand";
21
29
  import { ListNotificationsCommandInput, ListNotificationsCommandOutput } from "../commands/ListNotificationsCommand";
22
30
  import { ListShareInvitationsCommandInput, ListShareInvitationsCommandOutput } from "../commands/ListShareInvitationsCommand";
@@ -32,22 +40,30 @@ import { UpdateWorkloadCommandInput, UpdateWorkloadCommandOutput } from "../comm
32
40
  import { UpdateWorkloadShareCommandInput, UpdateWorkloadShareCommandOutput } from "../commands/UpdateWorkloadShareCommand";
33
41
  import { UpgradeLensReviewCommandInput, UpgradeLensReviewCommandOutput } from "../commands/UpgradeLensReviewCommand";
34
42
  export declare const serializeAws_restJson1AssociateLensesCommand: (input: AssociateLensesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ export declare const serializeAws_restJson1CreateLensShareCommand: (input: CreateLensShareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
+ export declare const serializeAws_restJson1CreateLensVersionCommand: (input: CreateLensVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
45
  export declare const serializeAws_restJson1CreateMilestoneCommand: (input: CreateMilestoneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
46
  export declare const serializeAws_restJson1CreateWorkloadCommand: (input: CreateWorkloadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
47
  export declare const serializeAws_restJson1CreateWorkloadShareCommand: (input: CreateWorkloadShareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ export declare const serializeAws_restJson1DeleteLensCommand: (input: DeleteLensCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
+ export declare const serializeAws_restJson1DeleteLensShareCommand: (input: DeleteLensShareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
50
  export declare const serializeAws_restJson1DeleteWorkloadCommand: (input: DeleteWorkloadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
51
  export declare const serializeAws_restJson1DeleteWorkloadShareCommand: (input: DeleteWorkloadShareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
52
  export declare const serializeAws_restJson1DisassociateLensesCommand: (input: DisassociateLensesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ export declare const serializeAws_restJson1ExportLensCommand: (input: ExportLensCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
54
  export declare const serializeAws_restJson1GetAnswerCommand: (input: GetAnswerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ export declare const serializeAws_restJson1GetLensCommand: (input: GetLensCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
56
  export declare const serializeAws_restJson1GetLensReviewCommand: (input: GetLensReviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
57
  export declare const serializeAws_restJson1GetLensReviewReportCommand: (input: GetLensReviewReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
58
  export declare const serializeAws_restJson1GetLensVersionDifferenceCommand: (input: GetLensVersionDifferenceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
59
  export declare const serializeAws_restJson1GetMilestoneCommand: (input: GetMilestoneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
60
  export declare const serializeAws_restJson1GetWorkloadCommand: (input: GetWorkloadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
+ export declare const serializeAws_restJson1ImportLensCommand: (input: ImportLensCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
62
  export declare const serializeAws_restJson1ListAnswersCommand: (input: ListAnswersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
63
  export declare const serializeAws_restJson1ListLensesCommand: (input: ListLensesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
64
  export declare const serializeAws_restJson1ListLensReviewImprovementsCommand: (input: ListLensReviewImprovementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
65
  export declare const serializeAws_restJson1ListLensReviewsCommand: (input: ListLensReviewsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_restJson1ListLensSharesCommand: (input: ListLensSharesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
67
  export declare const serializeAws_restJson1ListMilestonesCommand: (input: ListMilestonesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
68
  export declare const serializeAws_restJson1ListNotificationsCommand: (input: ListNotificationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
69
  export declare const serializeAws_restJson1ListShareInvitationsCommand: (input: ListShareInvitationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -63,22 +79,30 @@ export declare const serializeAws_restJson1UpdateWorkloadCommand: (input: Update
63
79
  export declare const serializeAws_restJson1UpdateWorkloadShareCommand: (input: UpdateWorkloadShareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
80
  export declare const serializeAws_restJson1UpgradeLensReviewCommand: (input: UpgradeLensReviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
81
  export declare const deserializeAws_restJson1AssociateLensesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateLensesCommandOutput>;
82
+ export declare const deserializeAws_restJson1CreateLensShareCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLensShareCommandOutput>;
83
+ export declare const deserializeAws_restJson1CreateLensVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLensVersionCommandOutput>;
66
84
  export declare const deserializeAws_restJson1CreateMilestoneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMilestoneCommandOutput>;
67
85
  export declare const deserializeAws_restJson1CreateWorkloadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkloadCommandOutput>;
68
86
  export declare const deserializeAws_restJson1CreateWorkloadShareCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkloadShareCommandOutput>;
87
+ export declare const deserializeAws_restJson1DeleteLensCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLensCommandOutput>;
88
+ export declare const deserializeAws_restJson1DeleteLensShareCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLensShareCommandOutput>;
69
89
  export declare const deserializeAws_restJson1DeleteWorkloadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkloadCommandOutput>;
70
90
  export declare const deserializeAws_restJson1DeleteWorkloadShareCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkloadShareCommandOutput>;
71
91
  export declare const deserializeAws_restJson1DisassociateLensesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateLensesCommandOutput>;
92
+ export declare const deserializeAws_restJson1ExportLensCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportLensCommandOutput>;
72
93
  export declare const deserializeAws_restJson1GetAnswerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAnswerCommandOutput>;
94
+ export declare const deserializeAws_restJson1GetLensCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLensCommandOutput>;
73
95
  export declare const deserializeAws_restJson1GetLensReviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLensReviewCommandOutput>;
74
96
  export declare const deserializeAws_restJson1GetLensReviewReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLensReviewReportCommandOutput>;
75
97
  export declare const deserializeAws_restJson1GetLensVersionDifferenceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLensVersionDifferenceCommandOutput>;
76
98
  export declare const deserializeAws_restJson1GetMilestoneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMilestoneCommandOutput>;
77
99
  export declare const deserializeAws_restJson1GetWorkloadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkloadCommandOutput>;
100
+ export declare const deserializeAws_restJson1ImportLensCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportLensCommandOutput>;
78
101
  export declare const deserializeAws_restJson1ListAnswersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAnswersCommandOutput>;
79
102
  export declare const deserializeAws_restJson1ListLensesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLensesCommandOutput>;
80
103
  export declare const deserializeAws_restJson1ListLensReviewImprovementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLensReviewImprovementsCommandOutput>;
81
104
  export declare const deserializeAws_restJson1ListLensReviewsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLensReviewsCommandOutput>;
105
+ export declare const deserializeAws_restJson1ListLensSharesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLensSharesCommandOutput>;
82
106
  export declare const deserializeAws_restJson1ListMilestonesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMilestonesCommandOutput>;
83
107
  export declare const deserializeAws_restJson1ListNotificationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNotificationsCommandOutput>;
84
108
  export declare const deserializeAws_restJson1ListShareInvitationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListShareInvitationsCommandOutput>;