@aws-sdk/client-inspector2 3.689.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.
@@ -12,27 +12,27 @@ export interface ListCisScanResultsAggregatedByTargetResourceRequest {
12
12
  * <p>The filter criteria.</p>
13
13
  * @public
14
14
  */
15
- filterCriteria?: CisScanResultsAggregatedByTargetResourceFilterCriteria;
15
+ filterCriteria?: CisScanResultsAggregatedByTargetResourceFilterCriteria | undefined;
16
16
  /**
17
17
  * <p>The sort by order.</p>
18
18
  * @public
19
19
  */
20
- sortBy?: CisScanResultsAggregatedByTargetResourceSortBy;
20
+ sortBy?: CisScanResultsAggregatedByTargetResourceSortBy | undefined;
21
21
  /**
22
22
  * <p>The sort order.</p>
23
23
  * @public
24
24
  */
25
- sortOrder?: CisSortOrder;
25
+ sortOrder?: CisSortOrder | undefined;
26
26
  /**
27
27
  * <p>The pagination token from a previous request that's used to retrieve the next page of results.</p>
28
28
  * @public
29
29
  */
30
- nextToken?: string;
30
+ nextToken?: string | undefined;
31
31
  /**
32
32
  * <p>The maximum number of scan results aggregated by a target resource to be returned in a single page of results.</p>
33
33
  * @public
34
34
  */
35
- maxResults?: number;
35
+ maxResults?: number | undefined;
36
36
  }
37
37
  /**
38
38
  * @public
@@ -42,12 +42,12 @@ export interface ListCisScanResultsAggregatedByTargetResourceResponse {
42
42
  * <p>The resource aggregations.</p>
43
43
  * @public
44
44
  */
45
- targetResourceAggregations?: CisTargetResourceAggregation[];
45
+ targetResourceAggregations?: CisTargetResourceAggregation[] | undefined;
46
46
  /**
47
47
  * <p>The pagination token from a previous request that's used to retrieve the next page of results.</p>
48
48
  * @public
49
49
  */
50
- nextToken?: string;
50
+ nextToken?: string | undefined;
51
51
  }
52
52
  /**
53
53
  * @public
@@ -70,52 +70,52 @@ export interface ListCisScansFilterCriteria {
70
70
  * <p>The list of scan name filters.</p>
71
71
  * @public
72
72
  */
73
- scanNameFilters?: CisStringFilter[];
73
+ scanNameFilters?: CisStringFilter[] | undefined;
74
74
  /**
75
75
  * <p>The list of target resource tag filters.</p>
76
76
  * @public
77
77
  */
78
- targetResourceTagFilters?: TagFilter[];
78
+ targetResourceTagFilters?: TagFilter[] | undefined;
79
79
  /**
80
80
  * <p>The list of target resource ID filters.</p>
81
81
  * @public
82
82
  */
83
- targetResourceIdFilters?: CisStringFilter[];
83
+ targetResourceIdFilters?: CisStringFilter[] | undefined;
84
84
  /**
85
85
  * <p>The list of scan status filters.</p>
86
86
  * @public
87
87
  */
88
- scanStatusFilters?: CisScanStatusFilter[];
88
+ scanStatusFilters?: CisScanStatusFilter[] | undefined;
89
89
  /**
90
90
  * <p>The list of scan at filters.</p>
91
91
  * @public
92
92
  */
93
- scanAtFilters?: CisDateFilter[];
93
+ scanAtFilters?: CisDateFilter[] | undefined;
94
94
  /**
95
95
  * <p>The list of scan configuration ARN filters.</p>
96
96
  * @public
97
97
  */
98
- scanConfigurationArnFilters?: CisStringFilter[];
98
+ scanConfigurationArnFilters?: CisStringFilter[] | undefined;
99
99
  /**
100
100
  * <p>The list of scan ARN filters.</p>
101
101
  * @public
102
102
  */
103
- scanArnFilters?: CisStringFilter[];
103
+ scanArnFilters?: CisStringFilter[] | undefined;
104
104
  /**
105
105
  * <p>The list of scheduled by filters.</p>
106
106
  * @public
107
107
  */
108
- scheduledByFilters?: CisStringFilter[];
108
+ scheduledByFilters?: CisStringFilter[] | undefined;
109
109
  /**
110
110
  * <p>The list of failed checks filters.</p>
111
111
  * @public
112
112
  */
113
- failedChecksFilters?: CisNumberFilter[];
113
+ failedChecksFilters?: CisNumberFilter[] | undefined;
114
114
  /**
115
115
  * <p>The list of target account ID filters.</p>
116
116
  * @public
117
117
  */
118
- targetAccountIdFilters?: CisStringFilter[];
118
+ targetAccountIdFilters?: CisStringFilter[] | undefined;
119
119
  }
120
120
  /**
121
121
  * @public
@@ -139,32 +139,32 @@ export interface ListCisScansRequest {
139
139
  * <p>The CIS scan filter criteria.</p>
140
140
  * @public
141
141
  */
142
- filterCriteria?: ListCisScansFilterCriteria;
142
+ filterCriteria?: ListCisScansFilterCriteria | undefined;
143
143
  /**
144
144
  * <p>The detail applied to the CIS scan.</p>
145
145
  * @public
146
146
  */
147
- detailLevel?: ListCisScansDetailLevel;
147
+ detailLevel?: ListCisScansDetailLevel | undefined;
148
148
  /**
149
149
  * <p>The CIS scans sort by order.</p>
150
150
  * @public
151
151
  */
152
- sortBy?: ListCisScansSortBy;
152
+ sortBy?: ListCisScansSortBy | undefined;
153
153
  /**
154
154
  * <p>The CIS scans sort order.</p>
155
155
  * @public
156
156
  */
157
- sortOrder?: CisSortOrder;
157
+ sortOrder?: CisSortOrder | undefined;
158
158
  /**
159
159
  * <p>The pagination token from a previous request that's used to retrieve the next page of results.</p>
160
160
  * @public
161
161
  */
162
- nextToken?: string;
162
+ nextToken?: string | undefined;
163
163
  /**
164
164
  * <p>The maximum number of results to be returned.</p>
165
165
  * @public
166
166
  */
167
- maxResults?: number;
167
+ maxResults?: number | undefined;
168
168
  }
169
169
  /**
170
170
  * @public
@@ -174,12 +174,12 @@ export interface ListCisScansResponse {
174
174
  * <p>The CIS scans.</p>
175
175
  * @public
176
176
  */
177
- scans?: CisScan[];
177
+ scans?: CisScan[] | undefined;
178
178
  /**
179
179
  * <p>The pagination token from a previous request that's used to retrieve the next page of results.</p>
180
180
  * @public
181
181
  */
182
- nextToken?: string;
182
+ nextToken?: string | undefined;
183
183
  }
184
184
  /**
185
185
  * @public
@@ -189,18 +189,18 @@ export interface ListCoverageRequest {
189
189
  * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
190
190
  * @public
191
191
  */
192
- maxResults?: number;
192
+ maxResults?: number | undefined;
193
193
  /**
194
194
  * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
195
195
  * @public
196
196
  */
197
- nextToken?: string;
197
+ nextToken?: string | undefined;
198
198
  /**
199
199
  * <p>An object that contains details on the filters to apply to the coverage data for your
200
200
  * environment.</p>
201
201
  * @public
202
202
  */
203
- filterCriteria?: CoverageFilterCriteria;
203
+ filterCriteria?: CoverageFilterCriteria | undefined;
204
204
  }
205
205
  /**
206
206
  * @public
@@ -213,12 +213,12 @@ export interface ListCoverageResponse {
213
213
  * results after the first page.</p>
214
214
  * @public
215
215
  */
216
- nextToken?: string;
216
+ nextToken?: string | undefined;
217
217
  /**
218
218
  * <p>An object that contains details on the covered resources in your environment.</p>
219
219
  * @public
220
220
  */
221
- coveredResources?: CoveredResource[];
221
+ coveredResources?: CoveredResource[] | undefined;
222
222
  }
223
223
  /**
224
224
  * @public
@@ -229,12 +229,12 @@ export interface ListCoverageStatisticsRequest {
229
229
  * environment.</p>
230
230
  * @public
231
231
  */
232
- filterCriteria?: CoverageFilterCriteria;
232
+ filterCriteria?: CoverageFilterCriteria | undefined;
233
233
  /**
234
234
  * <p>The value to group the results by.</p>
235
235
  * @public
236
236
  */
237
- groupBy?: GroupKey;
237
+ groupBy?: GroupKey | undefined;
238
238
  /**
239
239
  * <p>A token to use for paginating results that are returned in the response. Set the value
240
240
  * of this parameter to null for the first request to a list action. For subsequent calls, use
@@ -242,7 +242,7 @@ export interface ListCoverageStatisticsRequest {
242
242
  * results after the first page.</p>
243
243
  * @public
244
244
  */
245
- nextToken?: string;
245
+ nextToken?: string | undefined;
246
246
  }
247
247
  /**
248
248
  * @public
@@ -252,7 +252,7 @@ export interface ListCoverageStatisticsResponse {
252
252
  * <p>An array with the number for each group.</p>
253
253
  * @public
254
254
  */
255
- countsByGroup?: Counts[];
255
+ countsByGroup?: Counts[] | undefined;
256
256
  /**
257
257
  * <p>The total number for all groups.</p>
258
258
  * @public
@@ -265,7 +265,7 @@ export interface ListCoverageStatisticsResponse {
265
265
  * results after the first page.</p>
266
266
  * @public
267
267
  */
268
- nextToken?: string;
268
+ nextToken?: string | undefined;
269
269
  }
270
270
  /**
271
271
  * @public
@@ -275,12 +275,12 @@ export interface ListDelegatedAdminAccountsRequest {
275
275
  * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
276
276
  * @public
277
277
  */
278
- maxResults?: number;
278
+ maxResults?: number | undefined;
279
279
  /**
280
280
  * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
281
281
  * @public
282
282
  */
283
- nextToken?: string;
283
+ nextToken?: string | undefined;
284
284
  }
285
285
  /**
286
286
  * @public
@@ -290,7 +290,7 @@ export interface ListDelegatedAdminAccountsResponse {
290
290
  * <p>Details of the Amazon Inspector delegated administrator of your organization.</p>
291
291
  * @public
292
292
  */
293
- delegatedAdminAccounts?: DelegatedAdminAccount[];
293
+ delegatedAdminAccounts?: DelegatedAdminAccount[] | undefined;
294
294
  /**
295
295
  * <p>A token to use for paginating results that are returned in the response. Set the value
296
296
  * of this parameter to null for the first request to a list action. For subsequent calls, use
@@ -298,7 +298,7 @@ export interface ListDelegatedAdminAccountsResponse {
298
298
  * results after the first page.</p>
299
299
  * @public
300
300
  */
301
- nextToken?: string;
301
+ nextToken?: string | undefined;
302
302
  }
303
303
  /**
304
304
  * @public
@@ -308,22 +308,22 @@ export interface ListFiltersRequest {
308
308
  * <p>The Amazon resource number (ARN) of the filter.</p>
309
309
  * @public
310
310
  */
311
- arns?: string[];
311
+ arns?: string[] | undefined;
312
312
  /**
313
313
  * <p>The action the filter applies to matched findings.</p>
314
314
  * @public
315
315
  */
316
- action?: FilterAction;
316
+ action?: FilterAction | undefined;
317
317
  /**
318
318
  * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
319
319
  * @public
320
320
  */
321
- nextToken?: string;
321
+ nextToken?: string | undefined;
322
322
  /**
323
323
  * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
324
324
  * @public
325
325
  */
326
- maxResults?: number;
326
+ maxResults?: number | undefined;
327
327
  }
328
328
  /**
329
329
  * @public
@@ -341,7 +341,7 @@ export interface ListFiltersResponse {
341
341
  * results after the first page.</p>
342
342
  * @public
343
343
  */
344
- nextToken?: string;
344
+ nextToken?: string | undefined;
345
345
  }
346
346
  /**
347
347
  * @public
@@ -356,22 +356,22 @@ export interface ListFindingAggregationsRequest {
356
356
  * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
357
357
  * @public
358
358
  */
359
- nextToken?: string;
359
+ nextToken?: string | undefined;
360
360
  /**
361
361
  * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
362
362
  * @public
363
363
  */
364
- maxResults?: number;
364
+ maxResults?: number | undefined;
365
365
  /**
366
366
  * <p>The Amazon Web Services account IDs to retrieve finding aggregation data for.</p>
367
367
  * @public
368
368
  */
369
- accountIds?: StringFilter[];
369
+ accountIds?: StringFilter[] | undefined;
370
370
  /**
371
371
  * <p>Details of the aggregation request that is used to filter your aggregation results.</p>
372
372
  * @public
373
373
  */
374
- aggregationRequest?: AggregationRequest;
374
+ aggregationRequest?: AggregationRequest | undefined;
375
375
  }
376
376
  /**
377
377
  * @public
@@ -386,7 +386,7 @@ export interface ListFindingAggregationsResponse {
386
386
  * <p>Objects that contain the results of an aggregation operation.</p>
387
387
  * @public
388
388
  */
389
- responses?: AggregationResponse[];
389
+ responses?: AggregationResponse[] | undefined;
390
390
  /**
391
391
  * <p>A token to use for paginating results that are returned in the response. Set the value
392
392
  * of this parameter to null for the first request to a list action. For subsequent calls, use
@@ -394,7 +394,7 @@ export interface ListFindingAggregationsResponse {
394
394
  * results after the first page.</p>
395
395
  * @public
396
396
  */
397
- nextToken?: string;
397
+ nextToken?: string | undefined;
398
398
  }
399
399
  /**
400
400
  * @public
@@ -447,22 +447,22 @@ export interface ListFindingsRequest {
447
447
  * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
448
448
  * @public
449
449
  */
450
- maxResults?: number;
450
+ maxResults?: number | undefined;
451
451
  /**
452
452
  * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
453
453
  * @public
454
454
  */
455
- nextToken?: string;
455
+ nextToken?: string | undefined;
456
456
  /**
457
457
  * <p>Details on the filters to apply to your finding results.</p>
458
458
  * @public
459
459
  */
460
- filterCriteria?: FilterCriteria;
460
+ filterCriteria?: FilterCriteria | undefined;
461
461
  /**
462
462
  * <p>Details on the sort criteria to apply to your finding results.</p>
463
463
  * @public
464
464
  */
465
- sortCriteria?: SortCriteria;
465
+ sortCriteria?: SortCriteria | undefined;
466
466
  }
467
467
  /**
468
468
  * @public
@@ -475,12 +475,12 @@ export interface ListFindingsResponse {
475
475
  * results after the first page.</p>
476
476
  * @public
477
477
  */
478
- nextToken?: string;
478
+ nextToken?: string | undefined;
479
479
  /**
480
480
  * <p>Contains details on the findings in your environment.</p>
481
481
  * @public
482
482
  */
483
- findings?: Finding[];
483
+ findings?: Finding[] | undefined;
484
484
  }
485
485
  /**
486
486
  * @public
@@ -491,17 +491,17 @@ export interface ListMembersRequest {
491
491
  * list all members within the organization if <code>False</code>.</p>
492
492
  * @public
493
493
  */
494
- onlyAssociated?: boolean;
494
+ onlyAssociated?: boolean | undefined;
495
495
  /**
496
496
  * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
497
497
  * @public
498
498
  */
499
- maxResults?: number;
499
+ maxResults?: number | undefined;
500
500
  /**
501
501
  * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
502
502
  * @public
503
503
  */
504
- nextToken?: string;
504
+ nextToken?: string | undefined;
505
505
  }
506
506
  /**
507
507
  * @public
@@ -511,13 +511,13 @@ export interface ListMembersResponse {
511
511
  * <p>An object that contains details for each member account.</p>
512
512
  * @public
513
513
  */
514
- members?: Member[];
514
+ members?: Member[] | undefined;
515
515
  /**
516
516
  * <p>The pagination parameter to be used on the next list operation to retrieve more
517
517
  * items.</p>
518
518
  * @public
519
519
  */
520
- nextToken?: string;
520
+ nextToken?: string | undefined;
521
521
  }
522
522
  /**
523
523
  * @public
@@ -537,7 +537,7 @@ export interface ListTagsForResourceResponse {
537
537
  * <p>The tags associated with the resource.</p>
538
538
  * @public
539
539
  */
540
- tags?: Record<string, string>;
540
+ tags?: Record<string, string> | undefined;
541
541
  }
542
542
  /**
543
543
  * @public
@@ -547,17 +547,17 @@ export interface ListUsageTotalsRequest {
547
547
  * <p>The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.</p>
548
548
  * @public
549
549
  */
550
- maxResults?: number;
550
+ maxResults?: number | undefined;
551
551
  /**
552
552
  * <p>A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.</p>
553
553
  * @public
554
554
  */
555
- nextToken?: string;
555
+ nextToken?: string | undefined;
556
556
  /**
557
557
  * <p>The Amazon Web Services account IDs to retrieve usage totals for.</p>
558
558
  * @public
559
559
  */
560
- accountIds?: string[];
560
+ accountIds?: string[] | undefined;
561
561
  }
562
562
  /**
563
563
  * @public
@@ -583,22 +583,22 @@ export interface Usage {
583
583
  * <p>The type scan.</p>
584
584
  * @public
585
585
  */
586
- type?: UsageType;
586
+ type?: UsageType | undefined;
587
587
  /**
588
588
  * <p>The total of usage.</p>
589
589
  * @public
590
590
  */
591
- total?: number;
591
+ total?: number | undefined;
592
592
  /**
593
593
  * <p>The estimated monthly cost of Amazon Inspector.</p>
594
594
  * @public
595
595
  */
596
- estimatedMonthlyCost?: number;
596
+ estimatedMonthlyCost?: number | undefined;
597
597
  /**
598
598
  * <p>The currency type used when calculating usage data.</p>
599
599
  * @public
600
600
  */
601
- currency?: Currency;
601
+ currency?: Currency | undefined;
602
602
  }
603
603
  /**
604
604
  * <p>The total of usage for an account ID.</p>
@@ -609,12 +609,12 @@ export interface UsageTotal {
609
609
  * <p>The account ID of the account that usage data was retrieved for.</p>
610
610
  * @public
611
611
  */
612
- accountId?: string;
612
+ accountId?: string | undefined;
613
613
  /**
614
614
  * <p>An object representing the total usage for an account.</p>
615
615
  * @public
616
616
  */
617
- usage?: Usage[];
617
+ usage?: Usage[] | undefined;
618
618
  }
619
619
  /**
620
620
  * @public
@@ -624,12 +624,12 @@ export interface ListUsageTotalsResponse {
624
624
  * <p>The pagination parameter to be used on the next list operation to retrieve more items.</p>
625
625
  * @public
626
626
  */
627
- nextToken?: string;
627
+ nextToken?: string | undefined;
628
628
  /**
629
629
  * <p>An object with details on the total usage for the requested account.</p>
630
630
  * @public
631
631
  */
632
- totals?: UsageTotal[];
632
+ totals?: UsageTotal[] | undefined;
633
633
  }
634
634
  /**
635
635
  * @public
@@ -679,7 +679,7 @@ export interface SearchVulnerabilitiesRequest {
679
679
  * results after the first page.</p>
680
680
  * @public
681
681
  */
682
- nextToken?: string;
682
+ nextToken?: string | undefined;
683
683
  }
684
684
  /**
685
685
  * @public
@@ -706,82 +706,82 @@ export interface Vulnerability {
706
706
  * <p>The Common Weakness Enumeration (CWE) associated with the vulnerability.</p>
707
707
  * @public
708
708
  */
709
- cwes?: string[];
709
+ cwes?: string[] | undefined;
710
710
  /**
711
711
  * <p>An object that contains the Cybersecurity and Infrastructure Security Agency (CISA) details for the vulnerability.</p>
712
712
  * @public
713
713
  */
714
- cisaData?: CisaData;
714
+ cisaData?: CisaData | undefined;
715
715
  /**
716
716
  * <p>The source of the vulnerability information. Possible results are <code>RHEL</code>, <code>AMAZON_CVE</code>, <code>DEBIAN</code> or <code>NVD</code>.</p>
717
717
  * @public
718
718
  */
719
- source?: VulnerabilitySource;
719
+ source?: VulnerabilitySource | undefined;
720
720
  /**
721
721
  * <p>A description of the vulnerability.</p>
722
722
  * @public
723
723
  */
724
- description?: string;
724
+ description?: string | undefined;
725
725
  /**
726
726
  * <p>An object that contains information about the Amazon Web Services Threat Intel Group (ATIG) details for the vulnerability.</p>
727
727
  * @public
728
728
  */
729
- atigData?: AtigData;
729
+ atigData?: AtigData | undefined;
730
730
  /**
731
731
  * <p>The severity assigned by the vendor.</p>
732
732
  * @public
733
733
  */
734
- vendorSeverity?: string;
734
+ vendorSeverity?: string | undefined;
735
735
  /**
736
736
  * <p>An object that contains the Common Vulnerability Scoring System (CVSS) Version 3 details for the vulnerability.</p>
737
737
  * @public
738
738
  */
739
- cvss3?: Cvss3;
739
+ cvss3?: Cvss3 | undefined;
740
740
  /**
741
741
  * <p>A list of related vulnerabilities.</p>
742
742
  * @public
743
743
  */
744
- relatedVulnerabilities?: string[];
744
+ relatedVulnerabilities?: string[] | undefined;
745
745
  /**
746
746
  * <p>An object that contains the Common Vulnerability Scoring System (CVSS) Version 2 details for the vulnerability.</p>
747
747
  * @public
748
748
  */
749
- cvss2?: Cvss2;
749
+ cvss2?: Cvss2 | undefined;
750
750
  /**
751
751
  * <p>The date and time when the vendor created this vulnerability.</p>
752
752
  * @public
753
753
  */
754
- vendorCreatedAt?: Date;
754
+ vendorCreatedAt?: Date | undefined;
755
755
  /**
756
756
  * <p>The date and time when the vendor last updated this vulnerability.</p>
757
757
  * @public
758
758
  */
759
- vendorUpdatedAt?: Date;
759
+ vendorUpdatedAt?: Date | undefined;
760
760
  /**
761
761
  * <p>A link to the official source material for this vulnerability.</p>
762
762
  * @public
763
763
  */
764
- sourceUrl?: string;
764
+ sourceUrl?: string | undefined;
765
765
  /**
766
766
  * <p>Links to various resources with more information on this vulnerability. </p>
767
767
  * @public
768
768
  */
769
- referenceUrls?: string[];
769
+ referenceUrls?: string[] | undefined;
770
770
  /**
771
771
  * <p>An object that contains details on when the exploit was observed.</p>
772
772
  * @public
773
773
  */
774
- exploitObserved?: ExploitObserved;
774
+ exploitObserved?: ExploitObserved | undefined;
775
775
  /**
776
776
  * <p>Platforms that the vulnerability can be detected on.</p>
777
777
  * @public
778
778
  */
779
- detectionPlatforms?: string[];
779
+ detectionPlatforms?: string[] | undefined;
780
780
  /**
781
781
  * <p>An object that contains the Exploit Prediction Scoring System (EPSS) score for a vulnerability.</p>
782
782
  * @public
783
783
  */
784
- epss?: Epss;
784
+ epss?: Epss | undefined;
785
785
  }
786
786
  /**
787
787
  * @public
@@ -796,7 +796,7 @@ export interface SearchVulnerabilitiesResponse {
796
796
  * <p>The pagination parameter to be used on the next list operation to retrieve more items.</p>
797
797
  * @public
798
798
  */
799
- nextToken?: string;
799
+ nextToken?: string | undefined;
800
800
  }
801
801
  /**
802
802
  * @public
@@ -883,42 +883,42 @@ export interface StopCisMessageProgress {
883
883
  * <p>The progress' total checks.</p>
884
884
  * @public
885
885
  */
886
- totalChecks?: number;
886
+ totalChecks?: number | undefined;
887
887
  /**
888
888
  * <p>The progress' successful checks.</p>
889
889
  * @public
890
890
  */
891
- successfulChecks?: number;
891
+ successfulChecks?: number | undefined;
892
892
  /**
893
893
  * <p>The progress' failed checks.</p>
894
894
  * @public
895
895
  */
896
- failedChecks?: number;
896
+ failedChecks?: number | undefined;
897
897
  /**
898
898
  * <p>The progress' not evaluated checks.</p>
899
899
  * @public
900
900
  */
901
- notEvaluatedChecks?: number;
901
+ notEvaluatedChecks?: number | undefined;
902
902
  /**
903
903
  * <p>The progress' unknown checks.</p>
904
904
  * @public
905
905
  */
906
- unknownChecks?: number;
906
+ unknownChecks?: number | undefined;
907
907
  /**
908
908
  * <p>The progress' not applicable checks.</p>
909
909
  * @public
910
910
  */
911
- notApplicableChecks?: number;
911
+ notApplicableChecks?: number | undefined;
912
912
  /**
913
913
  * <p>The progress' informational checks.</p>
914
914
  * @public
915
915
  */
916
- informationalChecks?: number;
916
+ informationalChecks?: number | undefined;
917
917
  /**
918
918
  * <p>The progress' error checks.</p>
919
919
  * @public
920
920
  */
921
- errorChecks?: number;
921
+ errorChecks?: number | undefined;
922
922
  }
923
923
  /**
924
924
  * @public
@@ -948,7 +948,7 @@ export interface StopCisSessionMessage {
948
948
  * <p>The reason for the message.</p>
949
949
  * @public
950
950
  */
951
- reason?: string;
951
+ reason?: string | undefined;
952
952
  /**
953
953
  * <p>The progress of the message.</p>
954
954
  * @public
@@ -958,17 +958,17 @@ export interface StopCisSessionMessage {
958
958
  * <p>The message compute platform.</p>
959
959
  * @public
960
960
  */
961
- computePlatform?: ComputePlatform;
961
+ computePlatform?: ComputePlatform | undefined;
962
962
  /**
963
963
  * <p>The message benchmark version.</p>
964
964
  * @public
965
965
  */
966
- benchmarkVersion?: string;
966
+ benchmarkVersion?: string | undefined;
967
967
  /**
968
968
  * <p>The message benchmark profile.</p>
969
969
  * @public
970
970
  */
971
- benchmarkProfile?: string;
971
+ benchmarkProfile?: string | undefined;
972
972
  }
973
973
  /**
974
974
  * @public
@@ -1044,12 +1044,12 @@ export interface UpdateCisTargets {
1044
1044
  * <p>The target account ids.</p>
1045
1045
  * @public
1046
1046
  */
1047
- accountIds?: string[];
1047
+ accountIds?: string[] | undefined;
1048
1048
  /**
1049
1049
  * <p>The target resource tags.</p>
1050
1050
  * @public
1051
1051
  */
1052
- targetResourceTags?: Record<string, string[]>;
1052
+ targetResourceTags?: Record<string, string[]> | undefined;
1053
1053
  }
1054
1054
  /**
1055
1055
  * @public
@@ -1064,7 +1064,7 @@ export interface UpdateCisScanConfigurationRequest {
1064
1064
  * <p>The scan name for the CIS scan configuration.</p>
1065
1065
  * @public
1066
1066
  */
1067
- scanName?: string;
1067
+ scanName?: string | undefined;
1068
1068
  /**
1069
1069
  * <p>
1070
1070
  * The security level for the CIS scan configuration.
@@ -1072,17 +1072,17 @@ export interface UpdateCisScanConfigurationRequest {
1072
1072
  * </p>
1073
1073
  * @public
1074
1074
  */
1075
- securityLevel?: CisSecurityLevel;
1075
+ securityLevel?: CisSecurityLevel | undefined;
1076
1076
  /**
1077
1077
  * <p>The schedule for the CIS scan configuration.</p>
1078
1078
  * @public
1079
1079
  */
1080
- schedule?: Schedule;
1080
+ schedule?: Schedule | undefined;
1081
1081
  /**
1082
1082
  * <p>The targets for the CIS scan configuration.</p>
1083
1083
  * @public
1084
1084
  */
1085
- targets?: UpdateCisTargets;
1085
+ targets?: UpdateCisTargets | undefined;
1086
1086
  }
1087
1087
  /**
1088
1088
  * @public
@@ -1102,12 +1102,12 @@ export interface UpdateConfigurationRequest {
1102
1102
  * <p>Specifies how the ECR automated re-scan will be updated for your environment.</p>
1103
1103
  * @public
1104
1104
  */
1105
- ecrConfiguration?: EcrConfiguration;
1105
+ ecrConfiguration?: EcrConfiguration | undefined;
1106
1106
  /**
1107
1107
  * <p>Specifies how the Amazon EC2 automated scan will be updated for your environment.</p>
1108
1108
  * @public
1109
1109
  */
1110
- ec2Configuration?: Ec2Configuration;
1110
+ ec2Configuration?: Ec2Configuration | undefined;
1111
1111
  }
1112
1112
  /**
1113
1113
  * @public
@@ -1122,12 +1122,12 @@ export interface UpdateEc2DeepInspectionConfigurationRequest {
1122
1122
  * <p>Specify <code>TRUE</code> to activate Amazon Inspector deep inspection in your account, or <code>FALSE</code> to deactivate. Member accounts in an organization cannot deactivate deep inspection, instead the delegated administrator for the organization can deactivate a member account using <a href="https://docs.aws.amazon.com/inspector/v2/APIReference/API_BatchUpdateMemberEc2DeepInspectionStatus.html">BatchUpdateMemberEc2DeepInspectionStatus</a>.</p>
1123
1123
  * @public
1124
1124
  */
1125
- activateDeepInspection?: boolean;
1125
+ activateDeepInspection?: boolean | undefined;
1126
1126
  /**
1127
1127
  * <p>The Amazon Inspector deep inspection custom paths you are adding for your account.</p>
1128
1128
  * @public
1129
1129
  */
1130
- packagePaths?: string[];
1130
+ packagePaths?: string[] | undefined;
1131
1131
  }
1132
1132
  /**
1133
1133
  * @public
@@ -1137,22 +1137,22 @@ export interface UpdateEc2DeepInspectionConfigurationResponse {
1137
1137
  * <p>The current Amazon Inspector deep inspection custom paths for your account.</p>
1138
1138
  * @public
1139
1139
  */
1140
- packagePaths?: string[];
1140
+ packagePaths?: string[] | undefined;
1141
1141
  /**
1142
1142
  * <p>The current Amazon Inspector deep inspection custom paths for the organization.</p>
1143
1143
  * @public
1144
1144
  */
1145
- orgPackagePaths?: string[];
1145
+ orgPackagePaths?: string[] | undefined;
1146
1146
  /**
1147
1147
  * <p>The status of Amazon Inspector deep inspection in your account.</p>
1148
1148
  * @public
1149
1149
  */
1150
- status?: Ec2DeepInspectionStatus;
1150
+ status?: Ec2DeepInspectionStatus | undefined;
1151
1151
  /**
1152
1152
  * <p>An error message explaining why new Amazon Inspector deep inspection custom paths could not be added.</p>
1153
1153
  * @public
1154
1154
  */
1155
- errorMessage?: string;
1155
+ errorMessage?: string | undefined;
1156
1156
  }
1157
1157
  /**
1158
1158
  * @public
@@ -1187,22 +1187,22 @@ export interface UpdateFilterRequest {
1187
1187
  * <p>Specifies the action that is to be applied to the findings that match the filter.</p>
1188
1188
  * @public
1189
1189
  */
1190
- action?: FilterAction;
1190
+ action?: FilterAction | undefined;
1191
1191
  /**
1192
1192
  * <p>A description of the filter.</p>
1193
1193
  * @public
1194
1194
  */
1195
- description?: string;
1195
+ description?: string | undefined;
1196
1196
  /**
1197
1197
  * <p>Defines the criteria to be update in the filter.</p>
1198
1198
  * @public
1199
1199
  */
1200
- filterCriteria?: FilterCriteria;
1200
+ filterCriteria?: FilterCriteria | undefined;
1201
1201
  /**
1202
1202
  * <p>The name of the filter.</p>
1203
1203
  * @public
1204
1204
  */
1205
- name?: string;
1205
+ name?: string | undefined;
1206
1206
  /**
1207
1207
  * <p>The Amazon Resource Number (ARN) of the filter to update.</p>
1208
1208
  * @public
@@ -1212,7 +1212,7 @@ export interface UpdateFilterRequest {
1212
1212
  * <p>The reason the filter was updated.</p>
1213
1213
  * @public
1214
1214
  */
1215
- reason?: string;
1215
+ reason?: string | undefined;
1216
1216
  }
1217
1217
  /**
1218
1218
  * @public