@aws-sdk/client-wellarchitected 3.686.0 → 3.691.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.
@@ -26,10 +26,10 @@ export declare const IssueManagementType: {
26
26
  export type IssueManagementType =
27
27
  (typeof IssueManagementType)[keyof typeof IssueManagementType];
28
28
  export interface AccountJiraConfigurationInput {
29
- IssueManagementStatus?: AccountJiraIssueManagementStatus;
30
- IssueManagementType?: IssueManagementType;
31
- JiraProjectKey?: string;
32
- IntegrationStatus?: IntegrationStatusInput;
29
+ IssueManagementStatus?: AccountJiraIssueManagementStatus | undefined;
30
+ IssueManagementType?: IssueManagementType | undefined;
31
+ JiraProjectKey?: string | undefined;
32
+ IntegrationStatus?: IntegrationStatusInput | undefined;
33
33
  }
34
34
  export declare const IntegrationStatus: {
35
35
  readonly CONFIGURED: "CONFIGURED";
@@ -38,12 +38,12 @@ export declare const IntegrationStatus: {
38
38
  export type IntegrationStatus =
39
39
  (typeof IntegrationStatus)[keyof typeof IntegrationStatus];
40
40
  export interface AccountJiraConfigurationOutput {
41
- IntegrationStatus?: IntegrationStatus;
42
- IssueManagementStatus?: AccountJiraIssueManagementStatus;
43
- IssueManagementType?: IssueManagementType;
44
- Subdomain?: string;
45
- JiraProjectKey?: string;
46
- StatusMessage?: string;
41
+ IntegrationStatus?: IntegrationStatus | undefined;
42
+ IssueManagementStatus?: AccountJiraIssueManagementStatus | undefined;
43
+ IssueManagementType?: IssueManagementType | undefined;
44
+ Subdomain?: string | undefined;
45
+ JiraProjectKey?: string | undefined;
46
+ StatusMessage?: string | undefined;
47
47
  }
48
48
  export declare const CheckStatus: {
49
49
  readonly ERROR: "ERROR";
@@ -54,8 +54,8 @@ export declare const CheckStatus: {
54
54
  };
55
55
  export type CheckStatus = (typeof CheckStatus)[keyof typeof CheckStatus];
56
56
  export interface ChoiceContent {
57
- DisplayText?: string;
58
- Url?: string;
57
+ DisplayText?: string | undefined;
58
+ Url?: string | undefined;
59
59
  }
60
60
  export declare const AdditionalResourceType: {
61
61
  readonly HELPFUL_RESOURCE: "HELPFUL_RESOURCE";
@@ -64,8 +64,8 @@ export declare const AdditionalResourceType: {
64
64
  export type AdditionalResourceType =
65
65
  (typeof AdditionalResourceType)[keyof typeof AdditionalResourceType];
66
66
  export interface AdditionalResources {
67
- Type?: AdditionalResourceType;
68
- Content?: ChoiceContent[];
67
+ Type?: AdditionalResourceType | undefined;
68
+ Content?: ChoiceContent[] | undefined;
69
69
  }
70
70
  export declare const ChoiceReason: {
71
71
  readonly ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS";
@@ -82,22 +82,22 @@ export declare const ChoiceStatus: {
82
82
  };
83
83
  export type ChoiceStatus = (typeof ChoiceStatus)[keyof typeof ChoiceStatus];
84
84
  export interface ChoiceAnswer {
85
- ChoiceId?: string;
86
- Status?: ChoiceStatus;
87
- Reason?: ChoiceReason;
88
- Notes?: string;
85
+ ChoiceId?: string | undefined;
86
+ Status?: ChoiceStatus | undefined;
87
+ Reason?: ChoiceReason | undefined;
88
+ Notes?: string | undefined;
89
89
  }
90
90
  export interface Choice {
91
- ChoiceId?: string;
92
- Title?: string;
93
- Description?: string;
94
- HelpfulResource?: ChoiceContent;
95
- ImprovementPlan?: ChoiceContent;
96
- AdditionalResources?: AdditionalResources[];
91
+ ChoiceId?: string | undefined;
92
+ Title?: string | undefined;
93
+ Description?: string | undefined;
94
+ HelpfulResource?: ChoiceContent | undefined;
95
+ ImprovementPlan?: ChoiceContent | undefined;
96
+ AdditionalResources?: AdditionalResources[] | undefined;
97
97
  }
98
98
  export interface JiraConfiguration {
99
- JiraIssueUrl?: string;
100
- LastSyncedTime?: Date;
99
+ JiraIssueUrl?: string | undefined;
100
+ LastSyncedTime?: Date | undefined;
101
101
  }
102
102
  export declare const AnswerReason: {
103
103
  readonly ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS";
@@ -116,26 +116,26 @@ export declare const Risk: {
116
116
  };
117
117
  export type Risk = (typeof Risk)[keyof typeof Risk];
118
118
  export interface Answer {
119
- QuestionId?: string;
120
- PillarId?: string;
121
- QuestionTitle?: string;
122
- QuestionDescription?: string;
123
- ImprovementPlanUrl?: string;
124
- HelpfulResourceUrl?: string;
125
- HelpfulResourceDisplayText?: string;
126
- Choices?: Choice[];
127
- SelectedChoices?: string[];
128
- ChoiceAnswers?: ChoiceAnswer[];
129
- IsApplicable?: boolean;
130
- Risk?: Risk;
131
- Notes?: string;
132
- Reason?: AnswerReason;
133
- JiraConfiguration?: JiraConfiguration;
119
+ QuestionId?: string | undefined;
120
+ PillarId?: string | undefined;
121
+ QuestionTitle?: string | undefined;
122
+ QuestionDescription?: string | undefined;
123
+ ImprovementPlanUrl?: string | undefined;
124
+ HelpfulResourceUrl?: string | undefined;
125
+ HelpfulResourceDisplayText?: string | undefined;
126
+ Choices?: Choice[] | undefined;
127
+ SelectedChoices?: string[] | undefined;
128
+ ChoiceAnswers?: ChoiceAnswer[] | undefined;
129
+ IsApplicable?: boolean | undefined;
130
+ Risk?: Risk | undefined;
131
+ Notes?: string | undefined;
132
+ Reason?: AnswerReason | undefined;
133
+ JiraConfiguration?: JiraConfiguration | undefined;
134
134
  }
135
135
  export interface ChoiceAnswerSummary {
136
- ChoiceId?: string;
137
- Status?: ChoiceStatus;
138
- Reason?: ChoiceReason;
136
+ ChoiceId?: string | undefined;
137
+ Status?: ChoiceStatus | undefined;
138
+ Reason?: ChoiceReason | undefined;
139
139
  }
140
140
  export declare const QuestionType: {
141
141
  readonly NON_PRIORITIZED: "NON_PRIORITIZED";
@@ -143,17 +143,17 @@ export declare const QuestionType: {
143
143
  };
144
144
  export type QuestionType = (typeof QuestionType)[keyof typeof QuestionType];
145
145
  export interface AnswerSummary {
146
- QuestionId?: string;
147
- PillarId?: string;
148
- QuestionTitle?: string;
149
- Choices?: Choice[];
150
- SelectedChoices?: string[];
151
- ChoiceAnswerSummaries?: ChoiceAnswerSummary[];
152
- IsApplicable?: boolean;
153
- Risk?: Risk;
154
- Reason?: AnswerReason;
155
- QuestionType?: QuestionType;
156
- JiraConfiguration?: JiraConfiguration;
146
+ QuestionId?: string | undefined;
147
+ PillarId?: string | undefined;
148
+ QuestionTitle?: string | undefined;
149
+ Choices?: Choice[] | undefined;
150
+ SelectedChoices?: string[] | undefined;
151
+ ChoiceAnswerSummaries?: ChoiceAnswerSummary[] | undefined;
152
+ IsApplicable?: boolean | undefined;
153
+ Risk?: Risk | undefined;
154
+ Reason?: AnswerReason | undefined;
155
+ QuestionType?: QuestionType | undefined;
156
+ JiraConfiguration?: JiraConfiguration | undefined;
157
157
  }
158
158
  export interface AssociateLensesInput {
159
159
  WorkloadId: string | undefined;
@@ -189,8 +189,8 @@ export declare class ThrottlingException extends __BaseException {
189
189
  readonly name: "ThrottlingException";
190
190
  readonly $fault: "client";
191
191
  Message: string | undefined;
192
- QuotaCode?: string;
193
- ServiceCode?: string;
192
+ QuotaCode?: string | undefined;
193
+ ServiceCode?: string | undefined;
194
194
  constructor(
195
195
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
196
196
  );
@@ -211,8 +211,8 @@ export declare class ValidationException extends __BaseException {
211
211
  readonly name: "ValidationException";
212
212
  readonly $fault: "client";
213
213
  Message: string | undefined;
214
- Reason?: ValidationExceptionReason;
215
- Fields?: ValidationExceptionField[];
214
+ Reason?: ValidationExceptionReason | undefined;
215
+ Fields?: ValidationExceptionField[] | undefined;
216
216
  constructor(
217
217
  opts: __ExceptionOptionType<ValidationException, __BaseException>
218
218
  );
@@ -222,8 +222,8 @@ export interface AssociateProfilesInput {
222
222
  ProfileArns: string[] | undefined;
223
223
  }
224
224
  export interface BestPractice {
225
- ChoiceId?: string;
226
- ChoiceTitle?: string;
225
+ ChoiceId?: string | undefined;
226
+ ChoiceTitle?: string | undefined;
227
227
  }
228
228
  export declare const CheckProvider: {
229
229
  readonly TRUSTED_ADVISOR: "TRUSTED_ADVISOR";
@@ -238,86 +238,86 @@ export declare const CheckFailureReason: {
238
238
  export type CheckFailureReason =
239
239
  (typeof CheckFailureReason)[keyof typeof CheckFailureReason];
240
240
  export interface CheckDetail {
241
- Id?: string;
242
- Name?: string;
243
- Description?: string;
244
- Provider?: CheckProvider;
245
- LensArn?: string;
246
- PillarId?: string;
247
- QuestionId?: string;
248
- ChoiceId?: string;
249
- Status?: CheckStatus;
250
- AccountId?: string;
251
- FlaggedResources?: number;
252
- Reason?: CheckFailureReason;
253
- UpdatedAt?: Date;
241
+ Id?: string | undefined;
242
+ Name?: string | undefined;
243
+ Description?: string | undefined;
244
+ Provider?: CheckProvider | undefined;
245
+ LensArn?: string | undefined;
246
+ PillarId?: string | undefined;
247
+ QuestionId?: string | undefined;
248
+ ChoiceId?: string | undefined;
249
+ Status?: CheckStatus | undefined;
250
+ AccountId?: string | undefined;
251
+ FlaggedResources?: number | undefined;
252
+ Reason?: CheckFailureReason | undefined;
253
+ UpdatedAt?: Date | undefined;
254
254
  }
255
255
  export interface CheckSummary {
256
- Id?: string;
257
- Name?: string;
258
- Provider?: CheckProvider;
259
- Description?: string;
260
- UpdatedAt?: Date;
261
- LensArn?: string;
262
- PillarId?: string;
263
- QuestionId?: string;
264
- ChoiceId?: string;
265
- Status?: CheckStatus;
266
- AccountSummary?: Partial<Record<CheckStatus, number>>;
256
+ Id?: string | undefined;
257
+ Name?: string | undefined;
258
+ Provider?: CheckProvider | undefined;
259
+ Description?: string | undefined;
260
+ UpdatedAt?: Date | undefined;
261
+ LensArn?: string | undefined;
262
+ PillarId?: string | undefined;
263
+ QuestionId?: string | undefined;
264
+ ChoiceId?: string | undefined;
265
+ Status?: CheckStatus | undefined;
266
+ AccountSummary?: Partial<Record<CheckStatus, number>> | undefined;
267
267
  }
268
268
  export interface ChoiceImprovementPlan {
269
- ChoiceId?: string;
270
- DisplayText?: string;
271
- ImprovementPlanUrl?: string;
269
+ ChoiceId?: string | undefined;
270
+ DisplayText?: string | undefined;
271
+ ImprovementPlanUrl?: string | undefined;
272
272
  }
273
273
  export interface ChoiceUpdate {
274
274
  Status: ChoiceStatus | undefined;
275
- Reason?: ChoiceReason;
276
- Notes?: string;
275
+ Reason?: ChoiceReason | undefined;
276
+ Notes?: string | undefined;
277
277
  }
278
278
  export interface QuestionMetric {
279
- QuestionId?: string;
280
- Risk?: Risk;
281
- BestPractices?: BestPractice[];
279
+ QuestionId?: string | undefined;
280
+ Risk?: Risk | undefined;
281
+ BestPractices?: BestPractice[] | undefined;
282
282
  }
283
283
  export interface PillarMetric {
284
- PillarId?: string;
285
- RiskCounts?: Partial<Record<Risk, number>>;
286
- Questions?: QuestionMetric[];
284
+ PillarId?: string | undefined;
285
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
286
+ Questions?: QuestionMetric[] | undefined;
287
287
  }
288
288
  export interface LensMetric {
289
- LensArn?: string;
290
- Pillars?: PillarMetric[];
291
- RiskCounts?: Partial<Record<Risk, number>>;
289
+ LensArn?: string | undefined;
290
+ Pillars?: PillarMetric[] | undefined;
291
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
292
292
  }
293
293
  export declare const MetricType: {
294
294
  readonly WORKLOAD: "WORKLOAD";
295
295
  };
296
296
  export type MetricType = (typeof MetricType)[keyof typeof MetricType];
297
297
  export interface ConsolidatedReportMetric {
298
- MetricType?: MetricType;
299
- RiskCounts?: Partial<Record<Risk, number>>;
300
- WorkloadId?: string;
301
- WorkloadName?: string;
302
- WorkloadArn?: string;
303
- UpdatedAt?: Date;
304
- Lenses?: LensMetric[];
305
- LensesAppliedCount?: number;
298
+ MetricType?: MetricType | undefined;
299
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
300
+ WorkloadId?: string | undefined;
301
+ WorkloadName?: string | undefined;
302
+ WorkloadArn?: string | undefined;
303
+ UpdatedAt?: Date | undefined;
304
+ Lenses?: LensMetric[] | undefined;
305
+ LensesAppliedCount?: number | undefined;
306
306
  }
307
307
  export interface CreateLensShareInput {
308
308
  LensAlias: string | undefined;
309
309
  SharedWith: string | undefined;
310
- ClientRequestToken?: string;
310
+ ClientRequestToken?: string | undefined;
311
311
  }
312
312
  export interface CreateLensShareOutput {
313
- ShareId?: string;
313
+ ShareId?: string | undefined;
314
314
  }
315
315
  export declare class ServiceQuotaExceededException extends __BaseException {
316
316
  readonly name: "ServiceQuotaExceededException";
317
317
  readonly $fault: "client";
318
318
  Message: string | undefined;
319
- ResourceId?: string;
320
- ResourceType?: string;
319
+ ResourceId?: string | undefined;
320
+ ResourceType?: string | undefined;
321
321
  QuotaCode: string | undefined;
322
322
  ServiceCode: string | undefined;
323
323
  constructor(
@@ -327,65 +327,65 @@ export declare class ServiceQuotaExceededException extends __BaseException {
327
327
  export interface CreateLensVersionInput {
328
328
  LensAlias: string | undefined;
329
329
  LensVersion: string | undefined;
330
- IsMajorVersion?: boolean;
331
- ClientRequestToken?: string;
330
+ IsMajorVersion?: boolean | undefined;
331
+ ClientRequestToken?: string | undefined;
332
332
  }
333
333
  export interface CreateLensVersionOutput {
334
- LensArn?: string;
335
- LensVersion?: string;
334
+ LensArn?: string | undefined;
335
+ LensVersion?: string | undefined;
336
336
  }
337
337
  export interface CreateMilestoneInput {
338
338
  WorkloadId: string | undefined;
339
339
  MilestoneName: string | undefined;
340
- ClientRequestToken?: string;
340
+ ClientRequestToken?: string | undefined;
341
341
  }
342
342
  export interface CreateMilestoneOutput {
343
- WorkloadId?: string;
344
- MilestoneNumber?: number;
343
+ WorkloadId?: string | undefined;
344
+ MilestoneNumber?: number | undefined;
345
345
  }
346
346
  export interface ProfileQuestionUpdate {
347
- QuestionId?: string;
348
- SelectedChoiceIds?: string[];
347
+ QuestionId?: string | undefined;
348
+ SelectedChoiceIds?: string[] | undefined;
349
349
  }
350
350
  export interface CreateProfileInput {
351
351
  ProfileName: string | undefined;
352
352
  ProfileDescription: string | undefined;
353
353
  ProfileQuestions: ProfileQuestionUpdate[] | undefined;
354
- ClientRequestToken?: string;
355
- Tags?: Record<string, string>;
354
+ ClientRequestToken?: string | undefined;
355
+ Tags?: Record<string, string> | undefined;
356
356
  }
357
357
  export interface CreateProfileOutput {
358
- ProfileArn?: string;
359
- ProfileVersion?: string;
358
+ ProfileArn?: string | undefined;
359
+ ProfileVersion?: string | undefined;
360
360
  }
361
361
  export interface CreateProfileShareInput {
362
362
  ProfileArn: string | undefined;
363
363
  SharedWith: string | undefined;
364
- ClientRequestToken?: string;
364
+ ClientRequestToken?: string | undefined;
365
365
  }
366
366
  export interface CreateProfileShareOutput {
367
- ShareId?: string;
368
- ProfileArn?: string;
367
+ ShareId?: string | undefined;
368
+ ProfileArn?: string | undefined;
369
369
  }
370
370
  export interface CreateReviewTemplateInput {
371
371
  TemplateName: string | undefined;
372
372
  Description: string | undefined;
373
373
  Lenses: string[] | undefined;
374
- Notes?: string;
375
- Tags?: Record<string, string>;
376
- ClientRequestToken?: string;
374
+ Notes?: string | undefined;
375
+ Tags?: Record<string, string> | undefined;
376
+ ClientRequestToken?: string | undefined;
377
377
  }
378
378
  export interface CreateReviewTemplateOutput {
379
- TemplateArn?: string;
379
+ TemplateArn?: string | undefined;
380
380
  }
381
381
  export interface CreateTemplateShareInput {
382
382
  TemplateArn: string | undefined;
383
383
  SharedWith: string | undefined;
384
- ClientRequestToken?: string;
384
+ ClientRequestToken?: string | undefined;
385
385
  }
386
386
  export interface CreateTemplateShareOutput {
387
- TemplateArn?: string;
388
- ShareId?: string;
387
+ TemplateArn?: string | undefined;
388
+ ShareId?: string | undefined;
389
389
  }
390
390
  export declare const TrustedAdvisorIntegrationStatus: {
391
391
  readonly DISABLED: "DISABLED";
@@ -400,8 +400,8 @@ export declare const DefinitionType: {
400
400
  export type DefinitionType =
401
401
  (typeof DefinitionType)[keyof typeof DefinitionType];
402
402
  export interface WorkloadDiscoveryConfig {
403
- TrustedAdvisorIntegrationStatus?: TrustedAdvisorIntegrationStatus;
404
- WorkloadResourceDefinition?: DefinitionType[];
403
+ TrustedAdvisorIntegrationStatus?: TrustedAdvisorIntegrationStatus | undefined;
404
+ WorkloadResourceDefinition?: DefinitionType[] | undefined;
405
405
  }
406
406
  export declare const WorkloadEnvironment: {
407
407
  readonly PREPRODUCTION: "PREPRODUCTION";
@@ -417,35 +417,35 @@ export declare const WorkloadIssueManagementStatus: {
417
417
  export type WorkloadIssueManagementStatus =
418
418
  (typeof WorkloadIssueManagementStatus)[keyof typeof WorkloadIssueManagementStatus];
419
419
  export interface WorkloadJiraConfigurationInput {
420
- IssueManagementStatus?: WorkloadIssueManagementStatus;
421
- IssueManagementType?: IssueManagementType;
422
- JiraProjectKey?: string;
420
+ IssueManagementStatus?: WorkloadIssueManagementStatus | undefined;
421
+ IssueManagementType?: IssueManagementType | undefined;
422
+ JiraProjectKey?: string | undefined;
423
423
  }
424
424
  export interface CreateWorkloadInput {
425
425
  WorkloadName: string | undefined;
426
426
  Description: string | undefined;
427
427
  Environment: WorkloadEnvironment | undefined;
428
- AccountIds?: string[];
429
- AwsRegions?: string[];
430
- NonAwsRegions?: string[];
431
- PillarPriorities?: string[];
432
- ArchitecturalDesign?: string;
433
- ReviewOwner?: string;
434
- IndustryType?: string;
435
- Industry?: string;
428
+ AccountIds?: string[] | undefined;
429
+ AwsRegions?: string[] | undefined;
430
+ NonAwsRegions?: string[] | undefined;
431
+ PillarPriorities?: string[] | undefined;
432
+ ArchitecturalDesign?: string | undefined;
433
+ ReviewOwner?: string | undefined;
434
+ IndustryType?: string | undefined;
435
+ Industry?: string | undefined;
436
436
  Lenses: string[] | undefined;
437
- Notes?: string;
438
- ClientRequestToken?: string;
439
- Tags?: Record<string, string>;
440
- DiscoveryConfig?: WorkloadDiscoveryConfig;
441
- Applications?: string[];
442
- ProfileArns?: string[];
443
- ReviewTemplateArns?: string[];
444
- JiraConfiguration?: WorkloadJiraConfigurationInput;
437
+ Notes?: string | undefined;
438
+ ClientRequestToken?: string | undefined;
439
+ Tags?: Record<string, string> | undefined;
440
+ DiscoveryConfig?: WorkloadDiscoveryConfig | undefined;
441
+ Applications?: string[] | undefined;
442
+ ProfileArns?: string[] | undefined;
443
+ ReviewTemplateArns?: string[] | undefined;
444
+ JiraConfiguration?: WorkloadJiraConfigurationInput | undefined;
445
445
  }
446
446
  export interface CreateWorkloadOutput {
447
- WorkloadId?: string;
448
- WorkloadArn?: string;
447
+ WorkloadId?: string | undefined;
448
+ WorkloadArn?: string | undefined;
449
449
  }
450
450
  export declare const PermissionType: {
451
451
  readonly CONTRIBUTOR: "CONTRIBUTOR";
@@ -457,11 +457,11 @@ export interface CreateWorkloadShareInput {
457
457
  WorkloadId: string | undefined;
458
458
  SharedWith: string | undefined;
459
459
  PermissionType: PermissionType | undefined;
460
- ClientRequestToken?: string;
460
+ ClientRequestToken?: string | undefined;
461
461
  }
462
462
  export interface CreateWorkloadShareOutput {
463
- WorkloadId?: string;
464
- ShareId?: string;
463
+ WorkloadId?: string | undefined;
464
+ ShareId?: string | undefined;
465
465
  }
466
466
  export declare const LensStatusType: {
467
467
  readonly ALL: "ALL";
@@ -472,40 +472,40 @@ export type LensStatusType =
472
472
  (typeof LensStatusType)[keyof typeof LensStatusType];
473
473
  export interface DeleteLensInput {
474
474
  LensAlias: string | undefined;
475
- ClientRequestToken?: string;
475
+ ClientRequestToken?: string | undefined;
476
476
  LensStatus: LensStatusType | undefined;
477
477
  }
478
478
  export interface DeleteLensShareInput {
479
479
  ShareId: string | undefined;
480
480
  LensAlias: string | undefined;
481
- ClientRequestToken?: string;
481
+ ClientRequestToken?: string | undefined;
482
482
  }
483
483
  export interface DeleteProfileInput {
484
484
  ProfileArn: string | undefined;
485
- ClientRequestToken?: string;
485
+ ClientRequestToken?: string | undefined;
486
486
  }
487
487
  export interface DeleteProfileShareInput {
488
488
  ShareId: string | undefined;
489
489
  ProfileArn: string | undefined;
490
- ClientRequestToken?: string;
490
+ ClientRequestToken?: string | undefined;
491
491
  }
492
492
  export interface DeleteReviewTemplateInput {
493
493
  TemplateArn: string | undefined;
494
- ClientRequestToken?: string;
494
+ ClientRequestToken?: string | undefined;
495
495
  }
496
496
  export interface DeleteTemplateShareInput {
497
497
  ShareId: string | undefined;
498
498
  TemplateArn: string | undefined;
499
- ClientRequestToken?: string;
499
+ ClientRequestToken?: string | undefined;
500
500
  }
501
501
  export interface DeleteWorkloadInput {
502
502
  WorkloadId: string | undefined;
503
- ClientRequestToken?: string;
503
+ ClientRequestToken?: string | undefined;
504
504
  }
505
505
  export interface DeleteWorkloadShareInput {
506
506
  ShareId: string | undefined;
507
507
  WorkloadId: string | undefined;
508
- ClientRequestToken?: string;
508
+ ClientRequestToken?: string | undefined;
509
509
  }
510
510
  export declare const DifferenceStatus: {
511
511
  readonly DELETED: "DELETED";
@@ -530,23 +530,23 @@ export type DiscoveryIntegrationStatus =
530
530
  (typeof DiscoveryIntegrationStatus)[keyof typeof DiscoveryIntegrationStatus];
531
531
  export interface ExportLensInput {
532
532
  LensAlias: string | undefined;
533
- LensVersion?: string;
533
+ LensVersion?: string | undefined;
534
534
  }
535
535
  export interface ExportLensOutput {
536
- LensJSON?: string;
536
+ LensJSON?: string | undefined;
537
537
  }
538
538
  export interface GetAnswerInput {
539
539
  WorkloadId: string | undefined;
540
540
  LensAlias: string | undefined;
541
541
  QuestionId: string | undefined;
542
- MilestoneNumber?: number;
542
+ MilestoneNumber?: number | undefined;
543
543
  }
544
544
  export interface GetAnswerOutput {
545
- WorkloadId?: string;
546
- MilestoneNumber?: number;
547
- LensAlias?: string;
548
- LensArn?: string;
549
- Answer?: Answer;
545
+ WorkloadId?: string | undefined;
546
+ MilestoneNumber?: number | undefined;
547
+ LensAlias?: string | undefined;
548
+ LensArn?: string | undefined;
549
+ Answer?: Answer | undefined;
550
550
  }
551
551
  export declare const ReportFormat: {
552
552
  readonly JSON: "JSON";
@@ -555,14 +555,14 @@ export declare const ReportFormat: {
555
555
  export type ReportFormat = (typeof ReportFormat)[keyof typeof ReportFormat];
556
556
  export interface GetConsolidatedReportInput {
557
557
  Format: ReportFormat | undefined;
558
- IncludeSharedResources?: boolean;
559
- NextToken?: string;
560
- MaxResults?: number;
558
+ IncludeSharedResources?: boolean | undefined;
559
+ NextToken?: string | undefined;
560
+ MaxResults?: number | undefined;
561
561
  }
562
562
  export interface GetConsolidatedReportOutput {
563
- Metrics?: ConsolidatedReportMetric[];
564
- NextToken?: string;
565
- Base64String?: string;
563
+ Metrics?: ConsolidatedReportMetric[] | undefined;
564
+ NextToken?: string | undefined;
565
+ Base64String?: string | undefined;
566
566
  }
567
567
  export declare const OrganizationSharingStatus: {
568
568
  readonly DISABLED: "DISABLED";
@@ -571,37 +571,37 @@ export declare const OrganizationSharingStatus: {
571
571
  export type OrganizationSharingStatus =
572
572
  (typeof OrganizationSharingStatus)[keyof typeof OrganizationSharingStatus];
573
573
  export interface GetGlobalSettingsOutput {
574
- OrganizationSharingStatus?: OrganizationSharingStatus;
575
- DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus;
576
- JiraConfiguration?: AccountJiraConfigurationOutput;
574
+ OrganizationSharingStatus?: OrganizationSharingStatus | undefined;
575
+ DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus | undefined;
576
+ JiraConfiguration?: AccountJiraConfigurationOutput | undefined;
577
577
  }
578
578
  export interface GetLensInput {
579
579
  LensAlias: string | undefined;
580
- LensVersion?: string;
580
+ LensVersion?: string | undefined;
581
581
  }
582
582
  export interface Lens {
583
- LensArn?: string;
584
- LensVersion?: string;
585
- Name?: string;
586
- Description?: string;
587
- Owner?: string;
588
- ShareInvitationId?: string;
589
- Tags?: Record<string, string>;
583
+ LensArn?: string | undefined;
584
+ LensVersion?: string | undefined;
585
+ Name?: string | undefined;
586
+ Description?: string | undefined;
587
+ Owner?: string | undefined;
588
+ ShareInvitationId?: string | undefined;
589
+ Tags?: Record<string, string> | undefined;
590
590
  }
591
591
  export interface GetLensOutput {
592
- Lens?: Lens;
592
+ Lens?: Lens | undefined;
593
593
  }
594
594
  export interface GetLensReviewInput {
595
595
  WorkloadId: string | undefined;
596
596
  LensAlias: string | undefined;
597
- MilestoneNumber?: number;
597
+ MilestoneNumber?: number | undefined;
598
598
  }
599
599
  export interface SelectedPillar {
600
- PillarId?: string;
601
- SelectedQuestionIds?: string[];
600
+ PillarId?: string | undefined;
601
+ SelectedQuestionIds?: string[] | undefined;
602
602
  }
603
603
  export interface JiraSelectedQuestionConfiguration {
604
- SelectedPillars?: SelectedPillar[];
604
+ SelectedPillars?: SelectedPillar[] | undefined;
605
605
  }
606
606
  export declare const LensStatus: {
607
607
  readonly CURRENT: "CURRENT";
@@ -612,77 +612,77 @@ export declare const LensStatus: {
612
612
  };
613
613
  export type LensStatus = (typeof LensStatus)[keyof typeof LensStatus];
614
614
  export interface PillarReviewSummary {
615
- PillarId?: string;
616
- PillarName?: string;
617
- Notes?: string;
618
- RiskCounts?: Partial<Record<Risk, number>>;
619
- PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
615
+ PillarId?: string | undefined;
616
+ PillarName?: string | undefined;
617
+ Notes?: string | undefined;
618
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
619
+ PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
620
620
  }
621
621
  export interface WorkloadProfile {
622
- ProfileArn?: string;
623
- ProfileVersion?: string;
622
+ ProfileArn?: string | undefined;
623
+ ProfileVersion?: string | undefined;
624
624
  }
625
625
  export interface LensReview {
626
- LensAlias?: string;
627
- LensArn?: string;
628
- LensVersion?: string;
629
- LensName?: string;
630
- LensStatus?: LensStatus;
631
- PillarReviewSummaries?: PillarReviewSummary[];
632
- JiraConfiguration?: JiraSelectedQuestionConfiguration;
633
- UpdatedAt?: Date;
634
- Notes?: string;
635
- RiskCounts?: Partial<Record<Risk, number>>;
636
- NextToken?: string;
637
- Profiles?: WorkloadProfile[];
638
- PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
626
+ LensAlias?: string | undefined;
627
+ LensArn?: string | undefined;
628
+ LensVersion?: string | undefined;
629
+ LensName?: string | undefined;
630
+ LensStatus?: LensStatus | undefined;
631
+ PillarReviewSummaries?: PillarReviewSummary[] | undefined;
632
+ JiraConfiguration?: JiraSelectedQuestionConfiguration | undefined;
633
+ UpdatedAt?: Date | undefined;
634
+ Notes?: string | undefined;
635
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
636
+ NextToken?: string | undefined;
637
+ Profiles?: WorkloadProfile[] | undefined;
638
+ PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
639
639
  }
640
640
  export interface GetLensReviewOutput {
641
- WorkloadId?: string;
642
- MilestoneNumber?: number;
643
- LensReview?: LensReview;
641
+ WorkloadId?: string | undefined;
642
+ MilestoneNumber?: number | undefined;
643
+ LensReview?: LensReview | undefined;
644
644
  }
645
645
  export interface GetLensReviewReportInput {
646
646
  WorkloadId: string | undefined;
647
647
  LensAlias: string | undefined;
648
- MilestoneNumber?: number;
648
+ MilestoneNumber?: number | undefined;
649
649
  }
650
650
  export interface LensReviewReport {
651
- LensAlias?: string;
652
- LensArn?: string;
653
- Base64String?: string;
651
+ LensAlias?: string | undefined;
652
+ LensArn?: string | undefined;
653
+ Base64String?: string | undefined;
654
654
  }
655
655
  export interface GetLensReviewReportOutput {
656
- WorkloadId?: string;
657
- MilestoneNumber?: number;
658
- LensReviewReport?: LensReviewReport;
656
+ WorkloadId?: string | undefined;
657
+ MilestoneNumber?: number | undefined;
658
+ LensReviewReport?: LensReviewReport | undefined;
659
659
  }
660
660
  export interface GetLensVersionDifferenceInput {
661
661
  LensAlias: string | undefined;
662
- BaseLensVersion?: string;
663
- TargetLensVersion?: string;
662
+ BaseLensVersion?: string | undefined;
663
+ TargetLensVersion?: string | undefined;
664
664
  }
665
665
  export interface QuestionDifference {
666
- QuestionId?: string;
667
- QuestionTitle?: string;
668
- DifferenceStatus?: DifferenceStatus;
666
+ QuestionId?: string | undefined;
667
+ QuestionTitle?: string | undefined;
668
+ DifferenceStatus?: DifferenceStatus | undefined;
669
669
  }
670
670
  export interface PillarDifference {
671
- PillarId?: string;
672
- PillarName?: string;
673
- DifferenceStatus?: DifferenceStatus;
674
- QuestionDifferences?: QuestionDifference[];
671
+ PillarId?: string | undefined;
672
+ PillarName?: string | undefined;
673
+ DifferenceStatus?: DifferenceStatus | undefined;
674
+ QuestionDifferences?: QuestionDifference[] | undefined;
675
675
  }
676
676
  export interface VersionDifferences {
677
- PillarDifferences?: PillarDifference[];
677
+ PillarDifferences?: PillarDifference[] | undefined;
678
678
  }
679
679
  export interface GetLensVersionDifferenceOutput {
680
- LensAlias?: string;
681
- LensArn?: string;
682
- BaseLensVersion?: string;
683
- TargetLensVersion?: string;
684
- LatestLensVersion?: string;
685
- VersionDifferences?: VersionDifferences;
680
+ LensAlias?: string | undefined;
681
+ LensArn?: string | undefined;
682
+ BaseLensVersion?: string | undefined;
683
+ TargetLensVersion?: string | undefined;
684
+ LatestLensVersion?: string | undefined;
685
+ VersionDifferences?: VersionDifferences | undefined;
686
686
  }
687
687
  export interface GetMilestoneInput {
688
688
  WorkloadId: string | undefined;
@@ -698,106 +698,106 @@ export declare const WorkloadImprovementStatus: {
698
698
  export type WorkloadImprovementStatus =
699
699
  (typeof WorkloadImprovementStatus)[keyof typeof WorkloadImprovementStatus];
700
700
  export interface WorkloadJiraConfigurationOutput {
701
- IssueManagementStatus?: WorkloadIssueManagementStatus;
702
- IssueManagementType?: IssueManagementType;
703
- JiraProjectKey?: string;
704
- StatusMessage?: string;
701
+ IssueManagementStatus?: WorkloadIssueManagementStatus | undefined;
702
+ IssueManagementType?: IssueManagementType | undefined;
703
+ JiraProjectKey?: string | undefined;
704
+ StatusMessage?: string | undefined;
705
705
  }
706
706
  export interface Workload {
707
- WorkloadId?: string;
708
- WorkloadArn?: string;
709
- WorkloadName?: string;
710
- Description?: string;
711
- Environment?: WorkloadEnvironment;
712
- UpdatedAt?: Date;
713
- AccountIds?: string[];
714
- AwsRegions?: string[];
715
- NonAwsRegions?: string[];
716
- ArchitecturalDesign?: string;
717
- ReviewOwner?: string;
718
- ReviewRestrictionDate?: Date;
719
- IsReviewOwnerUpdateAcknowledged?: boolean;
720
- IndustryType?: string;
721
- Industry?: string;
722
- Notes?: string;
723
- ImprovementStatus?: WorkloadImprovementStatus;
724
- RiskCounts?: Partial<Record<Risk, number>>;
725
- PillarPriorities?: string[];
726
- Lenses?: string[];
727
- Owner?: string;
728
- ShareInvitationId?: string;
729
- Tags?: Record<string, string>;
730
- DiscoveryConfig?: WorkloadDiscoveryConfig;
731
- Applications?: string[];
732
- Profiles?: WorkloadProfile[];
733
- PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
734
- JiraConfiguration?: WorkloadJiraConfigurationOutput;
707
+ WorkloadId?: string | undefined;
708
+ WorkloadArn?: string | undefined;
709
+ WorkloadName?: string | undefined;
710
+ Description?: string | undefined;
711
+ Environment?: WorkloadEnvironment | undefined;
712
+ UpdatedAt?: Date | undefined;
713
+ AccountIds?: string[] | undefined;
714
+ AwsRegions?: string[] | undefined;
715
+ NonAwsRegions?: string[] | undefined;
716
+ ArchitecturalDesign?: string | undefined;
717
+ ReviewOwner?: string | undefined;
718
+ ReviewRestrictionDate?: Date | undefined;
719
+ IsReviewOwnerUpdateAcknowledged?: boolean | undefined;
720
+ IndustryType?: string | undefined;
721
+ Industry?: string | undefined;
722
+ Notes?: string | undefined;
723
+ ImprovementStatus?: WorkloadImprovementStatus | undefined;
724
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
725
+ PillarPriorities?: string[] | undefined;
726
+ Lenses?: string[] | undefined;
727
+ Owner?: string | undefined;
728
+ ShareInvitationId?: string | undefined;
729
+ Tags?: Record<string, string> | undefined;
730
+ DiscoveryConfig?: WorkloadDiscoveryConfig | undefined;
731
+ Applications?: string[] | undefined;
732
+ Profiles?: WorkloadProfile[] | undefined;
733
+ PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
734
+ JiraConfiguration?: WorkloadJiraConfigurationOutput | undefined;
735
735
  }
736
736
  export interface Milestone {
737
- MilestoneNumber?: number;
738
- MilestoneName?: string;
739
- RecordedAt?: Date;
740
- Workload?: Workload;
737
+ MilestoneNumber?: number | undefined;
738
+ MilestoneName?: string | undefined;
739
+ RecordedAt?: Date | undefined;
740
+ Workload?: Workload | undefined;
741
741
  }
742
742
  export interface GetMilestoneOutput {
743
- WorkloadId?: string;
744
- Milestone?: Milestone;
743
+ WorkloadId?: string | undefined;
744
+ Milestone?: Milestone | undefined;
745
745
  }
746
746
  export interface GetProfileInput {
747
747
  ProfileArn: string | undefined;
748
- ProfileVersion?: string;
748
+ ProfileVersion?: string | undefined;
749
749
  }
750
750
  export interface ProfileChoice {
751
- ChoiceId?: string;
752
- ChoiceTitle?: string;
753
- ChoiceDescription?: string;
751
+ ChoiceId?: string | undefined;
752
+ ChoiceTitle?: string | undefined;
753
+ ChoiceDescription?: string | undefined;
754
754
  }
755
755
  export interface ProfileQuestion {
756
- QuestionId?: string;
757
- QuestionTitle?: string;
758
- QuestionDescription?: string;
759
- QuestionChoices?: ProfileChoice[];
760
- SelectedChoiceIds?: string[];
761
- MinSelectedChoices?: number;
762
- MaxSelectedChoices?: number;
756
+ QuestionId?: string | undefined;
757
+ QuestionTitle?: string | undefined;
758
+ QuestionDescription?: string | undefined;
759
+ QuestionChoices?: ProfileChoice[] | undefined;
760
+ SelectedChoiceIds?: string[] | undefined;
761
+ MinSelectedChoices?: number | undefined;
762
+ MaxSelectedChoices?: number | undefined;
763
763
  }
764
764
  export interface Profile {
765
- ProfileArn?: string;
766
- ProfileVersion?: string;
767
- ProfileName?: string;
768
- ProfileDescription?: string;
769
- ProfileQuestions?: ProfileQuestion[];
770
- Owner?: string;
771
- CreatedAt?: Date;
772
- UpdatedAt?: Date;
773
- ShareInvitationId?: string;
774
- Tags?: Record<string, string>;
765
+ ProfileArn?: string | undefined;
766
+ ProfileVersion?: string | undefined;
767
+ ProfileName?: string | undefined;
768
+ ProfileDescription?: string | undefined;
769
+ ProfileQuestions?: ProfileQuestion[] | undefined;
770
+ Owner?: string | undefined;
771
+ CreatedAt?: Date | undefined;
772
+ UpdatedAt?: Date | undefined;
773
+ ShareInvitationId?: string | undefined;
774
+ Tags?: Record<string, string> | undefined;
775
775
  }
776
776
  export interface GetProfileOutput {
777
- Profile?: Profile;
777
+ Profile?: Profile | undefined;
778
778
  }
779
779
  export interface GetProfileTemplateInput {}
780
780
  export interface ProfileTemplateChoice {
781
- ChoiceId?: string;
782
- ChoiceTitle?: string;
783
- ChoiceDescription?: string;
781
+ ChoiceId?: string | undefined;
782
+ ChoiceTitle?: string | undefined;
783
+ ChoiceDescription?: string | undefined;
784
784
  }
785
785
  export interface ProfileTemplateQuestion {
786
- QuestionId?: string;
787
- QuestionTitle?: string;
788
- QuestionDescription?: string;
789
- QuestionChoices?: ProfileTemplateChoice[];
790
- MinSelectedChoices?: number;
791
- MaxSelectedChoices?: number;
786
+ QuestionId?: string | undefined;
787
+ QuestionTitle?: string | undefined;
788
+ QuestionDescription?: string | undefined;
789
+ QuestionChoices?: ProfileTemplateChoice[] | undefined;
790
+ MinSelectedChoices?: number | undefined;
791
+ MaxSelectedChoices?: number | undefined;
792
792
  }
793
793
  export interface ProfileTemplate {
794
- TemplateName?: string;
795
- TemplateQuestions?: ProfileTemplateQuestion[];
796
- CreatedAt?: Date;
797
- UpdatedAt?: Date;
794
+ TemplateName?: string | undefined;
795
+ TemplateQuestions?: ProfileTemplateQuestion[] | undefined;
796
+ CreatedAt?: Date | undefined;
797
+ UpdatedAt?: Date | undefined;
798
798
  }
799
799
  export interface GetProfileTemplateOutput {
800
- ProfileTemplate?: ProfileTemplate;
800
+ ProfileTemplate?: ProfileTemplate | undefined;
801
801
  }
802
802
  export interface GetReviewTemplateInput {
803
803
  TemplateArn: string | undefined;
@@ -814,20 +814,20 @@ export declare const ReviewTemplateUpdateStatus: {
814
814
  export type ReviewTemplateUpdateStatus =
815
815
  (typeof ReviewTemplateUpdateStatus)[keyof typeof ReviewTemplateUpdateStatus];
816
816
  export interface ReviewTemplate {
817
- Description?: string;
818
- Lenses?: string[];
819
- Notes?: string;
820
- QuestionCounts?: Partial<Record<Question, number>>;
821
- Owner?: string;
822
- UpdatedAt?: Date;
823
- TemplateArn?: string;
824
- TemplateName?: string;
825
- Tags?: Record<string, string>;
826
- UpdateStatus?: ReviewTemplateUpdateStatus;
827
- ShareInvitationId?: string;
817
+ Description?: string | undefined;
818
+ Lenses?: string[] | undefined;
819
+ Notes?: string | undefined;
820
+ QuestionCounts?: Partial<Record<Question, number>> | undefined;
821
+ Owner?: string | undefined;
822
+ UpdatedAt?: Date | undefined;
823
+ TemplateArn?: string | undefined;
824
+ TemplateName?: string | undefined;
825
+ Tags?: Record<string, string> | undefined;
826
+ UpdateStatus?: ReviewTemplateUpdateStatus | undefined;
827
+ ShareInvitationId?: string | undefined;
828
828
  }
829
829
  export interface GetReviewTemplateOutput {
830
- ReviewTemplate?: ReviewTemplate;
830
+ ReviewTemplate?: ReviewTemplate | undefined;
831
831
  }
832
832
  export interface GetReviewTemplateAnswerInput {
833
833
  TemplateArn: string | undefined;
@@ -841,63 +841,63 @@ export declare const ReviewTemplateAnswerStatus: {
841
841
  export type ReviewTemplateAnswerStatus =
842
842
  (typeof ReviewTemplateAnswerStatus)[keyof typeof ReviewTemplateAnswerStatus];
843
843
  export interface ReviewTemplateAnswer {
844
- QuestionId?: string;
845
- PillarId?: string;
846
- QuestionTitle?: string;
847
- QuestionDescription?: string;
848
- ImprovementPlanUrl?: string;
849
- HelpfulResourceUrl?: string;
850
- HelpfulResourceDisplayText?: string;
851
- Choices?: Choice[];
852
- SelectedChoices?: string[];
853
- ChoiceAnswers?: ChoiceAnswer[];
854
- IsApplicable?: boolean;
855
- AnswerStatus?: ReviewTemplateAnswerStatus;
856
- Notes?: string;
857
- Reason?: AnswerReason;
844
+ QuestionId?: string | undefined;
845
+ PillarId?: string | undefined;
846
+ QuestionTitle?: string | undefined;
847
+ QuestionDescription?: string | undefined;
848
+ ImprovementPlanUrl?: string | undefined;
849
+ HelpfulResourceUrl?: string | undefined;
850
+ HelpfulResourceDisplayText?: string | undefined;
851
+ Choices?: Choice[] | undefined;
852
+ SelectedChoices?: string[] | undefined;
853
+ ChoiceAnswers?: ChoiceAnswer[] | undefined;
854
+ IsApplicable?: boolean | undefined;
855
+ AnswerStatus?: ReviewTemplateAnswerStatus | undefined;
856
+ Notes?: string | undefined;
857
+ Reason?: AnswerReason | undefined;
858
858
  }
859
859
  export interface GetReviewTemplateAnswerOutput {
860
- TemplateArn?: string;
861
- LensAlias?: string;
862
- Answer?: ReviewTemplateAnswer;
860
+ TemplateArn?: string | undefined;
861
+ LensAlias?: string | undefined;
862
+ Answer?: ReviewTemplateAnswer | undefined;
863
863
  }
864
864
  export interface GetReviewTemplateLensReviewInput {
865
865
  TemplateArn: string | undefined;
866
866
  LensAlias: string | undefined;
867
867
  }
868
868
  export interface ReviewTemplatePillarReviewSummary {
869
- PillarId?: string;
870
- PillarName?: string;
871
- Notes?: string;
872
- QuestionCounts?: Partial<Record<Question, number>>;
869
+ PillarId?: string | undefined;
870
+ PillarName?: string | undefined;
871
+ Notes?: string | undefined;
872
+ QuestionCounts?: Partial<Record<Question, number>> | undefined;
873
873
  }
874
874
  export interface ReviewTemplateLensReview {
875
- LensAlias?: string;
876
- LensArn?: string;
877
- LensVersion?: string;
878
- LensName?: string;
879
- LensStatus?: LensStatus;
880
- PillarReviewSummaries?: ReviewTemplatePillarReviewSummary[];
881
- UpdatedAt?: Date;
882
- Notes?: string;
883
- QuestionCounts?: Partial<Record<Question, number>>;
884
- NextToken?: string;
875
+ LensAlias?: string | undefined;
876
+ LensArn?: string | undefined;
877
+ LensVersion?: string | undefined;
878
+ LensName?: string | undefined;
879
+ LensStatus?: LensStatus | undefined;
880
+ PillarReviewSummaries?: ReviewTemplatePillarReviewSummary[] | undefined;
881
+ UpdatedAt?: Date | undefined;
882
+ Notes?: string | undefined;
883
+ QuestionCounts?: Partial<Record<Question, number>> | undefined;
884
+ NextToken?: string | undefined;
885
885
  }
886
886
  export interface GetReviewTemplateLensReviewOutput {
887
- TemplateArn?: string;
888
- LensReview?: ReviewTemplateLensReview;
887
+ TemplateArn?: string | undefined;
888
+ LensReview?: ReviewTemplateLensReview | undefined;
889
889
  }
890
890
  export interface GetWorkloadInput {
891
891
  WorkloadId: string | undefined;
892
892
  }
893
893
  export interface GetWorkloadOutput {
894
- Workload?: Workload;
894
+ Workload?: Workload | undefined;
895
895
  }
896
896
  export interface ImportLensInput {
897
- LensAlias?: string;
897
+ LensAlias?: string | undefined;
898
898
  JSONString: string | undefined;
899
- ClientRequestToken?: string;
900
- Tags?: Record<string, string>;
899
+ ClientRequestToken?: string | undefined;
900
+ Tags?: Record<string, string> | undefined;
901
901
  }
902
902
  export declare const ImportLensStatus: {
903
903
  readonly COMPLETE: "COMPLETE";
@@ -907,17 +907,17 @@ export declare const ImportLensStatus: {
907
907
  export type ImportLensStatus =
908
908
  (typeof ImportLensStatus)[keyof typeof ImportLensStatus];
909
909
  export interface ImportLensOutput {
910
- LensArn?: string;
911
- Status?: ImportLensStatus;
910
+ LensArn?: string | undefined;
911
+ Status?: ImportLensStatus | undefined;
912
912
  }
913
913
  export interface ImprovementSummary {
914
- QuestionId?: string;
915
- PillarId?: string;
916
- QuestionTitle?: string;
917
- Risk?: Risk;
918
- ImprovementPlanUrl?: string;
919
- ImprovementPlans?: ChoiceImprovementPlan[];
920
- JiraConfiguration?: JiraConfiguration;
914
+ QuestionId?: string | undefined;
915
+ PillarId?: string | undefined;
916
+ QuestionTitle?: string | undefined;
917
+ Risk?: Risk | undefined;
918
+ ImprovementPlanUrl?: string | undefined;
919
+ ImprovementPlans?: ChoiceImprovementPlan[] | undefined;
920
+ JiraConfiguration?: JiraConfiguration | undefined;
921
921
  }
922
922
  export declare const IntegratingService: {
923
923
  readonly JIRA: "JIRA";
@@ -925,15 +925,15 @@ export declare const IntegratingService: {
925
925
  export type IntegratingService =
926
926
  (typeof IntegratingService)[keyof typeof IntegratingService];
927
927
  export interface LensReviewSummary {
928
- LensAlias?: string;
929
- LensArn?: string;
930
- LensVersion?: string;
931
- LensName?: string;
932
- LensStatus?: LensStatus;
933
- UpdatedAt?: Date;
934
- RiskCounts?: Partial<Record<Risk, number>>;
935
- Profiles?: WorkloadProfile[];
936
- PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
928
+ LensAlias?: string | undefined;
929
+ LensArn?: string | undefined;
930
+ LensVersion?: string | undefined;
931
+ LensName?: string | undefined;
932
+ LensStatus?: LensStatus | undefined;
933
+ UpdatedAt?: Date | undefined;
934
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
935
+ Profiles?: WorkloadProfile[] | undefined;
936
+ PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
937
937
  }
938
938
  export declare const ShareStatus: {
939
939
  readonly ACCEPTED: "ACCEPTED";
@@ -947,10 +947,10 @@ export declare const ShareStatus: {
947
947
  };
948
948
  export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
949
949
  export interface LensShareSummary {
950
- ShareId?: string;
951
- SharedWith?: string;
952
- Status?: ShareStatus;
953
- StatusMessage?: string;
950
+ ShareId?: string | undefined;
951
+ SharedWith?: string | undefined;
952
+ Status?: ShareStatus | undefined;
953
+ StatusMessage?: string | undefined;
954
954
  }
955
955
  export declare const LensType: {
956
956
  readonly AWS_OFFICIAL: "AWS_OFFICIAL";
@@ -959,26 +959,26 @@ export declare const LensType: {
959
959
  };
960
960
  export type LensType = (typeof LensType)[keyof typeof LensType];
961
961
  export interface LensSummary {
962
- LensArn?: string;
963
- LensAlias?: string;
964
- LensName?: string;
965
- LensType?: LensType;
966
- Description?: string;
967
- CreatedAt?: Date;
968
- UpdatedAt?: Date;
969
- LensVersion?: string;
970
- Owner?: string;
971
- LensStatus?: LensStatus;
962
+ LensArn?: string | undefined;
963
+ LensAlias?: string | undefined;
964
+ LensName?: string | undefined;
965
+ LensType?: LensType | undefined;
966
+ Description?: string | undefined;
967
+ CreatedAt?: Date | undefined;
968
+ UpdatedAt?: Date | undefined;
969
+ LensVersion?: string | undefined;
970
+ Owner?: string | undefined;
971
+ LensStatus?: LensStatus | undefined;
972
972
  }
973
973
  export interface LensUpgradeSummary {
974
- WorkloadId?: string;
975
- WorkloadName?: string;
976
- LensAlias?: string;
977
- LensArn?: string;
978
- CurrentLensVersion?: string;
979
- LatestLensVersion?: string;
980
- ResourceArn?: string;
981
- ResourceName?: string;
974
+ WorkloadId?: string | undefined;
975
+ WorkloadName?: string | undefined;
976
+ LensAlias?: string | undefined;
977
+ LensArn?: string | undefined;
978
+ CurrentLensVersion?: string | undefined;
979
+ LatestLensVersion?: string | undefined;
980
+ ResourceArn?: string | undefined;
981
+ ResourceName?: string | undefined;
982
982
  }
983
983
  export declare const QuestionPriority: {
984
984
  readonly NONE: "NONE";
@@ -989,130 +989,130 @@ export type QuestionPriority =
989
989
  export interface ListAnswersInput {
990
990
  WorkloadId: string | undefined;
991
991
  LensAlias: string | undefined;
992
- PillarId?: string;
993
- MilestoneNumber?: number;
994
- NextToken?: string;
995
- MaxResults?: number;
996
- QuestionPriority?: QuestionPriority;
992
+ PillarId?: string | undefined;
993
+ MilestoneNumber?: number | undefined;
994
+ NextToken?: string | undefined;
995
+ MaxResults?: number | undefined;
996
+ QuestionPriority?: QuestionPriority | undefined;
997
997
  }
998
998
  export interface ListAnswersOutput {
999
- WorkloadId?: string;
1000
- MilestoneNumber?: number;
1001
- LensAlias?: string;
1002
- LensArn?: string;
1003
- AnswerSummaries?: AnswerSummary[];
1004
- NextToken?: string;
999
+ WorkloadId?: string | undefined;
1000
+ MilestoneNumber?: number | undefined;
1001
+ LensAlias?: string | undefined;
1002
+ LensArn?: string | undefined;
1003
+ AnswerSummaries?: AnswerSummary[] | undefined;
1004
+ NextToken?: string | undefined;
1005
1005
  }
1006
1006
  export interface ListCheckDetailsInput {
1007
1007
  WorkloadId: string | undefined;
1008
- NextToken?: string;
1009
- MaxResults?: number;
1008
+ NextToken?: string | undefined;
1009
+ MaxResults?: number | undefined;
1010
1010
  LensArn: string | undefined;
1011
1011
  PillarId: string | undefined;
1012
1012
  QuestionId: string | undefined;
1013
1013
  ChoiceId: string | undefined;
1014
1014
  }
1015
1015
  export interface ListCheckDetailsOutput {
1016
- CheckDetails?: CheckDetail[];
1017
- NextToken?: string;
1016
+ CheckDetails?: CheckDetail[] | undefined;
1017
+ NextToken?: string | undefined;
1018
1018
  }
1019
1019
  export interface ListCheckSummariesInput {
1020
1020
  WorkloadId: string | undefined;
1021
- NextToken?: string;
1022
- MaxResults?: number;
1021
+ NextToken?: string | undefined;
1022
+ MaxResults?: number | undefined;
1023
1023
  LensArn: string | undefined;
1024
1024
  PillarId: string | undefined;
1025
1025
  QuestionId: string | undefined;
1026
1026
  ChoiceId: string | undefined;
1027
1027
  }
1028
1028
  export interface ListCheckSummariesOutput {
1029
- CheckSummaries?: CheckSummary[];
1030
- NextToken?: string;
1029
+ CheckSummaries?: CheckSummary[] | undefined;
1030
+ NextToken?: string | undefined;
1031
1031
  }
1032
1032
  export interface ListLensesInput {
1033
- NextToken?: string;
1034
- MaxResults?: number;
1035
- LensType?: LensType;
1036
- LensStatus?: LensStatusType;
1037
- LensName?: string;
1033
+ NextToken?: string | undefined;
1034
+ MaxResults?: number | undefined;
1035
+ LensType?: LensType | undefined;
1036
+ LensStatus?: LensStatusType | undefined;
1037
+ LensName?: string | undefined;
1038
1038
  }
1039
1039
  export interface ListLensesOutput {
1040
- LensSummaries?: LensSummary[];
1041
- NextToken?: string;
1040
+ LensSummaries?: LensSummary[] | undefined;
1041
+ NextToken?: string | undefined;
1042
1042
  }
1043
1043
  export interface ListLensReviewImprovementsInput {
1044
1044
  WorkloadId: string | undefined;
1045
1045
  LensAlias: string | undefined;
1046
- PillarId?: string;
1047
- MilestoneNumber?: number;
1048
- NextToken?: string;
1049
- MaxResults?: number;
1050
- QuestionPriority?: QuestionPriority;
1046
+ PillarId?: string | undefined;
1047
+ MilestoneNumber?: number | undefined;
1048
+ NextToken?: string | undefined;
1049
+ MaxResults?: number | undefined;
1050
+ QuestionPriority?: QuestionPriority | undefined;
1051
1051
  }
1052
1052
  export interface ListLensReviewImprovementsOutput {
1053
- WorkloadId?: string;
1054
- MilestoneNumber?: number;
1055
- LensAlias?: string;
1056
- LensArn?: string;
1057
- ImprovementSummaries?: ImprovementSummary[];
1058
- NextToken?: string;
1053
+ WorkloadId?: string | undefined;
1054
+ MilestoneNumber?: number | undefined;
1055
+ LensAlias?: string | undefined;
1056
+ LensArn?: string | undefined;
1057
+ ImprovementSummaries?: ImprovementSummary[] | undefined;
1058
+ NextToken?: string | undefined;
1059
1059
  }
1060
1060
  export interface ListLensReviewsInput {
1061
1061
  WorkloadId: string | undefined;
1062
- MilestoneNumber?: number;
1063
- NextToken?: string;
1064
- MaxResults?: number;
1062
+ MilestoneNumber?: number | undefined;
1063
+ NextToken?: string | undefined;
1064
+ MaxResults?: number | undefined;
1065
1065
  }
1066
1066
  export interface ListLensReviewsOutput {
1067
- WorkloadId?: string;
1068
- MilestoneNumber?: number;
1069
- LensReviewSummaries?: LensReviewSummary[];
1070
- NextToken?: string;
1067
+ WorkloadId?: string | undefined;
1068
+ MilestoneNumber?: number | undefined;
1069
+ LensReviewSummaries?: LensReviewSummary[] | undefined;
1070
+ NextToken?: string | undefined;
1071
1071
  }
1072
1072
  export interface ListLensSharesInput {
1073
1073
  LensAlias: string | undefined;
1074
- SharedWithPrefix?: string;
1075
- NextToken?: string;
1076
- MaxResults?: number;
1077
- Status?: ShareStatus;
1074
+ SharedWithPrefix?: string | undefined;
1075
+ NextToken?: string | undefined;
1076
+ MaxResults?: number | undefined;
1077
+ Status?: ShareStatus | undefined;
1078
1078
  }
1079
1079
  export interface ListLensSharesOutput {
1080
- LensShareSummaries?: LensShareSummary[];
1081
- NextToken?: string;
1080
+ LensShareSummaries?: LensShareSummary[] | undefined;
1081
+ NextToken?: string | undefined;
1082
1082
  }
1083
1083
  export interface ListMilestonesInput {
1084
1084
  WorkloadId: string | undefined;
1085
- NextToken?: string;
1086
- MaxResults?: number;
1085
+ NextToken?: string | undefined;
1086
+ MaxResults?: number | undefined;
1087
1087
  }
1088
1088
  export interface WorkloadSummary {
1089
- WorkloadId?: string;
1090
- WorkloadArn?: string;
1091
- WorkloadName?: string;
1092
- Owner?: string;
1093
- UpdatedAt?: Date;
1094
- Lenses?: string[];
1095
- RiskCounts?: Partial<Record<Risk, number>>;
1096
- ImprovementStatus?: WorkloadImprovementStatus;
1097
- Profiles?: WorkloadProfile[];
1098
- PrioritizedRiskCounts?: Partial<Record<Risk, number>>;
1089
+ WorkloadId?: string | undefined;
1090
+ WorkloadArn?: string | undefined;
1091
+ WorkloadName?: string | undefined;
1092
+ Owner?: string | undefined;
1093
+ UpdatedAt?: Date | undefined;
1094
+ Lenses?: string[] | undefined;
1095
+ RiskCounts?: Partial<Record<Risk, number>> | undefined;
1096
+ ImprovementStatus?: WorkloadImprovementStatus | undefined;
1097
+ Profiles?: WorkloadProfile[] | undefined;
1098
+ PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
1099
1099
  }
1100
1100
  export interface MilestoneSummary {
1101
- MilestoneNumber?: number;
1102
- MilestoneName?: string;
1103
- RecordedAt?: Date;
1104
- WorkloadSummary?: WorkloadSummary;
1101
+ MilestoneNumber?: number | undefined;
1102
+ MilestoneName?: string | undefined;
1103
+ RecordedAt?: Date | undefined;
1104
+ WorkloadSummary?: WorkloadSummary | undefined;
1105
1105
  }
1106
1106
  export interface ListMilestonesOutput {
1107
- WorkloadId?: string;
1108
- MilestoneSummaries?: MilestoneSummary[];
1109
- NextToken?: string;
1107
+ WorkloadId?: string | undefined;
1108
+ MilestoneSummaries?: MilestoneSummary[] | undefined;
1109
+ NextToken?: string | undefined;
1110
1110
  }
1111
1111
  export interface ListNotificationsInput {
1112
- WorkloadId?: string;
1113
- NextToken?: string;
1114
- MaxResults?: number;
1115
- ResourceArn?: string;
1112
+ WorkloadId?: string | undefined;
1113
+ NextToken?: string | undefined;
1114
+ MaxResults?: number | undefined;
1115
+ ResourceArn?: string | undefined;
1116
1116
  }
1117
1117
  export declare const NotificationType: {
1118
1118
  readonly LENS_VERSION_DEPRECATED: "LENS_VERSION_DEPRECATED";
@@ -1121,17 +1121,17 @@ export declare const NotificationType: {
1121
1121
  export type NotificationType =
1122
1122
  (typeof NotificationType)[keyof typeof NotificationType];
1123
1123
  export interface NotificationSummary {
1124
- Type?: NotificationType;
1125
- LensUpgradeSummary?: LensUpgradeSummary;
1124
+ Type?: NotificationType | undefined;
1125
+ LensUpgradeSummary?: LensUpgradeSummary | undefined;
1126
1126
  }
1127
1127
  export interface ListNotificationsOutput {
1128
- NotificationSummaries?: NotificationSummary[];
1129
- NextToken?: string;
1128
+ NotificationSummaries?: NotificationSummary[] | undefined;
1129
+ NextToken?: string | undefined;
1130
1130
  }
1131
1131
  export interface ListProfileNotificationsInput {
1132
- WorkloadId?: string;
1133
- NextToken?: string;
1134
- MaxResults?: number;
1132
+ WorkloadId?: string | undefined;
1133
+ NextToken?: string | undefined;
1134
+ MaxResults?: number | undefined;
1135
1135
  }
1136
1136
  export declare const ProfileNotificationType: {
1137
1137
  readonly PROFILE_ANSWERS_UPDATED: "PROFILE_ANSWERS_UPDATED";
@@ -1140,17 +1140,17 @@ export declare const ProfileNotificationType: {
1140
1140
  export type ProfileNotificationType =
1141
1141
  (typeof ProfileNotificationType)[keyof typeof ProfileNotificationType];
1142
1142
  export interface ProfileNotificationSummary {
1143
- CurrentProfileVersion?: string;
1144
- LatestProfileVersion?: string;
1145
- Type?: ProfileNotificationType;
1146
- ProfileArn?: string;
1147
- ProfileName?: string;
1148
- WorkloadId?: string;
1149
- WorkloadName?: string;
1143
+ CurrentProfileVersion?: string | undefined;
1144
+ LatestProfileVersion?: string | undefined;
1145
+ Type?: ProfileNotificationType | undefined;
1146
+ ProfileArn?: string | undefined;
1147
+ ProfileName?: string | undefined;
1148
+ WorkloadId?: string | undefined;
1149
+ WorkloadName?: string | undefined;
1150
1150
  }
1151
1151
  export interface ListProfileNotificationsOutput {
1152
- NotificationSummaries?: ProfileNotificationSummary[];
1153
- NextToken?: string;
1152
+ NotificationSummaries?: ProfileNotificationSummary[] | undefined;
1153
+ NextToken?: string | undefined;
1154
1154
  }
1155
1155
  export declare const ProfileOwnerType: {
1156
1156
  readonly SELF: "SELF";
@@ -1159,82 +1159,82 @@ export declare const ProfileOwnerType: {
1159
1159
  export type ProfileOwnerType =
1160
1160
  (typeof ProfileOwnerType)[keyof typeof ProfileOwnerType];
1161
1161
  export interface ListProfilesInput {
1162
- ProfileNamePrefix?: string;
1163
- ProfileOwnerType?: ProfileOwnerType;
1164
- NextToken?: string;
1165
- MaxResults?: number;
1162
+ ProfileNamePrefix?: string | undefined;
1163
+ ProfileOwnerType?: ProfileOwnerType | undefined;
1164
+ NextToken?: string | undefined;
1165
+ MaxResults?: number | undefined;
1166
1166
  }
1167
1167
  export interface ProfileSummary {
1168
- ProfileArn?: string;
1169
- ProfileVersion?: string;
1170
- ProfileName?: string;
1171
- ProfileDescription?: string;
1172
- Owner?: string;
1173
- CreatedAt?: Date;
1174
- UpdatedAt?: Date;
1168
+ ProfileArn?: string | undefined;
1169
+ ProfileVersion?: string | undefined;
1170
+ ProfileName?: string | undefined;
1171
+ ProfileDescription?: string | undefined;
1172
+ Owner?: string | undefined;
1173
+ CreatedAt?: Date | undefined;
1174
+ UpdatedAt?: Date | undefined;
1175
1175
  }
1176
1176
  export interface ListProfilesOutput {
1177
- ProfileSummaries?: ProfileSummary[];
1178
- NextToken?: string;
1177
+ ProfileSummaries?: ProfileSummary[] | undefined;
1178
+ NextToken?: string | undefined;
1179
1179
  }
1180
1180
  export interface ListProfileSharesInput {
1181
1181
  ProfileArn: string | undefined;
1182
- SharedWithPrefix?: string;
1183
- NextToken?: string;
1184
- MaxResults?: number;
1185
- Status?: ShareStatus;
1182
+ SharedWithPrefix?: string | undefined;
1183
+ NextToken?: string | undefined;
1184
+ MaxResults?: number | undefined;
1185
+ Status?: ShareStatus | undefined;
1186
1186
  }
1187
1187
  export interface ProfileShareSummary {
1188
- ShareId?: string;
1189
- SharedWith?: string;
1190
- Status?: ShareStatus;
1191
- StatusMessage?: string;
1188
+ ShareId?: string | undefined;
1189
+ SharedWith?: string | undefined;
1190
+ Status?: ShareStatus | undefined;
1191
+ StatusMessage?: string | undefined;
1192
1192
  }
1193
1193
  export interface ListProfileSharesOutput {
1194
- ProfileShareSummaries?: ProfileShareSummary[];
1195
- NextToken?: string;
1194
+ ProfileShareSummaries?: ProfileShareSummary[] | undefined;
1195
+ NextToken?: string | undefined;
1196
1196
  }
1197
1197
  export interface ListReviewTemplateAnswersInput {
1198
1198
  TemplateArn: string | undefined;
1199
1199
  LensAlias: string | undefined;
1200
- PillarId?: string;
1201
- NextToken?: string;
1202
- MaxResults?: number;
1200
+ PillarId?: string | undefined;
1201
+ NextToken?: string | undefined;
1202
+ MaxResults?: number | undefined;
1203
1203
  }
1204
1204
  export interface ReviewTemplateAnswerSummary {
1205
- QuestionId?: string;
1206
- PillarId?: string;
1207
- QuestionTitle?: string;
1208
- Choices?: Choice[];
1209
- SelectedChoices?: string[];
1210
- ChoiceAnswerSummaries?: ChoiceAnswerSummary[];
1211
- IsApplicable?: boolean;
1212
- AnswerStatus?: ReviewTemplateAnswerStatus;
1213
- Reason?: AnswerReason;
1214
- QuestionType?: QuestionType;
1205
+ QuestionId?: string | undefined;
1206
+ PillarId?: string | undefined;
1207
+ QuestionTitle?: string | undefined;
1208
+ Choices?: Choice[] | undefined;
1209
+ SelectedChoices?: string[] | undefined;
1210
+ ChoiceAnswerSummaries?: ChoiceAnswerSummary[] | undefined;
1211
+ IsApplicable?: boolean | undefined;
1212
+ AnswerStatus?: ReviewTemplateAnswerStatus | undefined;
1213
+ Reason?: AnswerReason | undefined;
1214
+ QuestionType?: QuestionType | undefined;
1215
1215
  }
1216
1216
  export interface ListReviewTemplateAnswersOutput {
1217
- TemplateArn?: string;
1218
- LensAlias?: string;
1219
- AnswerSummaries?: ReviewTemplateAnswerSummary[];
1220
- NextToken?: string;
1217
+ TemplateArn?: string | undefined;
1218
+ LensAlias?: string | undefined;
1219
+ AnswerSummaries?: ReviewTemplateAnswerSummary[] | undefined;
1220
+ NextToken?: string | undefined;
1221
1221
  }
1222
1222
  export interface ListReviewTemplatesInput {
1223
- NextToken?: string;
1224
- MaxResults?: number;
1223
+ NextToken?: string | undefined;
1224
+ MaxResults?: number | undefined;
1225
1225
  }
1226
1226
  export interface ReviewTemplateSummary {
1227
- Description?: string;
1228
- Lenses?: string[];
1229
- Owner?: string;
1230
- UpdatedAt?: Date;
1231
- TemplateArn?: string;
1232
- TemplateName?: string;
1233
- UpdateStatus?: ReviewTemplateUpdateStatus;
1227
+ Description?: string | undefined;
1228
+ Lenses?: string[] | undefined;
1229
+ Owner?: string | undefined;
1230
+ UpdatedAt?: Date | undefined;
1231
+ TemplateArn?: string | undefined;
1232
+ TemplateName?: string | undefined;
1233
+ UpdateStatus?: ReviewTemplateUpdateStatus | undefined;
1234
1234
  }
1235
1235
  export interface ListReviewTemplatesOutput {
1236
- ReviewTemplates?: ReviewTemplateSummary[];
1237
- NextToken?: string;
1236
+ ReviewTemplates?: ReviewTemplateSummary[] | undefined;
1237
+ NextToken?: string | undefined;
1238
1238
  }
1239
1239
  export declare const ShareResourceType: {
1240
1240
  readonly LENS: "LENS";
@@ -1245,93 +1245,93 @@ export declare const ShareResourceType: {
1245
1245
  export type ShareResourceType =
1246
1246
  (typeof ShareResourceType)[keyof typeof ShareResourceType];
1247
1247
  export interface ListShareInvitationsInput {
1248
- WorkloadNamePrefix?: string;
1249
- LensNamePrefix?: string;
1250
- ShareResourceType?: ShareResourceType;
1251
- NextToken?: string;
1252
- MaxResults?: number;
1253
- ProfileNamePrefix?: string;
1254
- TemplateNamePrefix?: string;
1248
+ WorkloadNamePrefix?: string | undefined;
1249
+ LensNamePrefix?: string | undefined;
1250
+ ShareResourceType?: ShareResourceType | undefined;
1251
+ NextToken?: string | undefined;
1252
+ MaxResults?: number | undefined;
1253
+ ProfileNamePrefix?: string | undefined;
1254
+ TemplateNamePrefix?: string | undefined;
1255
1255
  }
1256
1256
  export interface ShareInvitationSummary {
1257
- ShareInvitationId?: string;
1258
- SharedBy?: string;
1259
- SharedWith?: string;
1260
- PermissionType?: PermissionType;
1261
- ShareResourceType?: ShareResourceType;
1262
- WorkloadName?: string;
1263
- WorkloadId?: string;
1264
- LensName?: string;
1265
- LensArn?: string;
1266
- ProfileName?: string;
1267
- ProfileArn?: string;
1268
- TemplateName?: string;
1269
- TemplateArn?: string;
1257
+ ShareInvitationId?: string | undefined;
1258
+ SharedBy?: string | undefined;
1259
+ SharedWith?: string | undefined;
1260
+ PermissionType?: PermissionType | undefined;
1261
+ ShareResourceType?: ShareResourceType | undefined;
1262
+ WorkloadName?: string | undefined;
1263
+ WorkloadId?: string | undefined;
1264
+ LensName?: string | undefined;
1265
+ LensArn?: string | undefined;
1266
+ ProfileName?: string | undefined;
1267
+ ProfileArn?: string | undefined;
1268
+ TemplateName?: string | undefined;
1269
+ TemplateArn?: string | undefined;
1270
1270
  }
1271
1271
  export interface ListShareInvitationsOutput {
1272
- ShareInvitationSummaries?: ShareInvitationSummary[];
1273
- NextToken?: string;
1272
+ ShareInvitationSummaries?: ShareInvitationSummary[] | undefined;
1273
+ NextToken?: string | undefined;
1274
1274
  }
1275
1275
  export interface ListTagsForResourceInput {
1276
1276
  WorkloadArn: string | undefined;
1277
1277
  }
1278
1278
  export interface ListTagsForResourceOutput {
1279
- Tags?: Record<string, string>;
1279
+ Tags?: Record<string, string> | undefined;
1280
1280
  }
1281
1281
  export interface ListTemplateSharesInput {
1282
1282
  TemplateArn: string | undefined;
1283
- SharedWithPrefix?: string;
1284
- NextToken?: string;
1285
- MaxResults?: number;
1286
- Status?: ShareStatus;
1283
+ SharedWithPrefix?: string | undefined;
1284
+ NextToken?: string | undefined;
1285
+ MaxResults?: number | undefined;
1286
+ Status?: ShareStatus | undefined;
1287
1287
  }
1288
1288
  export interface TemplateShareSummary {
1289
- ShareId?: string;
1290
- SharedWith?: string;
1291
- Status?: ShareStatus;
1292
- StatusMessage?: string;
1289
+ ShareId?: string | undefined;
1290
+ SharedWith?: string | undefined;
1291
+ Status?: ShareStatus | undefined;
1292
+ StatusMessage?: string | undefined;
1293
1293
  }
1294
1294
  export interface ListTemplateSharesOutput {
1295
- TemplateArn?: string;
1296
- TemplateShareSummaries?: TemplateShareSummary[];
1297
- NextToken?: string;
1295
+ TemplateArn?: string | undefined;
1296
+ TemplateShareSummaries?: TemplateShareSummary[] | undefined;
1297
+ NextToken?: string | undefined;
1298
1298
  }
1299
1299
  export interface ListWorkloadsInput {
1300
- WorkloadNamePrefix?: string;
1301
- NextToken?: string;
1302
- MaxResults?: number;
1300
+ WorkloadNamePrefix?: string | undefined;
1301
+ NextToken?: string | undefined;
1302
+ MaxResults?: number | undefined;
1303
1303
  }
1304
1304
  export interface ListWorkloadsOutput {
1305
- WorkloadSummaries?: WorkloadSummary[];
1306
- NextToken?: string;
1305
+ WorkloadSummaries?: WorkloadSummary[] | undefined;
1306
+ NextToken?: string | undefined;
1307
1307
  }
1308
1308
  export interface ListWorkloadSharesInput {
1309
1309
  WorkloadId: string | undefined;
1310
- SharedWithPrefix?: string;
1311
- NextToken?: string;
1312
- MaxResults?: number;
1313
- Status?: ShareStatus;
1310
+ SharedWithPrefix?: string | undefined;
1311
+ NextToken?: string | undefined;
1312
+ MaxResults?: number | undefined;
1313
+ Status?: ShareStatus | undefined;
1314
1314
  }
1315
1315
  export interface WorkloadShareSummary {
1316
- ShareId?: string;
1317
- SharedWith?: string;
1318
- PermissionType?: PermissionType;
1319
- Status?: ShareStatus;
1320
- StatusMessage?: string;
1316
+ ShareId?: string | undefined;
1317
+ SharedWith?: string | undefined;
1318
+ PermissionType?: PermissionType | undefined;
1319
+ Status?: ShareStatus | undefined;
1320
+ StatusMessage?: string | undefined;
1321
1321
  }
1322
1322
  export interface ListWorkloadSharesOutput {
1323
- WorkloadId?: string;
1324
- WorkloadShareSummaries?: WorkloadShareSummary[];
1325
- NextToken?: string;
1323
+ WorkloadId?: string | undefined;
1324
+ WorkloadShareSummaries?: WorkloadShareSummary[] | undefined;
1325
+ NextToken?: string | undefined;
1326
1326
  }
1327
1327
  export interface ShareInvitation {
1328
- ShareInvitationId?: string;
1329
- ShareResourceType?: ShareResourceType;
1330
- WorkloadId?: string;
1331
- LensAlias?: string;
1332
- LensArn?: string;
1333
- ProfileArn?: string;
1334
- TemplateArn?: string;
1328
+ ShareInvitationId?: string | undefined;
1329
+ ShareResourceType?: ShareResourceType | undefined;
1330
+ WorkloadId?: string | undefined;
1331
+ LensAlias?: string | undefined;
1332
+ LensArn?: string | undefined;
1333
+ ProfileArn?: string | undefined;
1334
+ TemplateArn?: string | undefined;
1335
1335
  }
1336
1336
  export declare const ShareInvitationAction: {
1337
1337
  readonly ACCEPT: "ACCEPT";
@@ -1353,112 +1353,112 @@ export interface UpdateAnswerInput {
1353
1353
  WorkloadId: string | undefined;
1354
1354
  LensAlias: string | undefined;
1355
1355
  QuestionId: string | undefined;
1356
- SelectedChoices?: string[];
1357
- ChoiceUpdates?: Record<string, ChoiceUpdate>;
1358
- Notes?: string;
1359
- IsApplicable?: boolean;
1360
- Reason?: AnswerReason;
1356
+ SelectedChoices?: string[] | undefined;
1357
+ ChoiceUpdates?: Record<string, ChoiceUpdate> | undefined;
1358
+ Notes?: string | undefined;
1359
+ IsApplicable?: boolean | undefined;
1360
+ Reason?: AnswerReason | undefined;
1361
1361
  }
1362
1362
  export interface UpdateAnswerOutput {
1363
- WorkloadId?: string;
1364
- LensAlias?: string;
1365
- LensArn?: string;
1366
- Answer?: Answer;
1363
+ WorkloadId?: string | undefined;
1364
+ LensAlias?: string | undefined;
1365
+ LensArn?: string | undefined;
1366
+ Answer?: Answer | undefined;
1367
1367
  }
1368
1368
  export interface UpdateGlobalSettingsInput {
1369
- OrganizationSharingStatus?: OrganizationSharingStatus;
1370
- DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus;
1371
- JiraConfiguration?: AccountJiraConfigurationInput;
1369
+ OrganizationSharingStatus?: OrganizationSharingStatus | undefined;
1370
+ DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus | undefined;
1371
+ JiraConfiguration?: AccountJiraConfigurationInput | undefined;
1372
1372
  }
1373
1373
  export interface UpdateIntegrationInput {
1374
1374
  WorkloadId: string | undefined;
1375
- ClientRequestToken?: string;
1375
+ ClientRequestToken?: string | undefined;
1376
1376
  IntegratingService: IntegratingService | undefined;
1377
1377
  }
1378
1378
  export interface UpdateLensReviewInput {
1379
1379
  WorkloadId: string | undefined;
1380
1380
  LensAlias: string | undefined;
1381
- LensNotes?: string;
1382
- PillarNotes?: Record<string, string>;
1383
- JiraConfiguration?: JiraSelectedQuestionConfiguration;
1381
+ LensNotes?: string | undefined;
1382
+ PillarNotes?: Record<string, string> | undefined;
1383
+ JiraConfiguration?: JiraSelectedQuestionConfiguration | undefined;
1384
1384
  }
1385
1385
  export interface UpdateLensReviewOutput {
1386
- WorkloadId?: string;
1387
- LensReview?: LensReview;
1386
+ WorkloadId?: string | undefined;
1387
+ LensReview?: LensReview | undefined;
1388
1388
  }
1389
1389
  export interface UpdateProfileInput {
1390
1390
  ProfileArn: string | undefined;
1391
- ProfileDescription?: string;
1392
- ProfileQuestions?: ProfileQuestionUpdate[];
1391
+ ProfileDescription?: string | undefined;
1392
+ ProfileQuestions?: ProfileQuestionUpdate[] | undefined;
1393
1393
  }
1394
1394
  export interface UpdateProfileOutput {
1395
- Profile?: Profile;
1395
+ Profile?: Profile | undefined;
1396
1396
  }
1397
1397
  export interface UpdateReviewTemplateInput {
1398
1398
  TemplateArn: string | undefined;
1399
- TemplateName?: string;
1400
- Description?: string;
1401
- Notes?: string;
1402
- LensesToAssociate?: string[];
1403
- LensesToDisassociate?: string[];
1399
+ TemplateName?: string | undefined;
1400
+ Description?: string | undefined;
1401
+ Notes?: string | undefined;
1402
+ LensesToAssociate?: string[] | undefined;
1403
+ LensesToDisassociate?: string[] | undefined;
1404
1404
  }
1405
1405
  export interface UpdateReviewTemplateOutput {
1406
- ReviewTemplate?: ReviewTemplate;
1406
+ ReviewTemplate?: ReviewTemplate | undefined;
1407
1407
  }
1408
1408
  export interface UpdateReviewTemplateAnswerInput {
1409
1409
  TemplateArn: string | undefined;
1410
1410
  LensAlias: string | undefined;
1411
1411
  QuestionId: string | undefined;
1412
- SelectedChoices?: string[];
1413
- ChoiceUpdates?: Record<string, ChoiceUpdate>;
1414
- Notes?: string;
1415
- IsApplicable?: boolean;
1416
- Reason?: AnswerReason;
1412
+ SelectedChoices?: string[] | undefined;
1413
+ ChoiceUpdates?: Record<string, ChoiceUpdate> | undefined;
1414
+ Notes?: string | undefined;
1415
+ IsApplicable?: boolean | undefined;
1416
+ Reason?: AnswerReason | undefined;
1417
1417
  }
1418
1418
  export interface UpdateReviewTemplateAnswerOutput {
1419
- TemplateArn?: string;
1420
- LensAlias?: string;
1421
- Answer?: ReviewTemplateAnswer;
1419
+ TemplateArn?: string | undefined;
1420
+ LensAlias?: string | undefined;
1421
+ Answer?: ReviewTemplateAnswer | undefined;
1422
1422
  }
1423
1423
  export interface UpdateReviewTemplateLensReviewInput {
1424
1424
  TemplateArn: string | undefined;
1425
1425
  LensAlias: string | undefined;
1426
- LensNotes?: string;
1427
- PillarNotes?: Record<string, string>;
1426
+ LensNotes?: string | undefined;
1427
+ PillarNotes?: Record<string, string> | undefined;
1428
1428
  }
1429
1429
  export interface UpdateReviewTemplateLensReviewOutput {
1430
- TemplateArn?: string;
1431
- LensReview?: ReviewTemplateLensReview;
1430
+ TemplateArn?: string | undefined;
1431
+ LensReview?: ReviewTemplateLensReview | undefined;
1432
1432
  }
1433
1433
  export interface UpdateShareInvitationInput {
1434
1434
  ShareInvitationId: string | undefined;
1435
1435
  ShareInvitationAction: ShareInvitationAction | undefined;
1436
1436
  }
1437
1437
  export interface UpdateShareInvitationOutput {
1438
- ShareInvitation?: ShareInvitation;
1438
+ ShareInvitation?: ShareInvitation | undefined;
1439
1439
  }
1440
1440
  export interface UpdateWorkloadInput {
1441
1441
  WorkloadId: string | undefined;
1442
- WorkloadName?: string;
1443
- Description?: string;
1444
- Environment?: WorkloadEnvironment;
1445
- AccountIds?: string[];
1446
- AwsRegions?: string[];
1447
- NonAwsRegions?: string[];
1448
- PillarPriorities?: string[];
1449
- ArchitecturalDesign?: string;
1450
- ReviewOwner?: string;
1451
- IsReviewOwnerUpdateAcknowledged?: boolean;
1452
- IndustryType?: string;
1453
- Industry?: string;
1454
- Notes?: string;
1455
- ImprovementStatus?: WorkloadImprovementStatus;
1456
- DiscoveryConfig?: WorkloadDiscoveryConfig;
1457
- Applications?: string[];
1458
- JiraConfiguration?: WorkloadJiraConfigurationInput;
1442
+ WorkloadName?: string | undefined;
1443
+ Description?: string | undefined;
1444
+ Environment?: WorkloadEnvironment | undefined;
1445
+ AccountIds?: string[] | undefined;
1446
+ AwsRegions?: string[] | undefined;
1447
+ NonAwsRegions?: string[] | undefined;
1448
+ PillarPriorities?: string[] | undefined;
1449
+ ArchitecturalDesign?: string | undefined;
1450
+ ReviewOwner?: string | undefined;
1451
+ IsReviewOwnerUpdateAcknowledged?: boolean | undefined;
1452
+ IndustryType?: string | undefined;
1453
+ Industry?: string | undefined;
1454
+ Notes?: string | undefined;
1455
+ ImprovementStatus?: WorkloadImprovementStatus | undefined;
1456
+ DiscoveryConfig?: WorkloadDiscoveryConfig | undefined;
1457
+ Applications?: string[] | undefined;
1458
+ JiraConfiguration?: WorkloadJiraConfigurationInput | undefined;
1459
1459
  }
1460
1460
  export interface UpdateWorkloadOutput {
1461
- Workload?: Workload;
1461
+ Workload?: Workload | undefined;
1462
1462
  }
1463
1463
  export interface UpdateWorkloadShareInput {
1464
1464
  ShareId: string | undefined;
@@ -1466,32 +1466,32 @@ export interface UpdateWorkloadShareInput {
1466
1466
  PermissionType: PermissionType | undefined;
1467
1467
  }
1468
1468
  export interface WorkloadShare {
1469
- ShareId?: string;
1470
- SharedBy?: string;
1471
- SharedWith?: string;
1472
- PermissionType?: PermissionType;
1473
- Status?: ShareStatus;
1474
- WorkloadName?: string;
1475
- WorkloadId?: string;
1469
+ ShareId?: string | undefined;
1470
+ SharedBy?: string | undefined;
1471
+ SharedWith?: string | undefined;
1472
+ PermissionType?: PermissionType | undefined;
1473
+ Status?: ShareStatus | undefined;
1474
+ WorkloadName?: string | undefined;
1475
+ WorkloadId?: string | undefined;
1476
1476
  }
1477
1477
  export interface UpdateWorkloadShareOutput {
1478
- WorkloadId?: string;
1479
- WorkloadShare?: WorkloadShare;
1478
+ WorkloadId?: string | undefined;
1479
+ WorkloadShare?: WorkloadShare | undefined;
1480
1480
  }
1481
1481
  export interface UpgradeLensReviewInput {
1482
1482
  WorkloadId: string | undefined;
1483
1483
  LensAlias: string | undefined;
1484
1484
  MilestoneName: string | undefined;
1485
- ClientRequestToken?: string;
1485
+ ClientRequestToken?: string | undefined;
1486
1486
  }
1487
1487
  export interface UpgradeProfileVersionInput {
1488
1488
  WorkloadId: string | undefined;
1489
1489
  ProfileArn: string | undefined;
1490
- MilestoneName?: string;
1491
- ClientRequestToken?: string;
1490
+ MilestoneName?: string | undefined;
1491
+ ClientRequestToken?: string | undefined;
1492
1492
  }
1493
1493
  export interface UpgradeReviewTemplateLensReviewInput {
1494
1494
  TemplateArn: string | undefined;
1495
1495
  LensAlias: string | undefined;
1496
- ClientRequestToken?: string;
1496
+ ClientRequestToken?: string | undefined;
1497
1497
  }