@aws-sdk/client-guardduty 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.
@@ -38,12 +38,12 @@ export declare class BadRequestException extends __BaseException {
38
38
  * <p>The error message.</p>
39
39
  * @public
40
40
  */
41
- Message?: string;
41
+ Message?: string | undefined;
42
42
  /**
43
43
  * <p>The error type.</p>
44
44
  * @public
45
45
  */
46
- Type?: string;
46
+ Type?: string | undefined;
47
47
  /**
48
48
  * @internal
49
49
  */
@@ -60,12 +60,12 @@ export declare class InternalServerErrorException extends __BaseException {
60
60
  * <p>The error message.</p>
61
61
  * @public
62
62
  */
63
- Message?: string;
63
+ Message?: string | undefined;
64
64
  /**
65
65
  * <p>The error type.</p>
66
66
  * @public
67
67
  */
68
- Type?: string;
68
+ Type?: string | undefined;
69
69
  /**
70
70
  * @internal
71
71
  */
@@ -110,13 +110,13 @@ export interface AccessControlList {
110
110
  * Access Control List (ACL).</p>
111
111
  * @public
112
112
  */
113
- AllowsPublicReadAccess?: boolean;
113
+ AllowsPublicReadAccess?: boolean | undefined;
114
114
  /**
115
115
  * <p>A value that indicates whether public write access for the bucket is enabled through an
116
116
  * Access Control List (ACL).</p>
117
117
  * @public
118
118
  */
119
- AllowsPublicWriteAccess?: boolean;
119
+ AllowsPublicWriteAccess?: boolean | undefined;
120
120
  }
121
121
  /**
122
122
  * <p>An access denied exception object.</p>
@@ -129,12 +129,12 @@ export declare class AccessDeniedException extends __BaseException {
129
129
  * <p>The error message.</p>
130
130
  * @public
131
131
  */
132
- Message?: string;
132
+ Message?: string | undefined;
133
133
  /**
134
134
  * <p>The error type.</p>
135
135
  * @public
136
136
  */
137
- Type?: string;
137
+ Type?: string | undefined;
138
138
  /**
139
139
  * @internal
140
140
  */
@@ -149,22 +149,22 @@ export interface AccessKeyDetails {
149
149
  * <p>The access key ID of the user.</p>
150
150
  * @public
151
151
  */
152
- AccessKeyId?: string;
152
+ AccessKeyId?: string | undefined;
153
153
  /**
154
154
  * <p>The principal ID of the user.</p>
155
155
  * @public
156
156
  */
157
- PrincipalId?: string;
157
+ PrincipalId?: string | undefined;
158
158
  /**
159
159
  * <p>The name of the user.</p>
160
160
  * @public
161
161
  */
162
- UserName?: string;
162
+ UserName?: string | undefined;
163
163
  /**
164
164
  * <p>The type of the user.</p>
165
165
  * @public
166
166
  */
167
- UserType?: string;
167
+ UserType?: string | undefined;
168
168
  }
169
169
  /**
170
170
  * <p>Contains information about the account.</p>
@@ -192,7 +192,7 @@ export interface DataSourceFreeTrial {
192
192
  * <p>A value that specifies the number of days left to use each enabled data source.</p>
193
193
  * @public
194
194
  */
195
- FreeTrialDaysRemaining?: number;
195
+ FreeTrialDaysRemaining?: number | undefined;
196
196
  }
197
197
  /**
198
198
  * <p>Provides details about the Kubernetes resources when it is enabled as a data
@@ -204,7 +204,7 @@ export interface KubernetesDataSourceFreeTrial {
204
204
  * <p>Describes whether Kubernetes audit logs are enabled as a data source.</p>
205
205
  * @public
206
206
  */
207
- AuditLogs?: DataSourceFreeTrial;
207
+ AuditLogs?: DataSourceFreeTrial | undefined;
208
208
  }
209
209
  /**
210
210
  * <p>Provides details about Malware Protection when it is enabled as a data source.</p>
@@ -216,7 +216,7 @@ export interface MalwareProtectionDataSourceFreeTrial {
216
216
  * source.</p>
217
217
  * @public
218
218
  */
219
- ScanEc2InstanceWithFindings?: DataSourceFreeTrial;
219
+ ScanEc2InstanceWithFindings?: DataSourceFreeTrial | undefined;
220
220
  }
221
221
  /**
222
222
  * <p>Contains information about which data sources are enabled for the GuardDuty member
@@ -228,32 +228,32 @@ export interface DataSourcesFreeTrial {
228
228
  * <p>Describes whether any Amazon Web Services CloudTrail management event logs are enabled as data sources.</p>
229
229
  * @public
230
230
  */
231
- CloudTrail?: DataSourceFreeTrial;
231
+ CloudTrail?: DataSourceFreeTrial | undefined;
232
232
  /**
233
233
  * <p>Describes whether any DNS logs are enabled as data sources.</p>
234
234
  * @public
235
235
  */
236
- DnsLogs?: DataSourceFreeTrial;
236
+ DnsLogs?: DataSourceFreeTrial | undefined;
237
237
  /**
238
238
  * <p>Describes whether any VPC Flow logs are enabled as data sources.</p>
239
239
  * @public
240
240
  */
241
- FlowLogs?: DataSourceFreeTrial;
241
+ FlowLogs?: DataSourceFreeTrial | undefined;
242
242
  /**
243
243
  * <p>Describes whether any S3 data event logs are enabled as data sources.</p>
244
244
  * @public
245
245
  */
246
- S3Logs?: DataSourceFreeTrial;
246
+ S3Logs?: DataSourceFreeTrial | undefined;
247
247
  /**
248
248
  * <p>Describes whether any Kubernetes logs are enabled as data sources.</p>
249
249
  * @public
250
250
  */
251
- Kubernetes?: KubernetesDataSourceFreeTrial;
251
+ Kubernetes?: KubernetesDataSourceFreeTrial | undefined;
252
252
  /**
253
253
  * <p>Describes whether Malware Protection is enabled as a data source.</p>
254
254
  * @public
255
255
  */
256
- MalwareProtection?: MalwareProtectionDataSourceFreeTrial;
256
+ MalwareProtection?: MalwareProtectionDataSourceFreeTrial | undefined;
257
257
  }
258
258
  /**
259
259
  * @public
@@ -285,12 +285,12 @@ export interface FreeTrialFeatureConfigurationResult {
285
285
  * <p>The name of the feature for which the free trial is configured.</p>
286
286
  * @public
287
287
  */
288
- Name?: FreeTrialFeatureResult;
288
+ Name?: FreeTrialFeatureResult | undefined;
289
289
  /**
290
290
  * <p>The number of the remaining free trial days for the feature.</p>
291
291
  * @public
292
292
  */
293
- FreeTrialDaysRemaining?: number;
293
+ FreeTrialDaysRemaining?: number | undefined;
294
294
  }
295
295
  /**
296
296
  * <p>Provides details of the GuardDuty member account that uses a free trial service.</p>
@@ -301,19 +301,19 @@ export interface AccountFreeTrialInfo {
301
301
  * <p>The account identifier of the GuardDuty member account.</p>
302
302
  * @public
303
303
  */
304
- AccountId?: string;
304
+ AccountId?: string | undefined;
305
305
  /**
306
306
  * @deprecated
307
307
  *
308
308
  * <p>Describes the data source enabled for the GuardDuty member account.</p>
309
309
  * @public
310
310
  */
311
- DataSources?: DataSourcesFreeTrial;
311
+ DataSources?: DataSourcesFreeTrial | undefined;
312
312
  /**
313
313
  * <p>A list of features enabled for the GuardDuty account.</p>
314
314
  * @public
315
315
  */
316
- Features?: FreeTrialFeatureConfigurationResult[];
316
+ Features?: FreeTrialFeatureConfigurationResult[] | undefined;
317
317
  }
318
318
  /**
319
319
  * <p>Contains information on how the bucker owner's S3 Block Public Access settings are being
@@ -326,22 +326,22 @@ export interface BlockPublicAccess {
326
326
  * <p>Indicates if S3 Block Public Access is set to <code>IgnorePublicAcls</code>.</p>
327
327
  * @public
328
328
  */
329
- IgnorePublicAcls?: boolean;
329
+ IgnorePublicAcls?: boolean | undefined;
330
330
  /**
331
331
  * <p>Indicates if S3 Block Public Access is set to <code>RestrictPublicBuckets</code>.</p>
332
332
  * @public
333
333
  */
334
- RestrictPublicBuckets?: boolean;
334
+ RestrictPublicBuckets?: boolean | undefined;
335
335
  /**
336
336
  * <p>Indicates if S3 Block Public Access is set to <code>BlockPublicAcls</code>.</p>
337
337
  * @public
338
338
  */
339
- BlockPublicAcls?: boolean;
339
+ BlockPublicAcls?: boolean | undefined;
340
340
  /**
341
341
  * <p>Indicates if S3 Block Public Access is set to <code>BlockPublicPolicy</code>.</p>
342
342
  * @public
343
343
  */
344
- BlockPublicPolicy?: boolean;
344
+ BlockPublicPolicy?: boolean | undefined;
345
345
  }
346
346
  /**
347
347
  * <p>Contains information about the account level permissions on the S3 bucket.</p>
@@ -352,7 +352,7 @@ export interface AccountLevelPermissions {
352
352
  * <p>Describes the S3 Block Public Access settings of the bucket's parent account.</p>
353
353
  * @public
354
354
  */
355
- BlockPublicAccess?: BlockPublicAccess;
355
+ BlockPublicAccess?: BlockPublicAccess | undefined;
356
356
  }
357
357
  /**
358
358
  * <p>Represents a list of map of accounts with the number of findings associated with each account.</p>
@@ -363,17 +363,17 @@ export interface AccountStatistics {
363
363
  * <p>The ID of the Amazon Web Services account.</p>
364
364
  * @public
365
365
  */
366
- AccountId?: string;
366
+ AccountId?: string | undefined;
367
367
  /**
368
368
  * <p>The timestamp at which the finding for this account was last generated.</p>
369
369
  * @public
370
370
  */
371
- LastGeneratedAt?: Date;
371
+ LastGeneratedAt?: Date | undefined;
372
372
  /**
373
373
  * <p>The total number of findings associated with an account.</p>
374
374
  * @public
375
375
  */
376
- TotalFindings?: number;
376
+ TotalFindings?: number | undefined;
377
377
  }
378
378
  /**
379
379
  * <p>Contains information about the domain.</p>
@@ -384,7 +384,7 @@ export interface DomainDetails {
384
384
  * <p>The domain information for the Amazon Web Services API call.</p>
385
385
  * @public
386
386
  */
387
- Domain?: string;
387
+ Domain?: string | undefined;
388
388
  }
389
389
  /**
390
390
  * <p>Contains details about the remote Amazon Web Services account that made the API call.</p>
@@ -395,7 +395,7 @@ export interface RemoteAccountDetails {
395
395
  * <p>The Amazon Web Services account ID of the remote API caller.</p>
396
396
  * @public
397
397
  */
398
- AccountId?: string;
398
+ AccountId?: string | undefined;
399
399
  /**
400
400
  * <p>Details on whether the Amazon Web Services account of the remote API caller is related to your GuardDuty
401
401
  * environment. If this value is <code>True</code> the API caller is affiliated to your account
@@ -403,7 +403,7 @@ export interface RemoteAccountDetails {
403
403
  * environment.</p>
404
404
  * @public
405
405
  */
406
- Affiliated?: boolean;
406
+ Affiliated?: boolean | undefined;
407
407
  }
408
408
  /**
409
409
  * <p>Contains information about the city associated with the IP address.</p>
@@ -414,7 +414,7 @@ export interface City {
414
414
  * <p>The city name of the remote IP address.</p>
415
415
  * @public
416
416
  */
417
- CityName?: string;
417
+ CityName?: string | undefined;
418
418
  }
419
419
  /**
420
420
  * <p>Contains information about the country where the remote IP address is located.</p>
@@ -425,12 +425,12 @@ export interface Country {
425
425
  * <p>The country code of the remote IP address.</p>
426
426
  * @public
427
427
  */
428
- CountryCode?: string;
428
+ CountryCode?: string | undefined;
429
429
  /**
430
430
  * <p>The country name of the remote IP address.</p>
431
431
  * @public
432
432
  */
433
- CountryName?: string;
433
+ CountryName?: string | undefined;
434
434
  }
435
435
  /**
436
436
  * <p>Contains information about the location of the remote IP address.</p>
@@ -441,12 +441,12 @@ export interface GeoLocation {
441
441
  * <p>The latitude information of the remote IP address.</p>
442
442
  * @public
443
443
  */
444
- Lat?: number;
444
+ Lat?: number | undefined;
445
445
  /**
446
446
  * <p>The longitude information of the remote IP address.</p>
447
447
  * @public
448
448
  */
449
- Lon?: number;
449
+ Lon?: number | undefined;
450
450
  }
451
451
  /**
452
452
  * <p>Contains information about the ISP organization of the remote IP address.</p>
@@ -458,22 +458,22 @@ export interface Organization {
458
458
  * address.</p>
459
459
  * @public
460
460
  */
461
- Asn?: string;
461
+ Asn?: string | undefined;
462
462
  /**
463
463
  * <p>The organization that registered this ASN.</p>
464
464
  * @public
465
465
  */
466
- AsnOrg?: string;
466
+ AsnOrg?: string | undefined;
467
467
  /**
468
468
  * <p>The ISP information for the internet provider.</p>
469
469
  * @public
470
470
  */
471
- Isp?: string;
471
+ Isp?: string | undefined;
472
472
  /**
473
473
  * <p>The name of the internet provider.</p>
474
474
  * @public
475
475
  */
476
- Org?: string;
476
+ Org?: string | undefined;
477
477
  }
478
478
  /**
479
479
  * <p>Contains information about the remote IP address of the connection.</p>
@@ -484,32 +484,32 @@ export interface RemoteIpDetails {
484
484
  * <p>The city information of the remote IP address.</p>
485
485
  * @public
486
486
  */
487
- City?: City;
487
+ City?: City | undefined;
488
488
  /**
489
489
  * <p>The country code of the remote IP address.</p>
490
490
  * @public
491
491
  */
492
- Country?: Country;
492
+ Country?: Country | undefined;
493
493
  /**
494
494
  * <p>The location information of the remote IP address.</p>
495
495
  * @public
496
496
  */
497
- GeoLocation?: GeoLocation;
497
+ GeoLocation?: GeoLocation | undefined;
498
498
  /**
499
499
  * <p>The IPv4 remote address of the connection.</p>
500
500
  * @public
501
501
  */
502
- IpAddressV4?: string;
502
+ IpAddressV4?: string | undefined;
503
503
  /**
504
504
  * <p>The IPv6 remote address of the connection.</p>
505
505
  * @public
506
506
  */
507
- IpAddressV6?: string;
507
+ IpAddressV6?: string | undefined;
508
508
  /**
509
509
  * <p>The ISP organization information of the remote IP address.</p>
510
510
  * @public
511
511
  */
512
- Organization?: Organization;
512
+ Organization?: Organization | undefined;
513
513
  }
514
514
  /**
515
515
  * <p>Contains information about the API action.</p>
@@ -520,49 +520,49 @@ export interface AwsApiCallAction {
520
520
  * <p>The Amazon Web Services API name.</p>
521
521
  * @public
522
522
  */
523
- Api?: string;
523
+ Api?: string | undefined;
524
524
  /**
525
525
  * <p>The Amazon Web Services API caller type.</p>
526
526
  * @public
527
527
  */
528
- CallerType?: string;
528
+ CallerType?: string | undefined;
529
529
  /**
530
530
  * <p>The domain information for the Amazon Web Services API call.</p>
531
531
  * @public
532
532
  */
533
- DomainDetails?: DomainDetails;
533
+ DomainDetails?: DomainDetails | undefined;
534
534
  /**
535
535
  * <p>The error code of the failed Amazon Web Services API action.</p>
536
536
  * @public
537
537
  */
538
- ErrorCode?: string;
538
+ ErrorCode?: string | undefined;
539
539
  /**
540
540
  * <p>The agent through which the API request was made.</p>
541
541
  * @public
542
542
  */
543
- UserAgent?: string;
543
+ UserAgent?: string | undefined;
544
544
  /**
545
545
  * <p>The remote IP information of the connection that initiated the Amazon Web Services API call.</p>
546
546
  * @public
547
547
  */
548
- RemoteIpDetails?: RemoteIpDetails;
548
+ RemoteIpDetails?: RemoteIpDetails | undefined;
549
549
  /**
550
550
  * <p>The Amazon Web Services service name whose API was invoked.</p>
551
551
  * @public
552
552
  */
553
- ServiceName?: string;
553
+ ServiceName?: string | undefined;
554
554
  /**
555
555
  * <p>The details of the Amazon Web Services account that made the API call. This field appears if the call
556
556
  * was made from outside your account.</p>
557
557
  * @public
558
558
  */
559
- RemoteAccountDetails?: RemoteAccountDetails;
559
+ RemoteAccountDetails?: RemoteAccountDetails | undefined;
560
560
  /**
561
561
  * <p>The details of the Amazon Web Services account that made the API call. This field identifies the
562
562
  * resources that were affected by this API call.</p>
563
563
  * @public
564
564
  */
565
- AffectedResources?: Record<string, string>;
565
+ AffectedResources?: Record<string, string> | undefined;
566
566
  }
567
567
  /**
568
568
  * <p>Contains information about the DNS_REQUEST action described in this finding.</p>
@@ -573,25 +573,25 @@ export interface DnsRequestAction {
573
573
  * <p>The domain information for the DNS query.</p>
574
574
  * @public
575
575
  */
576
- Domain?: string;
576
+ Domain?: string | undefined;
577
577
  /**
578
578
  * <p>The network connection protocol observed in the activity that prompted GuardDuty to
579
579
  * generate the finding.</p>
580
580
  * @public
581
581
  */
582
- Protocol?: string;
582
+ Protocol?: string | undefined;
583
583
  /**
584
584
  * <p>Indicates whether the targeted port is blocked.</p>
585
585
  * @public
586
586
  */
587
- Blocked?: boolean;
587
+ Blocked?: boolean | undefined;
588
588
  /**
589
589
  * <p>The second and top level domain involved in the
590
590
  * activity that potentially prompted GuardDuty to generate this finding.
591
591
  * For a list of top-level and second-level domains, see <a href="https://publicsuffix.org/">public suffix list</a>.</p>
592
592
  * @public
593
593
  */
594
- DomainWithSuffix?: string;
594
+ DomainWithSuffix?: string | undefined;
595
595
  }
596
596
  /**
597
597
  * <p>Information about the Kubernetes API call action described in this finding.</p>
@@ -602,58 +602,58 @@ export interface KubernetesApiCallAction {
602
602
  * <p>The Kubernetes API request URI.</p>
603
603
  * @public
604
604
  */
605
- RequestUri?: string;
605
+ RequestUri?: string | undefined;
606
606
  /**
607
607
  * <p>The Kubernetes API request HTTP verb.</p>
608
608
  * @public
609
609
  */
610
- Verb?: string;
610
+ Verb?: string | undefined;
611
611
  /**
612
612
  * <p>The IP of the Kubernetes API caller and the IPs of any proxies or load balancers between
613
613
  * the caller and the API endpoint.</p>
614
614
  * @public
615
615
  */
616
- SourceIps?: string[];
616
+ SourceIps?: string[] | undefined;
617
617
  /**
618
618
  * <p>The user agent of the caller of the Kubernetes API.</p>
619
619
  * @public
620
620
  */
621
- UserAgent?: string;
621
+ UserAgent?: string | undefined;
622
622
  /**
623
623
  * <p>Contains information about the remote IP address of the connection.</p>
624
624
  * @public
625
625
  */
626
- RemoteIpDetails?: RemoteIpDetails;
626
+ RemoteIpDetails?: RemoteIpDetails | undefined;
627
627
  /**
628
628
  * <p>The resulting HTTP response code of the Kubernetes API call action.</p>
629
629
  * @public
630
630
  */
631
- StatusCode?: number;
631
+ StatusCode?: number | undefined;
632
632
  /**
633
633
  * <p>Parameters related to the Kubernetes API call action.</p>
634
634
  * @public
635
635
  */
636
- Parameters?: string;
636
+ Parameters?: string | undefined;
637
637
  /**
638
638
  * <p>The resource component in the Kubernetes API call action.</p>
639
639
  * @public
640
640
  */
641
- Resource?: string;
641
+ Resource?: string | undefined;
642
642
  /**
643
643
  * <p>The name of the sub-resource in the Kubernetes API call action.</p>
644
644
  * @public
645
645
  */
646
- Subresource?: string;
646
+ Subresource?: string | undefined;
647
647
  /**
648
648
  * <p>The name of the namespace where the Kubernetes API call action takes place.</p>
649
649
  * @public
650
650
  */
651
- Namespace?: string;
651
+ Namespace?: string | undefined;
652
652
  /**
653
653
  * <p>The name of the resource in the Kubernetes API call action.</p>
654
654
  * @public
655
655
  */
656
- ResourceName?: string;
656
+ ResourceName?: string | undefined;
657
657
  }
658
658
  /**
659
659
  * <p>Information about the Kubernetes API for which you check if you have permission to call.</p>
@@ -665,22 +665,22 @@ export interface KubernetesPermissionCheckedDetails {
665
665
  * to call the <code>CreatePod</code> API, the verb component will be <code>Create</code>.</p>
666
666
  * @public
667
667
  */
668
- Verb?: string;
668
+ Verb?: string | undefined;
669
669
  /**
670
670
  * <p>The Kubernetes resource with which your Kubernetes API call will interact.</p>
671
671
  * @public
672
672
  */
673
- Resource?: string;
673
+ Resource?: string | undefined;
674
674
  /**
675
675
  * <p>The namespace where the Kubernetes API action will take place.</p>
676
676
  * @public
677
677
  */
678
- Namespace?: string;
678
+ Namespace?: string | undefined;
679
679
  /**
680
680
  * <p>Information whether the user has the permission to call the Kubernetes API.</p>
681
681
  * @public
682
682
  */
683
- Allowed?: boolean;
683
+ Allowed?: boolean | undefined;
684
684
  }
685
685
  /**
686
686
  * <p>Contains information about the role binding that grants the permission defined in a Kubernetes role.</p>
@@ -691,29 +691,29 @@ export interface KubernetesRoleBindingDetails {
691
691
  * <p>The kind of the role. For role binding, this value will be <code>RoleBinding</code>.</p>
692
692
  * @public
693
693
  */
694
- Kind?: string;
694
+ Kind?: string | undefined;
695
695
  /**
696
696
  * <p>The name of the <code>RoleBinding</code>.</p>
697
697
  * @public
698
698
  */
699
- Name?: string;
699
+ Name?: string | undefined;
700
700
  /**
701
701
  * <p>The unique identifier of the role binding.</p>
702
702
  * @public
703
703
  */
704
- Uid?: string;
704
+ Uid?: string | undefined;
705
705
  /**
706
706
  * <p>The name of the role being referenced. This must match the name of the <code>Role</code>
707
707
  * or <code>ClusterRole</code> that you want to bind to.</p>
708
708
  * @public
709
709
  */
710
- RoleRefName?: string;
710
+ RoleRefName?: string | undefined;
711
711
  /**
712
712
  * <p>The type of the role being referenced. This could be either <code>Role</code> or
713
713
  * <code>ClusterRole</code>.</p>
714
714
  * @public
715
715
  */
716
- RoleRefKind?: string;
716
+ RoleRefKind?: string | undefined;
717
717
  }
718
718
  /**
719
719
  * <p>Information about the Kubernetes role name and role type.</p>
@@ -724,17 +724,17 @@ export interface KubernetesRoleDetails {
724
724
  * <p>The kind of role. For this API, the value of <code>kind</code> will be <code>Role</code>.</p>
725
725
  * @public
726
726
  */
727
- Kind?: string;
727
+ Kind?: string | undefined;
728
728
  /**
729
729
  * <p>The name of the Kubernetes role.</p>
730
730
  * @public
731
731
  */
732
- Name?: string;
732
+ Name?: string | undefined;
733
733
  /**
734
734
  * <p>The unique identifier of the Kubernetes role name.</p>
735
735
  * @public
736
736
  */
737
- Uid?: string;
737
+ Uid?: string | undefined;
738
738
  }
739
739
  /**
740
740
  * <p>Contains information about the local IP address of the connection.</p>
@@ -745,12 +745,12 @@ export interface LocalIpDetails {
745
745
  * <p>The IPv4 local address of the connection.</p>
746
746
  * @public
747
747
  */
748
- IpAddressV4?: string;
748
+ IpAddressV4?: string | undefined;
749
749
  /**
750
750
  * <p>The IPv6 local address of the connection.</p>
751
751
  * @public
752
752
  */
753
- IpAddressV6?: string;
753
+ IpAddressV6?: string | undefined;
754
754
  }
755
755
  /**
756
756
  * <p>Contains information about the port for the local connection.</p>
@@ -761,12 +761,12 @@ export interface LocalPortDetails {
761
761
  * <p>The port number of the local connection.</p>
762
762
  * @public
763
763
  */
764
- Port?: number;
764
+ Port?: number | undefined;
765
765
  /**
766
766
  * <p>The port name of the local connection.</p>
767
767
  * @public
768
768
  */
769
- PortName?: string;
769
+ PortName?: string | undefined;
770
770
  }
771
771
  /**
772
772
  * <p>Contains information about the remote port.</p>
@@ -777,12 +777,12 @@ export interface RemotePortDetails {
777
777
  * <p>The port number of the remote connection.</p>
778
778
  * @public
779
779
  */
780
- Port?: number;
780
+ Port?: number | undefined;
781
781
  /**
782
782
  * <p>The port name of the remote connection.</p>
783
783
  * @public
784
784
  */
785
- PortName?: string;
785
+ PortName?: string | undefined;
786
786
  }
787
787
  /**
788
788
  * <p>Contains information about the NETWORK_CONNECTION action described in the finding.</p>
@@ -793,42 +793,42 @@ export interface NetworkConnectionAction {
793
793
  * <p>Indicates whether EC2 blocked the network connection to your instance.</p>
794
794
  * @public
795
795
  */
796
- Blocked?: boolean;
796
+ Blocked?: boolean | undefined;
797
797
  /**
798
798
  * <p>The network connection direction.</p>
799
799
  * @public
800
800
  */
801
- ConnectionDirection?: string;
801
+ ConnectionDirection?: string | undefined;
802
802
  /**
803
803
  * <p>The local port information of the connection.</p>
804
804
  * @public
805
805
  */
806
- LocalPortDetails?: LocalPortDetails;
806
+ LocalPortDetails?: LocalPortDetails | undefined;
807
807
  /**
808
808
  * <p>The network connection protocol.</p>
809
809
  * @public
810
810
  */
811
- Protocol?: string;
811
+ Protocol?: string | undefined;
812
812
  /**
813
813
  * <p>The local IP information of the connection.</p>
814
814
  * @public
815
815
  */
816
- LocalIpDetails?: LocalIpDetails;
816
+ LocalIpDetails?: LocalIpDetails | undefined;
817
817
  /**
818
818
  * <p>The EC2 instance's local elastic network interface utilized for the connection.</p>
819
819
  * @public
820
820
  */
821
- LocalNetworkInterface?: string;
821
+ LocalNetworkInterface?: string | undefined;
822
822
  /**
823
823
  * <p>The remote IP information of the connection.</p>
824
824
  * @public
825
825
  */
826
- RemoteIpDetails?: RemoteIpDetails;
826
+ RemoteIpDetails?: RemoteIpDetails | undefined;
827
827
  /**
828
828
  * <p>The remote port information of the connection.</p>
829
829
  * @public
830
830
  */
831
- RemotePortDetails?: RemotePortDetails;
831
+ RemotePortDetails?: RemotePortDetails | undefined;
832
832
  }
833
833
  /**
834
834
  * <p>Contains information about the port probe details.</p>
@@ -839,17 +839,17 @@ export interface PortProbeDetail {
839
839
  * <p>The local port information of the connection.</p>
840
840
  * @public
841
841
  */
842
- LocalPortDetails?: LocalPortDetails;
842
+ LocalPortDetails?: LocalPortDetails | undefined;
843
843
  /**
844
844
  * <p>The local IP information of the connection.</p>
845
845
  * @public
846
846
  */
847
- LocalIpDetails?: LocalIpDetails;
847
+ LocalIpDetails?: LocalIpDetails | undefined;
848
848
  /**
849
849
  * <p>The remote IP information of the connection.</p>
850
850
  * @public
851
851
  */
852
- RemoteIpDetails?: RemoteIpDetails;
852
+ RemoteIpDetails?: RemoteIpDetails | undefined;
853
853
  }
854
854
  /**
855
855
  * <p>Contains information about the PORT_PROBE action described in the finding.</p>
@@ -860,12 +860,12 @@ export interface PortProbeAction {
860
860
  * <p>Indicates whether EC2 blocked the port probe to the instance, such as with an ACL.</p>
861
861
  * @public
862
862
  */
863
- Blocked?: boolean;
863
+ Blocked?: boolean | undefined;
864
864
  /**
865
865
  * <p>A list of objects related to port probe details.</p>
866
866
  * @public
867
867
  */
868
- PortProbeDetails?: PortProbeDetail[];
868
+ PortProbeDetails?: PortProbeDetail[] | undefined;
869
869
  }
870
870
  /**
871
871
  * <p>Information about the login attempts.</p>
@@ -876,24 +876,24 @@ export interface LoginAttribute {
876
876
  * <p>Indicates the user name which attempted to log in.</p>
877
877
  * @public
878
878
  */
879
- User?: string;
879
+ User?: string | undefined;
880
880
  /**
881
881
  * <p>Indicates the application name used to attempt log in.</p>
882
882
  * @public
883
883
  */
884
- Application?: string;
884
+ Application?: string | undefined;
885
885
  /**
886
886
  * <p>Represents the sum of failed (unsuccessful) login attempts made to establish a connection
887
887
  * to the database instance.</p>
888
888
  * @public
889
889
  */
890
- FailedLoginAttempts?: number;
890
+ FailedLoginAttempts?: number | undefined;
891
891
  /**
892
892
  * <p>Represents the sum of successful connections (a correct combination of login attributes)
893
893
  * made to the database instance by the actor.</p>
894
894
  * @public
895
895
  */
896
- SuccessfulLoginAttempts?: number;
896
+ SuccessfulLoginAttempts?: number | undefined;
897
897
  }
898
898
  /**
899
899
  * <p>Indicates that a login attempt was made to the potentially compromised database from a
@@ -905,12 +905,12 @@ export interface RdsLoginAttemptAction {
905
905
  * <p>Contains information about the remote IP address of the connection.</p>
906
906
  * @public
907
907
  */
908
- RemoteIpDetails?: RemoteIpDetails;
908
+ RemoteIpDetails?: RemoteIpDetails | undefined;
909
909
  /**
910
910
  * <p>Indicates the login attributes used in the login attempt.</p>
911
911
  * @public
912
912
  */
913
- LoginAttributes?: LoginAttribute[];
913
+ LoginAttributes?: LoginAttribute[] | undefined;
914
914
  }
915
915
  /**
916
916
  * <p>Contains information about actions.</p>
@@ -921,52 +921,52 @@ export interface Action {
921
921
  * <p>The GuardDuty finding activity type.</p>
922
922
  * @public
923
923
  */
924
- ActionType?: string;
924
+ ActionType?: string | undefined;
925
925
  /**
926
926
  * <p>Information about the AWS_API_CALL action described in this finding.</p>
927
927
  * @public
928
928
  */
929
- AwsApiCallAction?: AwsApiCallAction;
929
+ AwsApiCallAction?: AwsApiCallAction | undefined;
930
930
  /**
931
931
  * <p>Information about the DNS_REQUEST action described in this finding.</p>
932
932
  * @public
933
933
  */
934
- DnsRequestAction?: DnsRequestAction;
934
+ DnsRequestAction?: DnsRequestAction | undefined;
935
935
  /**
936
936
  * <p>Information about the NETWORK_CONNECTION action described in this finding.</p>
937
937
  * @public
938
938
  */
939
- NetworkConnectionAction?: NetworkConnectionAction;
939
+ NetworkConnectionAction?: NetworkConnectionAction | undefined;
940
940
  /**
941
941
  * <p>Information about the PORT_PROBE action described in this finding.</p>
942
942
  * @public
943
943
  */
944
- PortProbeAction?: PortProbeAction;
944
+ PortProbeAction?: PortProbeAction | undefined;
945
945
  /**
946
946
  * <p>Information about the Kubernetes API call action described in this finding.</p>
947
947
  * @public
948
948
  */
949
- KubernetesApiCallAction?: KubernetesApiCallAction;
949
+ KubernetesApiCallAction?: KubernetesApiCallAction | undefined;
950
950
  /**
951
951
  * <p>Information about <code>RDS_LOGIN_ATTEMPT</code> action described in this finding.</p>
952
952
  * @public
953
953
  */
954
- RdsLoginAttemptAction?: RdsLoginAttemptAction;
954
+ RdsLoginAttemptAction?: RdsLoginAttemptAction | undefined;
955
955
  /**
956
956
  * <p>Information whether the user has the permission to use a specific Kubernetes API.</p>
957
957
  * @public
958
958
  */
959
- KubernetesPermissionCheckedDetails?: KubernetesPermissionCheckedDetails;
959
+ KubernetesPermissionCheckedDetails?: KubernetesPermissionCheckedDetails | undefined;
960
960
  /**
961
961
  * <p>Information about the role binding that grants the permission defined in a Kubernetes role.</p>
962
962
  * @public
963
963
  */
964
- KubernetesRoleBindingDetails?: KubernetesRoleBindingDetails;
964
+ KubernetesRoleBindingDetails?: KubernetesRoleBindingDetails | undefined;
965
965
  /**
966
966
  * <p>Information about the Kubernetes role name and role type.</p>
967
967
  * @public
968
968
  */
969
- KubernetesRoleDetails?: KubernetesRoleDetails;
969
+ KubernetesRoleDetails?: KubernetesRoleDetails | undefined;
970
970
  }
971
971
  /**
972
972
  * <p>Information about the installed EKS add-on (GuardDuty security agent).</p>
@@ -977,12 +977,12 @@ export interface AddonDetails {
977
977
  * <p>Version of the installed EKS add-on.</p>
978
978
  * @public
979
979
  */
980
- AddonVersion?: string;
980
+ AddonVersion?: string | undefined;
981
981
  /**
982
982
  * <p>Status of the installed EKS add-on.</p>
983
983
  * @public
984
984
  */
985
- AddonStatus?: string;
985
+ AddonStatus?: string | undefined;
986
986
  }
987
987
  /**
988
988
  * @public
@@ -1006,12 +1006,12 @@ export interface AdminAccount {
1006
1006
  * <p>The Amazon Web Services account ID for the account.</p>
1007
1007
  * @public
1008
1008
  */
1009
- AdminAccountId?: string;
1009
+ AdminAccountId?: string | undefined;
1010
1010
  /**
1011
1011
  * <p>Indicates whether the account is enabled as the delegated administrator.</p>
1012
1012
  * @public
1013
1013
  */
1014
- AdminStatus?: AdminStatus;
1014
+ AdminStatus?: AdminStatus | undefined;
1015
1015
  }
1016
1016
  /**
1017
1017
  * <p>Contains information about the administrator account and invitation.</p>
@@ -1022,23 +1022,23 @@ export interface Administrator {
1022
1022
  * <p>The ID of the account used as the administrator account.</p>
1023
1023
  * @public
1024
1024
  */
1025
- AccountId?: string;
1025
+ AccountId?: string | undefined;
1026
1026
  /**
1027
1027
  * <p>The value that is used to validate the administrator account to the member
1028
1028
  * account.</p>
1029
1029
  * @public
1030
1030
  */
1031
- InvitationId?: string;
1031
+ InvitationId?: string | undefined;
1032
1032
  /**
1033
1033
  * <p>The status of the relationship between the administrator and member accounts.</p>
1034
1034
  * @public
1035
1035
  */
1036
- RelationshipStatus?: string;
1036
+ RelationshipStatus?: string | undefined;
1037
1037
  /**
1038
1038
  * <p>The timestamp when the invitation was sent.</p>
1039
1039
  * @public
1040
1040
  */
1041
- InvitedAt?: string;
1041
+ InvitedAt?: string | undefined;
1042
1042
  }
1043
1043
  /**
1044
1044
  * <p>Information about the installed GuardDuty security agent.</p>
@@ -1049,7 +1049,7 @@ export interface AgentDetails {
1049
1049
  * <p>Version of the installed GuardDuty security agent.</p>
1050
1050
  * @public
1051
1051
  */
1052
- Version?: string;
1052
+ Version?: string | undefined;
1053
1053
  }
1054
1054
  /**
1055
1055
  * <p>Contains information about the observed behavior.</p>
@@ -1060,7 +1060,7 @@ export interface Observations {
1060
1060
  * <p>The text that was unusual.</p>
1061
1061
  * @public
1062
1062
  */
1063
- Text?: string[];
1063
+ Text?: string[] | undefined;
1064
1064
  }
1065
1065
  /**
1066
1066
  * @public
@@ -1096,17 +1096,17 @@ export interface AnomalyObject {
1096
1096
  * <p>The type of behavior of the profile.</p>
1097
1097
  * @public
1098
1098
  */
1099
- ProfileType?: ProfileType;
1099
+ ProfileType?: ProfileType | undefined;
1100
1100
  /**
1101
1101
  * <p>The frequency of the anomaly.</p>
1102
1102
  * @public
1103
1103
  */
1104
- ProfileSubtype?: ProfileSubtype;
1104
+ ProfileSubtype?: ProfileSubtype | undefined;
1105
1105
  /**
1106
1106
  * <p>The recorded value.</p>
1107
1107
  * @public
1108
1108
  */
1109
- Observations?: Observations;
1109
+ Observations?: Observations | undefined;
1110
1110
  }
1111
1111
  /**
1112
1112
  * <p>Contains information about the behavior of the anomaly that is new to GuardDuty.</p>
@@ -1118,7 +1118,7 @@ export interface AnomalyUnusual {
1118
1118
  * generate the finding.</p>
1119
1119
  * @public
1120
1120
  */
1121
- Behavior?: Record<string, Record<string, AnomalyObject>>;
1121
+ Behavior?: Record<string, Record<string, AnomalyObject>> | undefined;
1122
1122
  }
1123
1123
  /**
1124
1124
  * <p>Contains information about the anomalies.</p>
@@ -1129,12 +1129,12 @@ export interface Anomaly {
1129
1129
  * <p>Information about the types of profiles.</p>
1130
1130
  * @public
1131
1131
  */
1132
- Profiles?: Record<string, Record<string, AnomalyObject[]>>;
1132
+ Profiles?: Record<string, Record<string, AnomalyObject[]>> | undefined;
1133
1133
  /**
1134
1134
  * <p>Information about the behavior of the anomalies.</p>
1135
1135
  * @public
1136
1136
  */
1137
- Unusual?: AnomalyUnusual;
1137
+ Unusual?: AnomalyUnusual | undefined;
1138
1138
  }
1139
1139
  /**
1140
1140
  * @public
@@ -1182,13 +1182,13 @@ export interface BucketPolicy {
1182
1182
  * bucket policy.</p>
1183
1183
  * @public
1184
1184
  */
1185
- AllowsPublicReadAccess?: boolean;
1185
+ AllowsPublicReadAccess?: boolean | undefined;
1186
1186
  /**
1187
1187
  * <p>A value that indicates whether public write access for the bucket is enabled through a
1188
1188
  * bucket policy.</p>
1189
1189
  * @public
1190
1190
  */
1191
- AllowsPublicWriteAccess?: boolean;
1191
+ AllowsPublicWriteAccess?: boolean | undefined;
1192
1192
  }
1193
1193
  /**
1194
1194
  * <p>Contains information about the bucket level permissions for the S3 bucket.</p>
@@ -1199,18 +1199,18 @@ export interface BucketLevelPermissions {
1199
1199
  * <p>Contains information on how Access Control Policies are applied to the bucket.</p>
1200
1200
  * @public
1201
1201
  */
1202
- AccessControlList?: AccessControlList;
1202
+ AccessControlList?: AccessControlList | undefined;
1203
1203
  /**
1204
1204
  * <p>Contains information on the bucket policies for the S3 bucket.</p>
1205
1205
  * @public
1206
1206
  */
1207
- BucketPolicy?: BucketPolicy;
1207
+ BucketPolicy?: BucketPolicy | undefined;
1208
1208
  /**
1209
1209
  * <p>Contains information on which account level S3 Block Public Access settings are applied to
1210
1210
  * the S3 bucket.</p>
1211
1211
  * @public
1212
1212
  */
1213
- BlockPublicAccess?: BlockPublicAccess;
1213
+ BlockPublicAccess?: BlockPublicAccess | undefined;
1214
1214
  }
1215
1215
  /**
1216
1216
  * @public
@@ -1247,7 +1247,7 @@ export interface Condition {
1247
1247
  * querying for findings.</p>
1248
1248
  * @public
1249
1249
  */
1250
- Eq?: string[];
1250
+ Eq?: string[] | undefined;
1251
1251
  /**
1252
1252
  * @deprecated
1253
1253
  *
@@ -1255,7 +1255,7 @@ export interface Condition {
1255
1255
  * when querying for findings.</p>
1256
1256
  * @public
1257
1257
  */
1258
- Neq?: string[];
1258
+ Neq?: string[] | undefined;
1259
1259
  /**
1260
1260
  * @deprecated
1261
1261
  *
@@ -1263,7 +1263,7 @@ export interface Condition {
1263
1263
  * when querying for findings.</p>
1264
1264
  * @public
1265
1265
  */
1266
- Gt?: number;
1266
+ Gt?: number | undefined;
1267
1267
  /**
1268
1268
  * @deprecated
1269
1269
  *
@@ -1271,7 +1271,7 @@ export interface Condition {
1271
1271
  * single field when querying for findings.</p>
1272
1272
  * @public
1273
1273
  */
1274
- Gte?: number;
1274
+ Gte?: number | undefined;
1275
1275
  /**
1276
1276
  * @deprecated
1277
1277
  *
@@ -1279,7 +1279,7 @@ export interface Condition {
1279
1279
  * querying for findings.</p>
1280
1280
  * @public
1281
1281
  */
1282
- Lt?: number;
1282
+ Lt?: number | undefined;
1283
1283
  /**
1284
1284
  * @deprecated
1285
1285
  *
@@ -1287,45 +1287,45 @@ export interface Condition {
1287
1287
  * field when querying for findings.</p>
1288
1288
  * @public
1289
1289
  */
1290
- Lte?: number;
1290
+ Lte?: number | undefined;
1291
1291
  /**
1292
1292
  * <p>Represents an <i>equal</i>
1293
1293
  * <b></b> condition to be applied to
1294
1294
  * a single field when querying for findings.</p>
1295
1295
  * @public
1296
1296
  */
1297
- Equals?: string[];
1297
+ Equals?: string[] | undefined;
1298
1298
  /**
1299
1299
  * <p>Represents a <i>not equal</i>
1300
1300
  * <b></b> condition to be applied
1301
1301
  * to a single field when querying for findings.</p>
1302
1302
  * @public
1303
1303
  */
1304
- NotEquals?: string[];
1304
+ NotEquals?: string[] | undefined;
1305
1305
  /**
1306
1306
  * <p>Represents a <i>greater than</i> condition to be applied to a single field
1307
1307
  * when querying for findings.</p>
1308
1308
  * @public
1309
1309
  */
1310
- GreaterThan?: number;
1310
+ GreaterThan?: number | undefined;
1311
1311
  /**
1312
1312
  * <p>Represents a <i>greater than or equal</i> condition to be applied to a
1313
1313
  * single field when querying for findings.</p>
1314
1314
  * @public
1315
1315
  */
1316
- GreaterThanOrEqual?: number;
1316
+ GreaterThanOrEqual?: number | undefined;
1317
1317
  /**
1318
1318
  * <p>Represents a <i>less than</i> condition to be applied to a single field when
1319
1319
  * querying for findings.</p>
1320
1320
  * @public
1321
1321
  */
1322
- LessThan?: number;
1322
+ LessThan?: number | undefined;
1323
1323
  /**
1324
1324
  * <p>Represents a <i>less than or equal</i> condition to be applied to a single
1325
1325
  * field when querying for findings.</p>
1326
1326
  * @public
1327
1327
  */
1328
- LessThanOrEqual?: number;
1328
+ LessThanOrEqual?: number | undefined;
1329
1329
  }
1330
1330
  /**
1331
1331
  * <p>A request conflict exception object.</p>
@@ -1338,12 +1338,12 @@ export declare class ConflictException extends __BaseException {
1338
1338
  * <p>The error message.</p>
1339
1339
  * @public
1340
1340
  */
1341
- Message?: string;
1341
+ Message?: string | undefined;
1342
1342
  /**
1343
1343
  * <p>The error type.</p>
1344
1344
  * @public
1345
1345
  */
1346
- Type?: string;
1346
+ Type?: string | undefined;
1347
1347
  /**
1348
1348
  * @internal
1349
1349
  */
@@ -1358,12 +1358,12 @@ export interface SecurityContext {
1358
1358
  * <p>Whether the container is privileged.</p>
1359
1359
  * @public
1360
1360
  */
1361
- Privileged?: boolean;
1361
+ Privileged?: boolean | undefined;
1362
1362
  /**
1363
1363
  * <p>Whether or not a container or a Kubernetes pod is allowed to gain more privileges than its parent process.</p>
1364
1364
  * @public
1365
1365
  */
1366
- AllowPrivilegeEscalation?: boolean;
1366
+ AllowPrivilegeEscalation?: boolean | undefined;
1367
1367
  }
1368
1368
  /**
1369
1369
  * <p>Container volume mount.</p>
@@ -1374,12 +1374,12 @@ export interface VolumeMount {
1374
1374
  * <p>Volume mount name.</p>
1375
1375
  * @public
1376
1376
  */
1377
- Name?: string;
1377
+ Name?: string | undefined;
1378
1378
  /**
1379
1379
  * <p>Volume mount path.</p>
1380
1380
  * @public
1381
1381
  */
1382
- MountPath?: string;
1382
+ MountPath?: string | undefined;
1383
1383
  }
1384
1384
  /**
1385
1385
  * <p>Details of a container.</p>
@@ -1390,39 +1390,39 @@ export interface Container {
1390
1390
  * <p>The container runtime (such as, Docker or containerd) used to run the container.</p>
1391
1391
  * @public
1392
1392
  */
1393
- ContainerRuntime?: string;
1393
+ ContainerRuntime?: string | undefined;
1394
1394
  /**
1395
1395
  * <p>Container ID.</p>
1396
1396
  * @public
1397
1397
  */
1398
- Id?: string;
1398
+ Id?: string | undefined;
1399
1399
  /**
1400
1400
  * <p>Container name.</p>
1401
1401
  * @public
1402
1402
  */
1403
- Name?: string;
1403
+ Name?: string | undefined;
1404
1404
  /**
1405
1405
  * <p>Container image.</p>
1406
1406
  * @public
1407
1407
  */
1408
- Image?: string;
1408
+ Image?: string | undefined;
1409
1409
  /**
1410
1410
  * <p>Part of the image name before the last slash. For example, imagePrefix for
1411
1411
  * public.ecr.aws/amazonlinux/amazonlinux:latest would be public.ecr.aws/amazonlinux. If the
1412
1412
  * image name is relative and does not have a slash, this field is empty.</p>
1413
1413
  * @public
1414
1414
  */
1415
- ImagePrefix?: string;
1415
+ ImagePrefix?: string | undefined;
1416
1416
  /**
1417
1417
  * <p>Container volume mounts.</p>
1418
1418
  * @public
1419
1419
  */
1420
- VolumeMounts?: VolumeMount[];
1420
+ VolumeMounts?: VolumeMount[] | undefined;
1421
1421
  /**
1422
1422
  * <p>Container security context.</p>
1423
1423
  * @public
1424
1424
  */
1425
- SecurityContext?: SecurityContext;
1425
+ SecurityContext?: SecurityContext | undefined;
1426
1426
  }
1427
1427
  /**
1428
1428
  * <p>Contains information about the Amazon EC2 instance that is running
@@ -1435,12 +1435,12 @@ export interface ContainerInstanceDetails {
1435
1435
  * coverage status.</p>
1436
1436
  * @public
1437
1437
  */
1438
- CoveredContainerInstances?: number;
1438
+ CoveredContainerInstances?: number | undefined;
1439
1439
  /**
1440
1440
  * <p>Represents total number of nodes in the Amazon ECS cluster.</p>
1441
1441
  * @public
1442
1442
  */
1443
- CompatibleContainerInstances?: number;
1443
+ CompatibleContainerInstances?: number | undefined;
1444
1444
  }
1445
1445
  /**
1446
1446
  * @public
@@ -1490,23 +1490,23 @@ export interface CoverageEc2InstanceDetails {
1490
1490
  * <p>The Amazon EC2 instance ID.</p>
1491
1491
  * @public
1492
1492
  */
1493
- InstanceId?: string;
1493
+ InstanceId?: string | undefined;
1494
1494
  /**
1495
1495
  * <p>The instance type of the Amazon EC2 instance.</p>
1496
1496
  * @public
1497
1497
  */
1498
- InstanceType?: string;
1498
+ InstanceType?: string | undefined;
1499
1499
  /**
1500
1500
  * <p>The cluster ARN of the Amazon ECS cluster running on
1501
1501
  * the Amazon EC2 instance.</p>
1502
1502
  * @public
1503
1503
  */
1504
- ClusterArn?: string;
1504
+ ClusterArn?: string | undefined;
1505
1505
  /**
1506
1506
  * <p>Information about the installed security agent.</p>
1507
1507
  * @public
1508
1508
  */
1509
- AgentDetails?: AgentDetails;
1509
+ AgentDetails?: AgentDetails | undefined;
1510
1510
  /**
1511
1511
  * <p>Indicates how the GuardDuty security agent is managed for this resource.</p>
1512
1512
  * <ul>
@@ -1526,7 +1526,7 @@ export interface CoverageEc2InstanceDetails {
1526
1526
  * </note>
1527
1527
  * @public
1528
1528
  */
1529
- ManagementType?: ManagementType;
1529
+ ManagementType?: ManagementType | undefined;
1530
1530
  }
1531
1531
  /**
1532
1532
  * <p>Contains information about Amazon Web Services Fargate details associated with
@@ -1538,7 +1538,7 @@ export interface FargateDetails {
1538
1538
  * <p>Runtime coverage issues identified for the resource running on Amazon Web Services Fargate.</p>
1539
1539
  * @public
1540
1540
  */
1541
- Issues?: string[];
1541
+ Issues?: string[] | undefined;
1542
1542
  /**
1543
1543
  * <p>Indicates how the GuardDuty security agent is managed for this resource.</p>
1544
1544
  * <ul>
@@ -1556,7 +1556,7 @@ export interface FargateDetails {
1556
1556
  * </note>
1557
1557
  * @public
1558
1558
  */
1559
- ManagementType?: ManagementType;
1559
+ ManagementType?: ManagementType | undefined;
1560
1560
  }
1561
1561
  /**
1562
1562
  * <p>Contains information about Amazon ECS cluster runtime coverage details.</p>
@@ -1567,19 +1567,19 @@ export interface CoverageEcsClusterDetails {
1567
1567
  * <p>The name of the Amazon ECS cluster.</p>
1568
1568
  * @public
1569
1569
  */
1570
- ClusterName?: string;
1570
+ ClusterName?: string | undefined;
1571
1571
  /**
1572
1572
  * <p>Information about the Fargate details associated with the Amazon
1573
1573
  * ECS cluster.</p>
1574
1574
  * @public
1575
1575
  */
1576
- FargateDetails?: FargateDetails;
1576
+ FargateDetails?: FargateDetails | undefined;
1577
1577
  /**
1578
1578
  * <p>Information about the Amazon ECS container running on Amazon EC2
1579
1579
  * instance.</p>
1580
1580
  * @public
1581
1581
  */
1582
- ContainerInstanceDetails?: ContainerInstanceDetails;
1582
+ ContainerInstanceDetails?: ContainerInstanceDetails | undefined;
1583
1583
  }
1584
1584
  /**
1585
1585
  * <p>Information about the EKS cluster that has a coverage status.</p>
@@ -1590,23 +1590,23 @@ export interface CoverageEksClusterDetails {
1590
1590
  * <p>Name of the EKS cluster.</p>
1591
1591
  * @public
1592
1592
  */
1593
- ClusterName?: string;
1593
+ ClusterName?: string | undefined;
1594
1594
  /**
1595
1595
  * <p>Represents the nodes within the EKS cluster that have a <code>HEALTHY</code> coverage
1596
1596
  * status.</p>
1597
1597
  * @public
1598
1598
  */
1599
- CoveredNodes?: number;
1599
+ CoveredNodes?: number | undefined;
1600
1600
  /**
1601
1601
  * <p>Represents all the nodes within the EKS cluster in your account.</p>
1602
1602
  * @public
1603
1603
  */
1604
- CompatibleNodes?: number;
1604
+ CompatibleNodes?: number | undefined;
1605
1605
  /**
1606
1606
  * <p>Information about the installed EKS add-on.</p>
1607
1607
  * @public
1608
1608
  */
1609
- AddonDetails?: AddonDetails;
1609
+ AddonDetails?: AddonDetails | undefined;
1610
1610
  /**
1611
1611
  * <p>Indicates how the Amazon EKS add-on GuardDuty agent is managed for this EKS cluster.</p>
1612
1612
  * <p>
@@ -1616,7 +1616,7 @@ export interface CoverageEksClusterDetails {
1616
1616
  * the Amazon EKS add-on GuardDuty agent for this resource.</p>
1617
1617
  * @public
1618
1618
  */
1619
- ManagementType?: ManagementType;
1619
+ ManagementType?: ManagementType | undefined;
1620
1620
  }
1621
1621
  /**
1622
1622
  * <p>Represents a condition that when matched will be added to the response of the
@@ -1629,13 +1629,13 @@ export interface CoverageFilterCondition {
1629
1629
  * coverage details.</p>
1630
1630
  * @public
1631
1631
  */
1632
- Equals?: string[];
1632
+ Equals?: string[] | undefined;
1633
1633
  /**
1634
1634
  * <p>Represents a not equal condition that is applied to a single field while retrieving the
1635
1635
  * coverage details.</p>
1636
1636
  * @public
1637
1637
  */
1638
- NotEquals?: string[];
1638
+ NotEquals?: string[] | undefined;
1639
1639
  }
1640
1640
  /**
1641
1641
  * @public
@@ -1672,12 +1672,12 @@ export interface CoverageFilterCriterion {
1672
1672
  * </note>
1673
1673
  * @public
1674
1674
  */
1675
- CriterionKey?: CoverageFilterCriterionKey;
1675
+ CriterionKey?: CoverageFilterCriterionKey | undefined;
1676
1676
  /**
1677
1677
  * <p>Contains information about the condition.</p>
1678
1678
  * @public
1679
1679
  */
1680
- FilterCondition?: CoverageFilterCondition;
1680
+ FilterCondition?: CoverageFilterCondition | undefined;
1681
1681
  }
1682
1682
  /**
1683
1683
  * <p>Represents the criteria used in the filter.</p>
@@ -1689,7 +1689,7 @@ export interface CoverageFilterCriteria {
1689
1689
  * operation.</p>
1690
1690
  * @public
1691
1691
  */
1692
- FilterCriterion?: CoverageFilterCriterion[];
1692
+ FilterCriterion?: CoverageFilterCriterion[] | undefined;
1693
1693
  }
1694
1694
  /**
1695
1695
  * <p>Information about the resource for each individual EKS cluster.</p>
@@ -1700,24 +1700,24 @@ export interface CoverageResourceDetails {
1700
1700
  * <p>EKS cluster details involved in the coverage statistics.</p>
1701
1701
  * @public
1702
1702
  */
1703
- EksClusterDetails?: CoverageEksClusterDetails;
1703
+ EksClusterDetails?: CoverageEksClusterDetails | undefined;
1704
1704
  /**
1705
1705
  * <p>The type of Amazon Web Services resource.</p>
1706
1706
  * @public
1707
1707
  */
1708
- ResourceType?: ResourceType;
1708
+ ResourceType?: ResourceType | undefined;
1709
1709
  /**
1710
1710
  * <p>Information about the Amazon ECS cluster that is assessed for
1711
1711
  * runtime coverage.</p>
1712
1712
  * @public
1713
1713
  */
1714
- EcsClusterDetails?: CoverageEcsClusterDetails;
1714
+ EcsClusterDetails?: CoverageEcsClusterDetails | undefined;
1715
1715
  /**
1716
1716
  * <p>Information about the Amazon EC2 instance assessed
1717
1717
  * for runtime coverage.</p>
1718
1718
  * @public
1719
1719
  */
1720
- Ec2InstanceDetails?: CoverageEc2InstanceDetails;
1720
+ Ec2InstanceDetails?: CoverageEc2InstanceDetails | undefined;
1721
1721
  }
1722
1722
  /**
1723
1723
  * <p>Information about the resource of the GuardDuty account.</p>
@@ -1728,39 +1728,39 @@ export interface CoverageResource {
1728
1728
  * <p>The unique ID of the resource.</p>
1729
1729
  * @public
1730
1730
  */
1731
- ResourceId?: string;
1731
+ ResourceId?: string | undefined;
1732
1732
  /**
1733
1733
  * <p>The unique ID of the GuardDuty detector associated with the resource.</p>
1734
1734
  * @public
1735
1735
  */
1736
- DetectorId?: string;
1736
+ DetectorId?: string | undefined;
1737
1737
  /**
1738
1738
  * <p>The unique ID of the Amazon Web Services account.</p>
1739
1739
  * @public
1740
1740
  */
1741
- AccountId?: string;
1741
+ AccountId?: string | undefined;
1742
1742
  /**
1743
1743
  * <p>Information about the resource for which the coverage statistics are retrieved.</p>
1744
1744
  * @public
1745
1745
  */
1746
- ResourceDetails?: CoverageResourceDetails;
1746
+ ResourceDetails?: CoverageResourceDetails | undefined;
1747
1747
  /**
1748
1748
  * <p>Represents the status of the EKS cluster coverage.</p>
1749
1749
  * @public
1750
1750
  */
1751
- CoverageStatus?: CoverageStatus;
1751
+ CoverageStatus?: CoverageStatus | undefined;
1752
1752
  /**
1753
1753
  * <p>Represents the reason why a coverage status was <code>UNHEALTHY</code> for the EKS
1754
1754
  * cluster.</p>
1755
1755
  * @public
1756
1756
  */
1757
- Issue?: string;
1757
+ Issue?: string | undefined;
1758
1758
  /**
1759
1759
  * <p>The timestamp at which the coverage details for the resource were last updated. This is in
1760
1760
  * UTC format.</p>
1761
1761
  * @public
1762
1762
  */
1763
- UpdatedAt?: Date;
1763
+ UpdatedAt?: Date | undefined;
1764
1764
  }
1765
1765
  /**
1766
1766
  * @public
@@ -1806,12 +1806,12 @@ export interface CoverageSortCriteria {
1806
1806
  * </note>
1807
1807
  * @public
1808
1808
  */
1809
- AttributeName?: CoverageSortKey;
1809
+ AttributeName?: CoverageSortKey | undefined;
1810
1810
  /**
1811
1811
  * <p>The order in which the sorted findings are to be displayed.</p>
1812
1812
  * @public
1813
1813
  */
1814
- OrderBy?: OrderBy;
1814
+ OrderBy?: OrderBy | undefined;
1815
1815
  }
1816
1816
  /**
1817
1817
  * <p>Information about the coverage statistics for a resource.</p>
@@ -1822,12 +1822,12 @@ export interface CoverageStatistics {
1822
1822
  * <p>Represents coverage statistics for EKS clusters aggregated by resource type.</p>
1823
1823
  * @public
1824
1824
  */
1825
- CountByResourceType?: Partial<Record<ResourceType, number>>;
1825
+ CountByResourceType?: Partial<Record<ResourceType, number>> | undefined;
1826
1826
  /**
1827
1827
  * <p>Represents coverage statistics for EKS clusters aggregated by coverage status.</p>
1828
1828
  * @public
1829
1829
  */
1830
- CountByCoverageStatus?: Partial<Record<CoverageStatus, number>>;
1830
+ CountByCoverageStatus?: Partial<Record<CoverageStatus, number>> | undefined;
1831
1831
  }
1832
1832
  /**
1833
1833
  * @public
@@ -1873,7 +1873,7 @@ export interface ScanEc2InstanceWithFindings {
1873
1873
  * <p>Describes the configuration for scanning EBS volumes as data source.</p>
1874
1874
  * @public
1875
1875
  */
1876
- EbsVolumes?: boolean;
1876
+ EbsVolumes?: boolean | undefined;
1877
1877
  }
1878
1878
  /**
1879
1879
  * <p>Describes whether Malware Protection will be enabled as a data source.</p>
@@ -1884,7 +1884,7 @@ export interface MalwareProtectionConfiguration {
1884
1884
  * <p>Describes the configuration of Malware Protection for EC2 instances with findings.</p>
1885
1885
  * @public
1886
1886
  */
1887
- ScanEc2InstanceWithFindings?: ScanEc2InstanceWithFindings;
1887
+ ScanEc2InstanceWithFindings?: ScanEc2InstanceWithFindings | undefined;
1888
1888
  }
1889
1889
  /**
1890
1890
  * <p>Describes whether S3 data event logs will be enabled as a data source.</p>
@@ -1906,17 +1906,17 @@ export interface DataSourceConfigurations {
1906
1906
  * <p>Describes whether S3 data event logs are enabled as a data source.</p>
1907
1907
  * @public
1908
1908
  */
1909
- S3Logs?: S3LogsConfiguration;
1909
+ S3Logs?: S3LogsConfiguration | undefined;
1910
1910
  /**
1911
1911
  * <p>Describes whether any Kubernetes logs are enabled as data sources.</p>
1912
1912
  * @public
1913
1913
  */
1914
- Kubernetes?: KubernetesConfiguration;
1914
+ Kubernetes?: KubernetesConfiguration | undefined;
1915
1915
  /**
1916
1916
  * <p>Describes whether Malware Protection is enabled as a data source.</p>
1917
1917
  * @public
1918
1918
  */
1919
- MalwareProtection?: MalwareProtectionConfiguration;
1919
+ MalwareProtection?: MalwareProtectionConfiguration | undefined;
1920
1920
  }
1921
1921
  /**
1922
1922
  * @public
@@ -1952,12 +1952,12 @@ export interface DetectorAdditionalConfiguration {
1952
1952
  * <p>Name of the additional configuration.</p>
1953
1953
  * @public
1954
1954
  */
1955
- Name?: FeatureAdditionalConfiguration;
1955
+ Name?: FeatureAdditionalConfiguration | undefined;
1956
1956
  /**
1957
1957
  * <p>Status of the additional configuration.</p>
1958
1958
  * @public
1959
1959
  */
1960
- Status?: FeatureStatus;
1960
+ Status?: FeatureStatus | undefined;
1961
1961
  }
1962
1962
  /**
1963
1963
  * @public
@@ -1990,17 +1990,17 @@ export interface DetectorFeatureConfiguration {
1990
1990
  * <p>The name of the feature.</p>
1991
1991
  * @public
1992
1992
  */
1993
- Name?: DetectorFeature;
1993
+ Name?: DetectorFeature | undefined;
1994
1994
  /**
1995
1995
  * <p>The status of the feature.</p>
1996
1996
  * @public
1997
1997
  */
1998
- Status?: FeatureStatus;
1998
+ Status?: FeatureStatus | undefined;
1999
1999
  /**
2000
2000
  * <p>Additional configuration for a resource.</p>
2001
2001
  * @public
2002
2002
  */
2003
- AdditionalConfiguration?: DetectorAdditionalConfiguration[];
2003
+ AdditionalConfiguration?: DetectorAdditionalConfiguration[] | undefined;
2004
2004
  }
2005
2005
  /**
2006
2006
  * @public
@@ -2028,12 +2028,12 @@ export interface CreateDetectorRequest {
2028
2028
  * <p>The idempotency token for the create request.</p>
2029
2029
  * @public
2030
2030
  */
2031
- ClientToken?: string;
2031
+ ClientToken?: string | undefined;
2032
2032
  /**
2033
2033
  * <p>A value that specifies how frequently updated findings are exported.</p>
2034
2034
  * @public
2035
2035
  */
2036
- FindingPublishingFrequency?: FindingPublishingFrequency;
2036
+ FindingPublishingFrequency?: FindingPublishingFrequency | undefined;
2037
2037
  /**
2038
2038
  * @deprecated
2039
2039
  *
@@ -2043,17 +2043,17 @@ export interface CreateDetectorRequest {
2043
2043
  * information, see <a href="https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_regions.html">Regions and endpoints</a>.</p>
2044
2044
  * @public
2045
2045
  */
2046
- DataSources?: DataSourceConfigurations;
2046
+ DataSources?: DataSourceConfigurations | undefined;
2047
2047
  /**
2048
2048
  * <p>The tags to be added to a new detector resource.</p>
2049
2049
  * @public
2050
2050
  */
2051
- Tags?: Record<string, string>;
2051
+ Tags?: Record<string, string> | undefined;
2052
2052
  /**
2053
2053
  * <p>A list of features that will be configured for the detector.</p>
2054
2054
  * @public
2055
2055
  */
2056
- Features?: DetectorFeatureConfiguration[];
2056
+ Features?: DetectorFeatureConfiguration[] | undefined;
2057
2057
  }
2058
2058
  /**
2059
2059
  * <p>Describes the configuration of scanning EBS volumes as a data source.</p>
@@ -2064,13 +2064,13 @@ export interface EbsVolumesResult {
2064
2064
  * <p>Describes whether scanning EBS volumes is enabled as a data source.</p>
2065
2065
  * @public
2066
2066
  */
2067
- Status?: DataSourceStatus;
2067
+ Status?: DataSourceStatus | undefined;
2068
2068
  /**
2069
2069
  * <p>Specifies the reason why scanning EBS volumes (Malware Protection) was not enabled as a
2070
2070
  * data source.</p>
2071
2071
  * @public
2072
2072
  */
2073
- Reason?: string;
2073
+ Reason?: string | undefined;
2074
2074
  }
2075
2075
  /**
2076
2076
  * <p>An object that contains information on the status of whether Malware Protection for EC2
@@ -2082,7 +2082,7 @@ export interface ScanEc2InstanceWithFindingsResult {
2082
2082
  * <p>Describes the configuration of scanning EBS volumes as a data source.</p>
2083
2083
  * @public
2084
2084
  */
2085
- EbsVolumes?: EbsVolumesResult;
2085
+ EbsVolumes?: EbsVolumesResult | undefined;
2086
2086
  }
2087
2087
  /**
2088
2088
  * <p>An object that contains information on the status of all Malware Protection data
@@ -2094,12 +2094,12 @@ export interface MalwareProtectionConfigurationResult {
2094
2094
  * <p>Describes the configuration of Malware Protection for EC2 instances with findings.</p>
2095
2095
  * @public
2096
2096
  */
2097
- ScanEc2InstanceWithFindings?: ScanEc2InstanceWithFindingsResult;
2097
+ ScanEc2InstanceWithFindings?: ScanEc2InstanceWithFindingsResult | undefined;
2098
2098
  /**
2099
2099
  * <p>The GuardDuty Malware Protection service role.</p>
2100
2100
  * @public
2101
2101
  */
2102
- ServiceRole?: string;
2102
+ ServiceRole?: string | undefined;
2103
2103
  }
2104
2104
  /**
2105
2105
  * <p>Specifies the names of the data sources that couldn't be enabled.</p>
@@ -2111,7 +2111,7 @@ export interface UnprocessedDataSourcesResult {
2111
2111
  * sources.</p>
2112
2112
  * @public
2113
2113
  */
2114
- MalwareProtection?: MalwareProtectionConfigurationResult;
2114
+ MalwareProtection?: MalwareProtectionConfigurationResult | undefined;
2115
2115
  }
2116
2116
  /**
2117
2117
  * @public
@@ -2121,13 +2121,13 @@ export interface CreateDetectorResponse {
2121
2121
  * <p>The unique ID of the created detector.</p>
2122
2122
  * @public
2123
2123
  */
2124
- DetectorId?: string;
2124
+ DetectorId?: string | undefined;
2125
2125
  /**
2126
2126
  * <p>Specifies the data sources that couldn't be enabled when GuardDuty was enabled for the
2127
2127
  * first time.</p>
2128
2128
  * @public
2129
2129
  */
2130
- UnprocessedDataSources?: UnprocessedDataSourcesResult;
2130
+ UnprocessedDataSources?: UnprocessedDataSourcesResult | undefined;
2131
2131
  }
2132
2132
  /**
2133
2133
  * @public
@@ -2151,7 +2151,7 @@ export interface FindingCriteria {
2151
2151
  * querying findings.</p>
2152
2152
  * @public
2153
2153
  */
2154
- Criterion?: Record<string, Condition>;
2154
+ Criterion?: Record<string, Condition> | undefined;
2155
2155
  }
2156
2156
  /**
2157
2157
  * @public
@@ -2177,18 +2177,18 @@ export interface CreateFilterRequest {
2177
2177
  * newline, form feed, return, and whitespace.</p>
2178
2178
  * @public
2179
2179
  */
2180
- Description?: string;
2180
+ Description?: string | undefined;
2181
2181
  /**
2182
2182
  * <p>Specifies the action that is to be applied to the findings that match the filter.</p>
2183
2183
  * @public
2184
2184
  */
2185
- Action?: FilterAction;
2185
+ Action?: FilterAction | undefined;
2186
2186
  /**
2187
2187
  * <p>Specifies the position of the filter in the list of current filters. Also specifies the
2188
2188
  * order in which this filter is applied to the findings.</p>
2189
2189
  * @public
2190
2190
  */
2191
- Rank?: number;
2191
+ Rank?: number | undefined;
2192
2192
  /**
2193
2193
  * <p>Represents the criteria to be used in the filter for querying findings.</p>
2194
2194
  * <p>You can only use the following attributes to query findings:</p>
@@ -2510,12 +2510,12 @@ export interface CreateFilterRequest {
2510
2510
  * <p>The idempotency token for the create request.</p>
2511
2511
  * @public
2512
2512
  */
2513
- ClientToken?: string;
2513
+ ClientToken?: string | undefined;
2514
2514
  /**
2515
2515
  * <p>The tags to be added to a new filter resource.</p>
2516
2516
  * @public
2517
2517
  */
2518
- Tags?: Record<string, string>;
2518
+ Tags?: Record<string, string> | undefined;
2519
2519
  }
2520
2520
  /**
2521
2521
  * @public
@@ -2580,12 +2580,12 @@ export interface CreateIPSetRequest {
2580
2580
  * <p>The idempotency token for the create request.</p>
2581
2581
  * @public
2582
2582
  */
2583
- ClientToken?: string;
2583
+ ClientToken?: string | undefined;
2584
2584
  /**
2585
2585
  * <p>The tags to be added to a new IP set resource.</p>
2586
2586
  * @public
2587
2587
  */
2588
- Tags?: Record<string, string>;
2588
+ Tags?: Record<string, string> | undefined;
2589
2589
  }
2590
2590
  /**
2591
2591
  * @public
@@ -2618,7 +2618,7 @@ export interface MalwareProtectionPlanTaggingAction {
2618
2618
  * <p>Indicates whether or not the tags will added.</p>
2619
2619
  * @public
2620
2620
  */
2621
- Status?: MalwareProtectionPlanTaggingActionStatus;
2621
+ Status?: MalwareProtectionPlanTaggingActionStatus | undefined;
2622
2622
  }
2623
2623
  /**
2624
2624
  * <p>Information about whether the tags will be added to the S3 object after scanning.</p>
@@ -2629,7 +2629,7 @@ export interface MalwareProtectionPlanActions {
2629
2629
  * <p>Indicates whether the scanned S3 object will have tags about the scan result.</p>
2630
2630
  * @public
2631
2631
  */
2632
- Tagging?: MalwareProtectionPlanTaggingAction;
2632
+ Tagging?: MalwareProtectionPlanTaggingAction | undefined;
2633
2633
  }
2634
2634
  /**
2635
2635
  * <p>Information about the protected S3 bucket resource.</p>
@@ -2640,13 +2640,13 @@ export interface CreateS3BucketResource {
2640
2640
  * <p>Name of the S3 bucket.</p>
2641
2641
  * @public
2642
2642
  */
2643
- BucketName?: string;
2643
+ BucketName?: string | undefined;
2644
2644
  /**
2645
2645
  * <p>Information about the specified object prefixes. The S3 object will be scanned only
2646
2646
  * if it belongs to any of the specified object prefixes.</p>
2647
2647
  * @public
2648
2648
  */
2649
- ObjectPrefixes?: string[];
2649
+ ObjectPrefixes?: string[] | undefined;
2650
2650
  }
2651
2651
  /**
2652
2652
  * <p>Information about the protected resource that
@@ -2660,7 +2660,7 @@ export interface CreateProtectedResource {
2660
2660
  * <p>Information about the protected S3 bucket resource.</p>
2661
2661
  * @public
2662
2662
  */
2663
- S3Bucket?: CreateS3BucketResource;
2663
+ S3Bucket?: CreateS3BucketResource | undefined;
2664
2664
  }
2665
2665
  /**
2666
2666
  * @public
@@ -2670,7 +2670,7 @@ export interface CreateMalwareProtectionPlanRequest {
2670
2670
  * <p>The idempotency token for the create request.</p>
2671
2671
  * @public
2672
2672
  */
2673
- ClientToken?: string;
2673
+ ClientToken?: string | undefined;
2674
2674
  /**
2675
2675
  * <p>Amazon Resource Name (ARN) of the IAM role that has the permissions to scan and add tags to the associated
2676
2676
  * protected resource.</p>
@@ -2688,12 +2688,12 @@ export interface CreateMalwareProtectionPlanRequest {
2688
2688
  * <p>Information about whether the tags will be added to the S3 object after scanning.</p>
2689
2689
  * @public
2690
2690
  */
2691
- Actions?: MalwareProtectionPlanActions;
2691
+ Actions?: MalwareProtectionPlanActions | undefined;
2692
2692
  /**
2693
2693
  * <p>Tags added to the Malware Protection plan resource. </p>
2694
2694
  * @public
2695
2695
  */
2696
- Tags?: Record<string, string>;
2696
+ Tags?: Record<string, string> | undefined;
2697
2697
  }
2698
2698
  /**
2699
2699
  * @public
@@ -2703,7 +2703,7 @@ export interface CreateMalwareProtectionPlanResponse {
2703
2703
  * <p>A unique identifier associated with the Malware Protection plan resource.</p>
2704
2704
  * @public
2705
2705
  */
2706
- MalwareProtectionPlanId?: string;
2706
+ MalwareProtectionPlanId?: string | undefined;
2707
2707
  }
2708
2708
  /**
2709
2709
  * @public
@@ -2764,12 +2764,12 @@ export interface DestinationProperties {
2764
2764
  * </p>
2765
2765
  * @public
2766
2766
  */
2767
- DestinationArn?: string;
2767
+ DestinationArn?: string | undefined;
2768
2768
  /**
2769
2769
  * <p>The ARN of the KMS key to use for encryption.</p>
2770
2770
  * @public
2771
2771
  */
2772
- KmsKeyArn?: string;
2772
+ KmsKeyArn?: string | undefined;
2773
2773
  }
2774
2774
  /**
2775
2775
  * @public
@@ -2809,7 +2809,7 @@ export interface CreatePublishingDestinationRequest {
2809
2809
  * <p>The idempotency token for the request.</p>
2810
2810
  * @public
2811
2811
  */
2812
- ClientToken?: string;
2812
+ ClientToken?: string | undefined;
2813
2813
  }
2814
2814
  /**
2815
2815
  * @public
@@ -2836,7 +2836,7 @@ export interface CreateSampleFindingsRequest {
2836
2836
  * <p>The types of sample findings to generate.</p>
2837
2837
  * @public
2838
2838
  */
2839
- FindingTypes?: string[];
2839
+ FindingTypes?: string[] | undefined;
2840
2840
  }
2841
2841
  /**
2842
2842
  * @public
@@ -2897,12 +2897,12 @@ export interface CreateThreatIntelSetRequest {
2897
2897
  * <p>The idempotency token for the create request.</p>
2898
2898
  * @public
2899
2899
  */
2900
- ClientToken?: string;
2900
+ ClientToken?: string | undefined;
2901
2901
  /**
2902
2902
  * <p>The tags to be added to a new threat list resource.</p>
2903
2903
  * @public
2904
2904
  */
2905
- Tags?: Record<string, string>;
2905
+ Tags?: Record<string, string> | undefined;
2906
2906
  }
2907
2907
  /**
2908
2908
  * @public
@@ -3034,12 +3034,12 @@ export interface DataSourceConfigurationsResult {
3034
3034
  * <p>An object that contains information on the status of all Kubernetes data sources.</p>
3035
3035
  * @public
3036
3036
  */
3037
- Kubernetes?: KubernetesConfigurationResult;
3037
+ Kubernetes?: KubernetesConfigurationResult | undefined;
3038
3038
  /**
3039
3039
  * <p>Describes the configuration of Malware Protection data sources.</p>
3040
3040
  * @public
3041
3041
  */
3042
- MalwareProtection?: MalwareProtectionConfigurationResult;
3042
+ MalwareProtection?: MalwareProtectionConfigurationResult | undefined;
3043
3043
  }
3044
3044
  /**
3045
3045
  * <p>Represents list a map of dates with a count of total findings generated on each date.</p>
@@ -3052,22 +3052,22 @@ export interface DateStatistics {
3052
3052
  * whereas <code>LastGeneratedAt</code> would look like 2024-09-05T17:12:29-07:00".</p>
3053
3053
  * @public
3054
3054
  */
3055
- Date?: Date;
3055
+ Date?: Date | undefined;
3056
3056
  /**
3057
3057
  * <p>The timestamp at which the last finding in the findings count, was generated.</p>
3058
3058
  * @public
3059
3059
  */
3060
- LastGeneratedAt?: Date;
3060
+ LastGeneratedAt?: Date | undefined;
3061
3061
  /**
3062
3062
  * <p>The severity of the findings generated on each date.</p>
3063
3063
  * @public
3064
3064
  */
3065
- Severity?: number;
3065
+ Severity?: number | undefined;
3066
3066
  /**
3067
3067
  * <p>The total number of findings that were generated per severity level on each date.</p>
3068
3068
  * @public
3069
3069
  */
3070
- TotalFindings?: number;
3070
+ TotalFindings?: number | undefined;
3071
3071
  }
3072
3072
  /**
3073
3073
  * @public
@@ -3102,13 +3102,13 @@ export interface DefaultServerSideEncryption {
3102
3102
  * <p>The type of encryption used for objects within the S3 bucket.</p>
3103
3103
  * @public
3104
3104
  */
3105
- EncryptionType?: string;
3105
+ EncryptionType?: string | undefined;
3106
3106
  /**
3107
3107
  * <p>The Amazon Resource Name (ARN) of the KMS encryption key. Only available if the bucket
3108
3108
  * <code>EncryptionType</code> is <code>aws:kms</code>.</p>
3109
3109
  * @public
3110
3110
  */
3111
- KmsMasterKeyArn?: string;
3111
+ KmsMasterKeyArn?: string | undefined;
3112
3112
  }
3113
3113
  /**
3114
3114
  * @public
@@ -3214,12 +3214,12 @@ export declare class ResourceNotFoundException extends __BaseException {
3214
3214
  * <p>The error message.</p>
3215
3215
  * @public
3216
3216
  */
3217
- Message?: string;
3217
+ Message?: string | undefined;
3218
3218
  /**
3219
3219
  * <p>The error type.</p>
3220
3220
  * @public
3221
3221
  */
3222
- Type?: string;
3222
+ Type?: string | undefined;
3223
3223
  /**
3224
3224
  * @internal
3225
3225
  */
@@ -3308,19 +3308,19 @@ export interface FilterCondition {
3308
3308
  * a single field when querying for scan entries.</p>
3309
3309
  * @public
3310
3310
  */
3311
- EqualsValue?: string;
3311
+ EqualsValue?: string | undefined;
3312
3312
  /**
3313
3313
  * <p>Represents a <i>greater than</i> condition to be applied to a single field
3314
3314
  * when querying for scan entries.</p>
3315
3315
  * @public
3316
3316
  */
3317
- GreaterThan?: number;
3317
+ GreaterThan?: number | undefined;
3318
3318
  /**
3319
3319
  * <p>Represents a <i>less than</i> condition to be applied to a single field when
3320
3320
  * querying for scan entries.</p>
3321
3321
  * @public
3322
3322
  */
3323
- LessThan?: number;
3323
+ LessThan?: number | undefined;
3324
3324
  }
3325
3325
  /**
3326
3326
  * <p>Represents a condition that when matched will be added to the response of the operation.
@@ -3339,12 +3339,12 @@ export interface FilterCriterion {
3339
3339
  * </note>
3340
3340
  * @public
3341
3341
  */
3342
- CriterionKey?: CriterionKey;
3342
+ CriterionKey?: CriterionKey | undefined;
3343
3343
  /**
3344
3344
  * <p>Contains information about the condition.</p>
3345
3345
  * @public
3346
3346
  */
3347
- FilterCondition?: FilterCondition;
3347
+ FilterCondition?: FilterCondition | undefined;
3348
3348
  }
3349
3349
  /**
3350
3350
  * <p>Represents the criteria to be used in the filter for describing scan entries.</p>
@@ -3356,7 +3356,7 @@ export interface FilterCriteria {
3356
3356
  * operation.</p>
3357
3357
  * @public
3358
3358
  */
3359
- FilterCriterion?: FilterCriterion[];
3359
+ FilterCriterion?: FilterCriterion[] | undefined;
3360
3360
  }
3361
3361
  /**
3362
3362
  * <p>Contains information about the criteria used for sorting findings.</p>
@@ -3368,12 +3368,12 @@ export interface SortCriteria {
3368
3368
  * findings.</p>
3369
3369
  * @public
3370
3370
  */
3371
- AttributeName?: string;
3371
+ AttributeName?: string | undefined;
3372
3372
  /**
3373
3373
  * <p>The order by which the sorted findings are to be displayed.</p>
3374
3374
  * @public
3375
3375
  */
3376
- OrderBy?: OrderBy;
3376
+ OrderBy?: OrderBy | undefined;
3377
3377
  }
3378
3378
  /**
3379
3379
  * @public
@@ -3393,18 +3393,18 @@ export interface DescribeMalwareScansRequest {
3393
3393
  * data.</p>
3394
3394
  * @public
3395
3395
  */
3396
- NextToken?: string;
3396
+ NextToken?: string | undefined;
3397
3397
  /**
3398
3398
  * <p>You can use this parameter to indicate the maximum number of items that you want in the
3399
3399
  * response. The default value is 50. The maximum value is 50.</p>
3400
3400
  * @public
3401
3401
  */
3402
- MaxResults?: number;
3402
+ MaxResults?: number | undefined;
3403
3403
  /**
3404
3404
  * <p>Represents the criteria to be used in the filter for describing scan entries.</p>
3405
3405
  * @public
3406
3406
  */
3407
- FilterCriteria?: FilterCriteria;
3407
+ FilterCriteria?: FilterCriteria | undefined;
3408
3408
  /**
3409
3409
  * <p>Represents the criteria used for sorting scan entries. The <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_SortCriteria.html#guardduty-Type-SortCriteria-attributeName">
3410
3410
  * <code>attributeName</code>
@@ -3412,7 +3412,7 @@ export interface DescribeMalwareScansRequest {
3412
3412
  * <code>scanStartTime</code>.</p>
3413
3413
  * @public
3414
3414
  */
3415
- SortCriteria?: SortCriteria;
3415
+ SortCriteria?: SortCriteria | undefined;
3416
3416
  }
3417
3417
  /**
3418
3418
  * <p>Contains EBS volume details.</p>
@@ -3423,37 +3423,37 @@ export interface VolumeDetail {
3423
3423
  * <p>EBS volume ARN information.</p>
3424
3424
  * @public
3425
3425
  */
3426
- VolumeArn?: string;
3426
+ VolumeArn?: string | undefined;
3427
3427
  /**
3428
3428
  * <p>The EBS volume type.</p>
3429
3429
  * @public
3430
3430
  */
3431
- VolumeType?: string;
3431
+ VolumeType?: string | undefined;
3432
3432
  /**
3433
3433
  * <p>The device name for the EBS volume.</p>
3434
3434
  * @public
3435
3435
  */
3436
- DeviceName?: string;
3436
+ DeviceName?: string | undefined;
3437
3437
  /**
3438
3438
  * <p>EBS volume size in GB.</p>
3439
3439
  * @public
3440
3440
  */
3441
- VolumeSizeInGB?: number;
3441
+ VolumeSizeInGB?: number | undefined;
3442
3442
  /**
3443
3443
  * <p>EBS volume encryption type.</p>
3444
3444
  * @public
3445
3445
  */
3446
- EncryptionType?: string;
3446
+ EncryptionType?: string | undefined;
3447
3447
  /**
3448
3448
  * <p>Snapshot ARN of the EBS volume.</p>
3449
3449
  * @public
3450
3450
  */
3451
- SnapshotArn?: string;
3451
+ SnapshotArn?: string | undefined;
3452
3452
  /**
3453
3453
  * <p>KMS key ARN used to encrypt the EBS volume.</p>
3454
3454
  * @public
3455
3455
  */
3456
- KmsKeyArn?: string;
3456
+ KmsKeyArn?: string | undefined;
3457
3457
  }
3458
3458
  /**
3459
3459
  * <p>Represents the resources that were scanned in the scan entry.</p>
@@ -3464,7 +3464,7 @@ export interface ResourceDetails {
3464
3464
  * <p>Instance ARN that was scanned in the scan entry.</p>
3465
3465
  * @public
3466
3466
  */
3467
- InstanceArn?: string;
3467
+ InstanceArn?: string | undefined;
3468
3468
  }
3469
3469
  /**
3470
3470
  * @public
@@ -3487,7 +3487,7 @@ export interface ScanResultDetails {
3487
3487
  * <p>An enum value representing possible scan results.</p>
3488
3488
  * @public
3489
3489
  */
3490
- ScanResult?: ScanResult;
3490
+ ScanResult?: ScanResult | undefined;
3491
3491
  }
3492
3492
  /**
3493
3493
  * @public
@@ -3524,12 +3524,12 @@ export interface TriggerDetails {
3524
3524
  * <p>The ID of the GuardDuty finding that triggered the malware scan.</p>
3525
3525
  * @public
3526
3526
  */
3527
- GuardDutyFindingId?: string;
3527
+ GuardDutyFindingId?: string | undefined;
3528
3528
  /**
3529
3529
  * <p>The description of the scan trigger.</p>
3530
3530
  * @public
3531
3531
  */
3532
- Description?: string;
3532
+ Description?: string | undefined;
3533
3533
  }
3534
3534
  /**
3535
3535
  * <p>Contains information about a malware scan.</p>
@@ -3542,7 +3542,7 @@ export interface Scan {
3542
3542
  * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
3543
3543
  * @public
3544
3544
  */
3545
- DetectorId?: string;
3545
+ DetectorId?: string | undefined;
3546
3546
  /**
3547
3547
  * <p>The unique detector ID of the administrator account that the request is associated with.
3548
3548
  * If the account is an administrator, the <code>AdminDetectorId</code> will be the same as the one used for
@@ -3551,72 +3551,72 @@ export interface Scan {
3551
3551
  * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
3552
3552
  * @public
3553
3553
  */
3554
- AdminDetectorId?: string;
3554
+ AdminDetectorId?: string | undefined;
3555
3555
  /**
3556
3556
  * <p>The unique scan ID associated with a scan entry.</p>
3557
3557
  * @public
3558
3558
  */
3559
- ScanId?: string;
3559
+ ScanId?: string | undefined;
3560
3560
  /**
3561
3561
  * <p>An enum value representing possible scan statuses.</p>
3562
3562
  * @public
3563
3563
  */
3564
- ScanStatus?: ScanStatus;
3564
+ ScanStatus?: ScanStatus | undefined;
3565
3565
  /**
3566
3566
  * <p>Represents the reason for FAILED scan status.</p>
3567
3567
  * @public
3568
3568
  */
3569
- FailureReason?: string;
3569
+ FailureReason?: string | undefined;
3570
3570
  /**
3571
3571
  * <p>The timestamp of when the scan was triggered.</p>
3572
3572
  * @public
3573
3573
  */
3574
- ScanStartTime?: Date;
3574
+ ScanStartTime?: Date | undefined;
3575
3575
  /**
3576
3576
  * <p>The timestamp of when the scan was finished.</p>
3577
3577
  * @public
3578
3578
  */
3579
- ScanEndTime?: Date;
3579
+ ScanEndTime?: Date | undefined;
3580
3580
  /**
3581
3581
  * <p>Specifies the reason why the scan was initiated.</p>
3582
3582
  * @public
3583
3583
  */
3584
- TriggerDetails?: TriggerDetails;
3584
+ TriggerDetails?: TriggerDetails | undefined;
3585
3585
  /**
3586
3586
  * <p>Represents the resources that were scanned in the scan entry.</p>
3587
3587
  * @public
3588
3588
  */
3589
- ResourceDetails?: ResourceDetails;
3589
+ ResourceDetails?: ResourceDetails | undefined;
3590
3590
  /**
3591
3591
  * <p>Represents the result of the scan.</p>
3592
3592
  * @public
3593
3593
  */
3594
- ScanResultDetails?: ScanResultDetails;
3594
+ ScanResultDetails?: ScanResultDetails | undefined;
3595
3595
  /**
3596
3596
  * <p>The ID for the account that belongs to the scan.</p>
3597
3597
  * @public
3598
3598
  */
3599
- AccountId?: string;
3599
+ AccountId?: string | undefined;
3600
3600
  /**
3601
3601
  * <p>Represents total bytes that were scanned.</p>
3602
3602
  * @public
3603
3603
  */
3604
- TotalBytes?: number;
3604
+ TotalBytes?: number | undefined;
3605
3605
  /**
3606
3606
  * <p>Represents the number of files that were scanned.</p>
3607
3607
  * @public
3608
3608
  */
3609
- FileCount?: number;
3609
+ FileCount?: number | undefined;
3610
3610
  /**
3611
3611
  * <p>List of volumes that were attached to the original instance to be scanned.</p>
3612
3612
  * @public
3613
3613
  */
3614
- AttachedVolumes?: VolumeDetail[];
3614
+ AttachedVolumes?: VolumeDetail[] | undefined;
3615
3615
  /**
3616
3616
  * <p>Specifies the scan type that invoked the malware scan.</p>
3617
3617
  * @public
3618
3618
  */
3619
- ScanType?: ScanType;
3619
+ ScanType?: ScanType | undefined;
3620
3620
  }
3621
3621
  /**
3622
3622
  * @public
@@ -3632,7 +3632,7 @@ export interface DescribeMalwareScansResponse {
3632
3632
  * items.</p>
3633
3633
  * @public
3634
3634
  */
3635
- NextToken?: string;
3635
+ NextToken?: string | undefined;
3636
3636
  }
3637
3637
  /**
3638
3638
  * @public
@@ -3650,7 +3650,7 @@ export interface DescribeOrganizationConfigurationRequest {
3650
3650
  * response.</p>
3651
3651
  * @public
3652
3652
  */
3653
- MaxResults?: number;
3653
+ MaxResults?: number | undefined;
3654
3654
  /**
3655
3655
  * <p>You can use this parameter when paginating results. Set the value of this parameter to
3656
3656
  * null on your first call to the list action. For subsequent calls to the action, fill
@@ -3658,7 +3658,7 @@ export interface DescribeOrganizationConfigurationRequest {
3658
3658
  * previous response to continue listing data.</p>
3659
3659
  * @public
3660
3660
  */
3661
- NextToken?: string;
3661
+ NextToken?: string | undefined;
3662
3662
  }
3663
3663
  /**
3664
3664
  * <p>The current configuration of Kubernetes audit logs as a data source for the
@@ -3696,7 +3696,7 @@ export interface OrganizationEbsVolumesResult {
3696
3696
  * for new members joining the organization.</p>
3697
3697
  * @public
3698
3698
  */
3699
- AutoEnable?: boolean;
3699
+ AutoEnable?: boolean | undefined;
3700
3700
  }
3701
3701
  /**
3702
3702
  * <p>An object that contains information on the status of scanning EC2 instances with findings
@@ -3708,7 +3708,7 @@ export interface OrganizationScanEc2InstanceWithFindingsResult {
3708
3708
  * <p>Describes the configuration for scanning EBS volumes for an organization.</p>
3709
3709
  * @public
3710
3710
  */
3711
- EbsVolumes?: OrganizationEbsVolumesResult;
3711
+ EbsVolumes?: OrganizationEbsVolumesResult | undefined;
3712
3712
  }
3713
3713
  /**
3714
3714
  * <p>An object that contains information on the status of all Malware Protection data source
@@ -3721,7 +3721,7 @@ export interface OrganizationMalwareProtectionConfigurationResult {
3721
3721
  * organization.</p>
3722
3722
  * @public
3723
3723
  */
3724
- ScanEc2InstanceWithFindings?: OrganizationScanEc2InstanceWithFindingsResult;
3724
+ ScanEc2InstanceWithFindings?: OrganizationScanEc2InstanceWithFindingsResult | undefined;
3725
3725
  }
3726
3726
  /**
3727
3727
  * <p>The current configuration of S3 data event logs as a data source for the
@@ -3751,12 +3751,12 @@ export interface OrganizationDataSourceConfigurationsResult {
3751
3751
  * <p>Describes the configuration of Kubernetes data sources.</p>
3752
3752
  * @public
3753
3753
  */
3754
- Kubernetes?: OrganizationKubernetesConfigurationResult;
3754
+ Kubernetes?: OrganizationKubernetesConfigurationResult | undefined;
3755
3755
  /**
3756
3756
  * <p>Describes the configuration of Malware Protection data source for an organization.</p>
3757
3757
  * @public
3758
3758
  */
3759
- MalwareProtection?: OrganizationMalwareProtectionConfigurationResult;
3759
+ MalwareProtection?: OrganizationMalwareProtectionConfigurationResult | undefined;
3760
3760
  }
3761
3761
  /**
3762
3762
  * @public
@@ -3794,7 +3794,7 @@ export interface OrganizationAdditionalConfigurationResult {
3794
3794
  * the organization.</p>
3795
3795
  * @public
3796
3796
  */
3797
- Name?: OrgFeatureAdditionalConfiguration;
3797
+ Name?: OrgFeatureAdditionalConfiguration | undefined;
3798
3798
  /**
3799
3799
  * <p>Describes the status of the additional configuration that is configured for the
3800
3800
  * member accounts within the organization. One of the following
@@ -3824,7 +3824,7 @@ export interface OrganizationAdditionalConfigurationResult {
3824
3824
  * </ul>
3825
3825
  * @public
3826
3826
  */
3827
- AutoEnable?: OrgFeatureStatus;
3827
+ AutoEnable?: OrgFeatureStatus | undefined;
3828
3828
  }
3829
3829
  /**
3830
3830
  * @public
@@ -3853,7 +3853,7 @@ export interface OrganizationFeatureConfigurationResult {
3853
3853
  * organization.</p>
3854
3854
  * @public
3855
3855
  */
3856
- Name?: OrgFeature;
3856
+ Name?: OrgFeature | undefined;
3857
3857
  /**
3858
3858
  * <p>Describes the status of the feature that is configured for the member accounts within
3859
3859
  * the organization.</p>
@@ -3880,13 +3880,13 @@ export interface OrganizationFeatureConfigurationResult {
3880
3880
  * </ul>
3881
3881
  * @public
3882
3882
  */
3883
- AutoEnable?: OrgFeatureStatus;
3883
+ AutoEnable?: OrgFeatureStatus | undefined;
3884
3884
  /**
3885
3885
  * <p>The additional configuration that is configured for the member accounts within the
3886
3886
  * organization.</p>
3887
3887
  * @public
3888
3888
  */
3889
- AdditionalConfiguration?: OrganizationAdditionalConfigurationResult[];
3889
+ AdditionalConfiguration?: OrganizationAdditionalConfigurationResult[] | undefined;
3890
3890
  }
3891
3891
  /**
3892
3892
  * @public
@@ -3901,7 +3901,7 @@ export interface DescribeOrganizationConfigurationResponse {
3901
3901
  * <code>AutoEnableOrganizationMembers</code> to achieve the similar results.</p>
3902
3902
  * @public
3903
3903
  */
3904
- AutoEnable?: boolean;
3904
+ AutoEnable?: boolean | undefined;
3905
3905
  /**
3906
3906
  * <p>Indicates whether the maximum number of allowed member accounts are already associated
3907
3907
  * with the delegated administrator account for your organization.</p>
@@ -3914,18 +3914,18 @@ export interface DescribeOrganizationConfigurationResponse {
3914
3914
  * <p>Describes which data sources are enabled automatically for member accounts.</p>
3915
3915
  * @public
3916
3916
  */
3917
- DataSources?: OrganizationDataSourceConfigurationsResult;
3917
+ DataSources?: OrganizationDataSourceConfigurationsResult | undefined;
3918
3918
  /**
3919
3919
  * <p>A list of features that are configured for this organization.</p>
3920
3920
  * @public
3921
3921
  */
3922
- Features?: OrganizationFeatureConfigurationResult[];
3922
+ Features?: OrganizationFeatureConfigurationResult[] | undefined;
3923
3923
  /**
3924
3924
  * <p>The pagination parameter to be used on the next list operation to retrieve more
3925
3925
  * items.</p>
3926
3926
  * @public
3927
3927
  */
3928
- NextToken?: string;
3928
+ NextToken?: string | undefined;
3929
3929
  /**
3930
3930
  * <p>Indicates the auto-enablement configuration of GuardDuty or any of the corresponding protection plans for the member accounts in the
3931
3931
  * organization.</p>
@@ -3956,7 +3956,7 @@ export interface DescribeOrganizationConfigurationResponse {
3956
3956
  * </ul>
3957
3957
  * @public
3958
3958
  */
3959
- AutoEnableOrganizationMembers?: AutoEnableMembers;
3959
+ AutoEnableOrganizationMembers?: AutoEnableMembers | undefined;
3960
3960
  }
3961
3961
  /**
3962
3962
  * @public
@@ -4056,7 +4056,7 @@ export interface Detection {
4056
4056
  * generate the finding.</p>
4057
4057
  * @public
4058
4058
  */
4059
- Anomaly?: Anomaly;
4059
+ Anomaly?: Anomaly | undefined;
4060
4060
  }
4061
4061
  /**
4062
4062
  * <p>Information about the additional configuration.</p>
@@ -4067,18 +4067,18 @@ export interface DetectorAdditionalConfigurationResult {
4067
4067
  * <p>Name of the additional configuration.</p>
4068
4068
  * @public
4069
4069
  */
4070
- Name?: FeatureAdditionalConfiguration;
4070
+ Name?: FeatureAdditionalConfiguration | undefined;
4071
4071
  /**
4072
4072
  * <p>Status of the additional configuration.</p>
4073
4073
  * @public
4074
4074
  */
4075
- Status?: FeatureStatus;
4075
+ Status?: FeatureStatus | undefined;
4076
4076
  /**
4077
4077
  * <p>The timestamp at which the additional configuration was last updated. This is in UTC
4078
4078
  * format.</p>
4079
4079
  * @public
4080
4080
  */
4081
- UpdatedAt?: Date;
4081
+ UpdatedAt?: Date | undefined;
4082
4082
  }
4083
4083
  /**
4084
4084
  * @public
@@ -4114,22 +4114,22 @@ export interface DetectorFeatureConfigurationResult {
4114
4114
  * <p>Indicates the name of the feature that can be enabled for the detector.</p>
4115
4115
  * @public
4116
4116
  */
4117
- Name?: DetectorFeatureResult;
4117
+ Name?: DetectorFeatureResult | undefined;
4118
4118
  /**
4119
4119
  * <p>Indicates the status of the feature that is enabled for the detector.</p>
4120
4120
  * @public
4121
4121
  */
4122
- Status?: FeatureStatus;
4122
+ Status?: FeatureStatus | undefined;
4123
4123
  /**
4124
4124
  * <p>The timestamp at which the feature object was updated.</p>
4125
4125
  * @public
4126
4126
  */
4127
- UpdatedAt?: Date;
4127
+ UpdatedAt?: Date | undefined;
4128
4128
  /**
4129
4129
  * <p>Additional configuration for a resource.</p>
4130
4130
  * @public
4131
4131
  */
4132
- AdditionalConfiguration?: DetectorAdditionalConfigurationResult[];
4132
+ AdditionalConfiguration?: DetectorAdditionalConfigurationResult[] | undefined;
4133
4133
  }
4134
4134
  /**
4135
4135
  * @public
@@ -4238,12 +4238,12 @@ export interface EbsVolumeDetails {
4238
4238
  * <p>List of EBS volumes that were scanned.</p>
4239
4239
  * @public
4240
4240
  */
4241
- ScannedVolumeDetails?: VolumeDetail[];
4241
+ ScannedVolumeDetails?: VolumeDetail[] | undefined;
4242
4242
  /**
4243
4243
  * <p>List of EBS volumes that were skipped from the malware scan.</p>
4244
4244
  * @public
4245
4245
  */
4246
- SkippedVolumeDetails?: VolumeDetail[];
4246
+ SkippedVolumeDetails?: VolumeDetail[] | undefined;
4247
4247
  }
4248
4248
  /**
4249
4249
  * <p>Contains details of the highest severity threat detected during scan and number of
@@ -4255,17 +4255,17 @@ export interface HighestSeverityThreatDetails {
4255
4255
  * <p>Severity level of the highest severity threat detected.</p>
4256
4256
  * @public
4257
4257
  */
4258
- Severity?: string;
4258
+ Severity?: string | undefined;
4259
4259
  /**
4260
4260
  * <p>Threat name of the highest severity threat detected as part of the malware scan.</p>
4261
4261
  * @public
4262
4262
  */
4263
- ThreatName?: string;
4263
+ ThreatName?: string | undefined;
4264
4264
  /**
4265
4265
  * <p>Total number of infected files with the highest severity threat detected.</p>
4266
4266
  * @public
4267
4267
  */
4268
- Count?: number;
4268
+ Count?: number | undefined;
4269
4269
  }
4270
4270
  /**
4271
4271
  * <p>Total number of scanned files.</p>
@@ -4276,17 +4276,17 @@ export interface ScannedItemCount {
4276
4276
  * <p>Total GB of files scanned for malware.</p>
4277
4277
  * @public
4278
4278
  */
4279
- TotalGb?: number;
4279
+ TotalGb?: number | undefined;
4280
4280
  /**
4281
4281
  * <p>Number of files scanned.</p>
4282
4282
  * @public
4283
4283
  */
4284
- Files?: number;
4284
+ Files?: number | undefined;
4285
4285
  /**
4286
4286
  * <p>Total number of scanned volumes.</p>
4287
4287
  * @public
4288
4288
  */
4289
- Volumes?: number;
4289
+ Volumes?: number | undefined;
4290
4290
  }
4291
4291
  /**
4292
4292
  * <p>Contains details of infected file including name, file path and hash.</p>
@@ -4297,22 +4297,22 @@ export interface ScanFilePath {
4297
4297
  * <p>The file path of the infected file.</p>
4298
4298
  * @public
4299
4299
  */
4300
- FilePath?: string;
4300
+ FilePath?: string | undefined;
4301
4301
  /**
4302
4302
  * <p>EBS volume ARN details of the infected file.</p>
4303
4303
  * @public
4304
4304
  */
4305
- VolumeArn?: string;
4305
+ VolumeArn?: string | undefined;
4306
4306
  /**
4307
4307
  * <p>The hash value of the infected file.</p>
4308
4308
  * @public
4309
4309
  */
4310
- Hash?: string;
4310
+ Hash?: string | undefined;
4311
4311
  /**
4312
4312
  * <p>File name of the infected file.</p>
4313
4313
  * @public
4314
4314
  */
4315
- FileName?: string;
4315
+ FileName?: string | undefined;
4316
4316
  }
4317
4317
  /**
4318
4318
  * <p>Contains files infected with the given threat providing details of malware name and
@@ -4324,22 +4324,22 @@ export interface ScanThreatName {
4324
4324
  * <p>The name of the identified threat.</p>
4325
4325
  * @public
4326
4326
  */
4327
- Name?: string;
4327
+ Name?: string | undefined;
4328
4328
  /**
4329
4329
  * <p>Severity of threat identified as part of the malware scan.</p>
4330
4330
  * @public
4331
4331
  */
4332
- Severity?: string;
4332
+ Severity?: string | undefined;
4333
4333
  /**
4334
4334
  * <p>Total number of files infected with given threat.</p>
4335
4335
  * @public
4336
4336
  */
4337
- ItemCount?: number;
4337
+ ItemCount?: number | undefined;
4338
4338
  /**
4339
4339
  * <p>List of infected files in EBS volume with details.</p>
4340
4340
  * @public
4341
4341
  */
4342
- FilePaths?: ScanFilePath[];
4342
+ FilePaths?: ScanFilePath[] | undefined;
4343
4343
  }
4344
4344
  /**
4345
4345
  * <p>Contains details about identified threats organized by threat name.</p>
@@ -4350,23 +4350,23 @@ export interface ThreatDetectedByName {
4350
4350
  * <p>Total number of infected files identified.</p>
4351
4351
  * @public
4352
4352
  */
4353
- ItemCount?: number;
4353
+ ItemCount?: number | undefined;
4354
4354
  /**
4355
4355
  * <p>Total number of unique threats by name identified, as part of the malware scan.</p>
4356
4356
  * @public
4357
4357
  */
4358
- UniqueThreatNameCount?: number;
4358
+ UniqueThreatNameCount?: number | undefined;
4359
4359
  /**
4360
4360
  * <p>Flag to determine if the finding contains every single infected file-path and/or every
4361
4361
  * threat.</p>
4362
4362
  * @public
4363
4363
  */
4364
- Shortened?: boolean;
4364
+ Shortened?: boolean | undefined;
4365
4365
  /**
4366
4366
  * <p>List of identified threats with details, organized by threat name.</p>
4367
4367
  * @public
4368
4368
  */
4369
- ThreatNames?: ScanThreatName[];
4369
+ ThreatNames?: ScanThreatName[] | undefined;
4370
4370
  }
4371
4371
  /**
4372
4372
  * <p>Contains total number of infected files.</p>
@@ -4377,7 +4377,7 @@ export interface ThreatsDetectedItemCount {
4377
4377
  * <p>Total number of infected files.</p>
4378
4378
  * @public
4379
4379
  */
4380
- Files?: number;
4380
+ Files?: number | undefined;
4381
4381
  }
4382
4382
  /**
4383
4383
  * <p>Contains a complete view providing malware scan result details.</p>
@@ -4388,23 +4388,23 @@ export interface ScanDetections {
4388
4388
  * <p>Total number of scanned files.</p>
4389
4389
  * @public
4390
4390
  */
4391
- ScannedItemCount?: ScannedItemCount;
4391
+ ScannedItemCount?: ScannedItemCount | undefined;
4392
4392
  /**
4393
4393
  * <p>Total number of infected files.</p>
4394
4394
  * @public
4395
4395
  */
4396
- ThreatsDetectedItemCount?: ThreatsDetectedItemCount;
4396
+ ThreatsDetectedItemCount?: ThreatsDetectedItemCount | undefined;
4397
4397
  /**
4398
4398
  * <p>Details of the highest severity threat detected during malware scan and number of infected
4399
4399
  * files.</p>
4400
4400
  * @public
4401
4401
  */
4402
- HighestSeverityThreatDetails?: HighestSeverityThreatDetails;
4402
+ HighestSeverityThreatDetails?: HighestSeverityThreatDetails | undefined;
4403
4403
  /**
4404
4404
  * <p>Contains details about identified threats organized by threat name.</p>
4405
4405
  * @public
4406
4406
  */
4407
- ThreatDetectedByName?: ThreatDetectedByName;
4407
+ ThreatDetectedByName?: ThreatDetectedByName | undefined;
4408
4408
  }
4409
4409
  /**
4410
4410
  * <p>Contains details from the malware scan that created a finding.</p>
@@ -4415,37 +4415,37 @@ export interface EbsVolumeScanDetails {
4415
4415
  * <p>Unique Id of the malware scan that generated the finding.</p>
4416
4416
  * @public
4417
4417
  */
4418
- ScanId?: string;
4418
+ ScanId?: string | undefined;
4419
4419
  /**
4420
4420
  * <p>Returns the start date and time of the malware scan.</p>
4421
4421
  * @public
4422
4422
  */
4423
- ScanStartedAt?: Date;
4423
+ ScanStartedAt?: Date | undefined;
4424
4424
  /**
4425
4425
  * <p>Returns the completion date and time of the malware scan.</p>
4426
4426
  * @public
4427
4427
  */
4428
- ScanCompletedAt?: Date;
4428
+ ScanCompletedAt?: Date | undefined;
4429
4429
  /**
4430
4430
  * <p>GuardDuty finding ID that triggered a malware scan.</p>
4431
4431
  * @public
4432
4432
  */
4433
- TriggerFindingId?: string;
4433
+ TriggerFindingId?: string | undefined;
4434
4434
  /**
4435
4435
  * <p>Contains list of threat intelligence sources used to detect threats.</p>
4436
4436
  * @public
4437
4437
  */
4438
- Sources?: string[];
4438
+ Sources?: string[] | undefined;
4439
4439
  /**
4440
4440
  * <p>Contains a complete view providing malware scan result details.</p>
4441
4441
  * @public
4442
4442
  */
4443
- ScanDetections?: ScanDetections;
4443
+ ScanDetections?: ScanDetections | undefined;
4444
4444
  /**
4445
4445
  * <p>Specifies the scan type that invoked the malware scan.</p>
4446
4446
  * @public
4447
4447
  */
4448
- ScanType?: ScanType;
4448
+ ScanType?: ScanType | undefined;
4449
4449
  }
4450
4450
  /**
4451
4451
  * <p>Contains information about a tag key-value pair.</p>
@@ -4456,12 +4456,12 @@ export interface Tag {
4456
4456
  * <p>Describes the key associated with the tag.</p>
4457
4457
  * @public
4458
4458
  */
4459
- Key?: string;
4459
+ Key?: string | undefined;
4460
4460
  /**
4461
4461
  * <p>Describes the value associated with the tag key.</p>
4462
4462
  * @public
4463
4463
  */
4464
- Value?: string;
4464
+ Value?: string | undefined;
4465
4465
  }
4466
4466
  /**
4467
4467
  * <p>Represents a pre-existing file or directory on the host machine that the volume maps
@@ -4473,7 +4473,7 @@ export interface HostPath {
4473
4473
  * <p>Path of the file or directory on the host that the volume maps to.</p>
4474
4474
  * @public
4475
4475
  */
4476
- Path?: string;
4476
+ Path?: string | undefined;
4477
4477
  }
4478
4478
  /**
4479
4479
  * <p>Volume used by the Kubernetes workload.</p>
@@ -4484,13 +4484,13 @@ export interface Volume {
4484
4484
  * <p>Volume name.</p>
4485
4485
  * @public
4486
4486
  */
4487
- Name?: string;
4487
+ Name?: string | undefined;
4488
4488
  /**
4489
4489
  * <p>Represents a pre-existing file or directory on the host machine that the volume maps
4490
4490
  * to.</p>
4491
4491
  * @public
4492
4492
  */
4493
- HostPath?: HostPath;
4493
+ HostPath?: HostPath | undefined;
4494
4494
  }
4495
4495
  /**
4496
4496
  * <p>Contains information about the task in an ECS cluster.</p>
@@ -4501,57 +4501,57 @@ export interface EcsTaskDetails {
4501
4501
  * <p>The Amazon Resource Name (ARN) of the task.</p>
4502
4502
  * @public
4503
4503
  */
4504
- Arn?: string;
4504
+ Arn?: string | undefined;
4505
4505
  /**
4506
4506
  * <p>The ARN of the task definition that creates the task.</p>
4507
4507
  * @public
4508
4508
  */
4509
- DefinitionArn?: string;
4509
+ DefinitionArn?: string | undefined;
4510
4510
  /**
4511
4511
  * <p>The version counter for the task.</p>
4512
4512
  * @public
4513
4513
  */
4514
- Version?: string;
4514
+ Version?: string | undefined;
4515
4515
  /**
4516
4516
  * <p>The Unix timestamp for the time when the task was created.</p>
4517
4517
  * @public
4518
4518
  */
4519
- TaskCreatedAt?: Date;
4519
+ TaskCreatedAt?: Date | undefined;
4520
4520
  /**
4521
4521
  * <p>The Unix timestamp for the time when the task started.</p>
4522
4522
  * @public
4523
4523
  */
4524
- StartedAt?: Date;
4524
+ StartedAt?: Date | undefined;
4525
4525
  /**
4526
4526
  * <p>Contains the tag specified when a task is started.</p>
4527
4527
  * @public
4528
4528
  */
4529
- StartedBy?: string;
4529
+ StartedBy?: string | undefined;
4530
4530
  /**
4531
4531
  * <p>The tags of the ECS Task.</p>
4532
4532
  * @public
4533
4533
  */
4534
- Tags?: Tag[];
4534
+ Tags?: Tag[] | undefined;
4535
4535
  /**
4536
4536
  * <p>The list of data volume definitions for the task.</p>
4537
4537
  * @public
4538
4538
  */
4539
- Volumes?: Volume[];
4539
+ Volumes?: Volume[] | undefined;
4540
4540
  /**
4541
4541
  * <p>The containers that's associated with the task.</p>
4542
4542
  * @public
4543
4543
  */
4544
- Containers?: Container[];
4544
+ Containers?: Container[] | undefined;
4545
4545
  /**
4546
4546
  * <p>The name of the task group that's associated with the task.</p>
4547
4547
  * @public
4548
4548
  */
4549
- Group?: string;
4549
+ Group?: string | undefined;
4550
4550
  /**
4551
4551
  * <p>A capacity on which the task is running. For example, <code>Fargate</code> and <code>EC2</code>.</p>
4552
4552
  * @public
4553
4553
  */
4554
- LaunchType?: string;
4554
+ LaunchType?: string | undefined;
4555
4555
  }
4556
4556
  /**
4557
4557
  * <p>Contains information about the details of the ECS Cluster.</p>
@@ -4562,42 +4562,42 @@ export interface EcsClusterDetails {
4562
4562
  * <p>The name of the ECS Cluster.</p>
4563
4563
  * @public
4564
4564
  */
4565
- Name?: string;
4565
+ Name?: string | undefined;
4566
4566
  /**
4567
4567
  * <p>The Amazon Resource Name (ARN) that identifies the cluster.</p>
4568
4568
  * @public
4569
4569
  */
4570
- Arn?: string;
4570
+ Arn?: string | undefined;
4571
4571
  /**
4572
4572
  * <p>The status of the ECS cluster.</p>
4573
4573
  * @public
4574
4574
  */
4575
- Status?: string;
4575
+ Status?: string | undefined;
4576
4576
  /**
4577
4577
  * <p>The number of services that are running on the cluster in an ACTIVE state.</p>
4578
4578
  * @public
4579
4579
  */
4580
- ActiveServicesCount?: number;
4580
+ ActiveServicesCount?: number | undefined;
4581
4581
  /**
4582
4582
  * <p>The number of container instances registered into the cluster.</p>
4583
4583
  * @public
4584
4584
  */
4585
- RegisteredContainerInstancesCount?: number;
4585
+ RegisteredContainerInstancesCount?: number | undefined;
4586
4586
  /**
4587
4587
  * <p>The number of tasks in the cluster that are in the RUNNING state.</p>
4588
4588
  * @public
4589
4589
  */
4590
- RunningTasksCount?: number;
4590
+ RunningTasksCount?: number | undefined;
4591
4591
  /**
4592
4592
  * <p>The tags of the ECS Cluster.</p>
4593
4593
  * @public
4594
4594
  */
4595
- Tags?: Tag[];
4595
+ Tags?: Tag[] | undefined;
4596
4596
  /**
4597
4597
  * <p>Contains information about the details of the ECS Task.</p>
4598
4598
  * @public
4599
4599
  */
4600
- TaskDetails?: EcsTaskDetails;
4600
+ TaskDetails?: EcsTaskDetails | undefined;
4601
4601
  }
4602
4602
  /**
4603
4603
  * <p>Details about the EKS cluster involved in a Kubernetes finding.</p>
@@ -4608,32 +4608,32 @@ export interface EksClusterDetails {
4608
4608
  * <p>EKS cluster name.</p>
4609
4609
  * @public
4610
4610
  */
4611
- Name?: string;
4611
+ Name?: string | undefined;
4612
4612
  /**
4613
4613
  * <p>EKS cluster ARN.</p>
4614
4614
  * @public
4615
4615
  */
4616
- Arn?: string;
4616
+ Arn?: string | undefined;
4617
4617
  /**
4618
4618
  * <p>The VPC ID to which the EKS cluster is attached.</p>
4619
4619
  * @public
4620
4620
  */
4621
- VpcId?: string;
4621
+ VpcId?: string | undefined;
4622
4622
  /**
4623
4623
  * <p>The EKS cluster status.</p>
4624
4624
  * @public
4625
4625
  */
4626
- Status?: string;
4626
+ Status?: string | undefined;
4627
4627
  /**
4628
4628
  * <p>The EKS cluster tags.</p>
4629
4629
  * @public
4630
4630
  */
4631
- Tags?: Tag[];
4631
+ Tags?: Tag[] | undefined;
4632
4632
  /**
4633
4633
  * <p>The timestamp when the EKS cluster was created.</p>
4634
4634
  * @public
4635
4635
  */
4636
- CreatedAt?: Date;
4636
+ CreatedAt?: Date | undefined;
4637
4637
  }
4638
4638
  /**
4639
4639
  * @public
@@ -4661,18 +4661,18 @@ export interface ThreatIntelligenceDetail {
4661
4661
  * <p>The name of the threat intelligence list that triggered the finding.</p>
4662
4662
  * @public
4663
4663
  */
4664
- ThreatListName?: string;
4664
+ ThreatListName?: string | undefined;
4665
4665
  /**
4666
4666
  * <p>A list of names of the threats in the threat intelligence list that triggered the
4667
4667
  * finding.</p>
4668
4668
  * @public
4669
4669
  */
4670
- ThreatNames?: string[];
4670
+ ThreatNames?: string[] | undefined;
4671
4671
  /**
4672
4672
  * <p>SHA256 of the file that generated the finding.</p>
4673
4673
  * @public
4674
4674
  */
4675
- ThreatFileSha256?: string;
4675
+ ThreatFileSha256?: string | undefined;
4676
4676
  }
4677
4677
  /**
4678
4678
  * <p>Contains information about the reason that the finding was generated.</p>
@@ -4683,7 +4683,7 @@ export interface Evidence {
4683
4683
  * <p>A list of threat intelligence details related to the evidence.</p>
4684
4684
  * @public
4685
4685
  */
4686
- ThreatIntelligenceDetails?: ThreatIntelligenceDetail[];
4686
+ ThreatIntelligenceDetails?: ThreatIntelligenceDetail[] | undefined;
4687
4687
  }
4688
4688
  /**
4689
4689
  * @public
@@ -4706,12 +4706,12 @@ export interface IamInstanceProfile {
4706
4706
  * <p>The profile ARN of the EC2 instance.</p>
4707
4707
  * @public
4708
4708
  */
4709
- Arn?: string;
4709
+ Arn?: string | undefined;
4710
4710
  /**
4711
4711
  * <p>The profile ID of the EC2 instance.</p>
4712
4712
  * @public
4713
4713
  */
4714
- Id?: string;
4714
+ Id?: string | undefined;
4715
4715
  }
4716
4716
  /**
4717
4717
  * <p>Contains other private IP address information of the EC2 instance.</p>
@@ -4722,12 +4722,12 @@ export interface PrivateIpAddressDetails {
4722
4722
  * <p>The private DNS name of the EC2 instance.</p>
4723
4723
  * @public
4724
4724
  */
4725
- PrivateDnsName?: string;
4725
+ PrivateDnsName?: string | undefined;
4726
4726
  /**
4727
4727
  * <p>The private IP address of the EC2 instance.</p>
4728
4728
  * @public
4729
4729
  */
4730
- PrivateIpAddress?: string;
4730
+ PrivateIpAddress?: string | undefined;
4731
4731
  }
4732
4732
  /**
4733
4733
  * <p>Contains information about the security groups associated with the EC2 instance.</p>
@@ -4738,12 +4738,12 @@ export interface SecurityGroup {
4738
4738
  * <p>The security group ID of the EC2 instance.</p>
4739
4739
  * @public
4740
4740
  */
4741
- GroupId?: string;
4741
+ GroupId?: string | undefined;
4742
4742
  /**
4743
4743
  * <p>The security group name of the EC2 instance.</p>
4744
4744
  * @public
4745
4745
  */
4746
- GroupName?: string;
4746
+ GroupName?: string | undefined;
4747
4747
  }
4748
4748
  /**
4749
4749
  * <p>Contains information about the elastic network interface of the EC2 instance.</p>
@@ -4754,52 +4754,52 @@ export interface NetworkInterface {
4754
4754
  * <p>A list of IPv6 addresses for the EC2 instance.</p>
4755
4755
  * @public
4756
4756
  */
4757
- Ipv6Addresses?: string[];
4757
+ Ipv6Addresses?: string[] | undefined;
4758
4758
  /**
4759
4759
  * <p>The ID of the network interface.</p>
4760
4760
  * @public
4761
4761
  */
4762
- NetworkInterfaceId?: string;
4762
+ NetworkInterfaceId?: string | undefined;
4763
4763
  /**
4764
4764
  * <p>The private DNS name of the EC2 instance.</p>
4765
4765
  * @public
4766
4766
  */
4767
- PrivateDnsName?: string;
4767
+ PrivateDnsName?: string | undefined;
4768
4768
  /**
4769
4769
  * <p>The private IP address of the EC2 instance.</p>
4770
4770
  * @public
4771
4771
  */
4772
- PrivateIpAddress?: string;
4772
+ PrivateIpAddress?: string | undefined;
4773
4773
  /**
4774
4774
  * <p>Other private IP address information of the EC2 instance.</p>
4775
4775
  * @public
4776
4776
  */
4777
- PrivateIpAddresses?: PrivateIpAddressDetails[];
4777
+ PrivateIpAddresses?: PrivateIpAddressDetails[] | undefined;
4778
4778
  /**
4779
4779
  * <p>The public DNS name of the EC2 instance.</p>
4780
4780
  * @public
4781
4781
  */
4782
- PublicDnsName?: string;
4782
+ PublicDnsName?: string | undefined;
4783
4783
  /**
4784
4784
  * <p>The public IP address of the EC2 instance.</p>
4785
4785
  * @public
4786
4786
  */
4787
- PublicIp?: string;
4787
+ PublicIp?: string | undefined;
4788
4788
  /**
4789
4789
  * <p>The security groups associated with the EC2 instance.</p>
4790
4790
  * @public
4791
4791
  */
4792
- SecurityGroups?: SecurityGroup[];
4792
+ SecurityGroups?: SecurityGroup[] | undefined;
4793
4793
  /**
4794
4794
  * <p>The subnet ID of the EC2 instance.</p>
4795
4795
  * @public
4796
4796
  */
4797
- SubnetId?: string;
4797
+ SubnetId?: string | undefined;
4798
4798
  /**
4799
4799
  * <p>The VPC ID of the EC2 instance.</p>
4800
4800
  * @public
4801
4801
  */
4802
- VpcId?: string;
4802
+ VpcId?: string | undefined;
4803
4803
  }
4804
4804
  /**
4805
4805
  * <p>Contains information about the product code for the EC2 instance.</p>
@@ -4810,12 +4810,12 @@ export interface ProductCode {
4810
4810
  * <p>The product code information.</p>
4811
4811
  * @public
4812
4812
  */
4813
- Code?: string;
4813
+ Code?: string | undefined;
4814
4814
  /**
4815
4815
  * <p>The product code type.</p>
4816
4816
  * @public
4817
4817
  */
4818
- ProductType?: string;
4818
+ ProductType?: string | undefined;
4819
4819
  }
4820
4820
  /**
4821
4821
  * <p>Contains information about the details of an instance.</p>
@@ -4826,68 +4826,68 @@ export interface InstanceDetails {
4826
4826
  * <p>The Availability Zone of the EC2 instance.</p>
4827
4827
  * @public
4828
4828
  */
4829
- AvailabilityZone?: string;
4829
+ AvailabilityZone?: string | undefined;
4830
4830
  /**
4831
4831
  * <p>The profile information of the EC2 instance.</p>
4832
4832
  * @public
4833
4833
  */
4834
- IamInstanceProfile?: IamInstanceProfile;
4834
+ IamInstanceProfile?: IamInstanceProfile | undefined;
4835
4835
  /**
4836
4836
  * <p>The image description of the EC2 instance.</p>
4837
4837
  * @public
4838
4838
  */
4839
- ImageDescription?: string;
4839
+ ImageDescription?: string | undefined;
4840
4840
  /**
4841
4841
  * <p>The image ID of the EC2 instance.</p>
4842
4842
  * @public
4843
4843
  */
4844
- ImageId?: string;
4844
+ ImageId?: string | undefined;
4845
4845
  /**
4846
4846
  * <p>The ID of the EC2 instance.</p>
4847
4847
  * @public
4848
4848
  */
4849
- InstanceId?: string;
4849
+ InstanceId?: string | undefined;
4850
4850
  /**
4851
4851
  * <p>The state of the EC2 instance.</p>
4852
4852
  * @public
4853
4853
  */
4854
- InstanceState?: string;
4854
+ InstanceState?: string | undefined;
4855
4855
  /**
4856
4856
  * <p>The type of the EC2 instance.</p>
4857
4857
  * @public
4858
4858
  */
4859
- InstanceType?: string;
4859
+ InstanceType?: string | undefined;
4860
4860
  /**
4861
4861
  * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Outpost. Only applicable to Amazon Web Services Outposts
4862
4862
  * instances.</p>
4863
4863
  * @public
4864
4864
  */
4865
- OutpostArn?: string;
4865
+ OutpostArn?: string | undefined;
4866
4866
  /**
4867
4867
  * <p>The launch time of the EC2 instance.</p>
4868
4868
  * @public
4869
4869
  */
4870
- LaunchTime?: string;
4870
+ LaunchTime?: string | undefined;
4871
4871
  /**
4872
4872
  * <p>The elastic network interface information of the EC2 instance.</p>
4873
4873
  * @public
4874
4874
  */
4875
- NetworkInterfaces?: NetworkInterface[];
4875
+ NetworkInterfaces?: NetworkInterface[] | undefined;
4876
4876
  /**
4877
4877
  * <p>The platform of the EC2 instance.</p>
4878
4878
  * @public
4879
4879
  */
4880
- Platform?: string;
4880
+ Platform?: string | undefined;
4881
4881
  /**
4882
4882
  * <p>The product code of the EC2 instance.</p>
4883
4883
  * @public
4884
4884
  */
4885
- ProductCodes?: ProductCode[];
4885
+ ProductCodes?: ProductCode[] | undefined;
4886
4886
  /**
4887
4887
  * <p>The tags of the EC2 instance.</p>
4888
4888
  * @public
4889
4889
  */
4890
- Tags?: Tag[];
4890
+ Tags?: Tag[] | undefined;
4891
4891
  }
4892
4892
  /**
4893
4893
  * <p>Contains information about the impersonated user.</p>
@@ -4898,12 +4898,12 @@ export interface ImpersonatedUser {
4898
4898
  * <p>Information about the <code>username</code> that was being impersonated.</p>
4899
4899
  * @public
4900
4900
  */
4901
- Username?: string;
4901
+ Username?: string | undefined;
4902
4902
  /**
4903
4903
  * <p>The <code>group</code> to which the user name belongs.</p>
4904
4904
  * @public
4905
4905
  */
4906
- Groups?: string[];
4906
+ Groups?: string[] | undefined;
4907
4907
  }
4908
4908
  /**
4909
4909
  * <p>Details about the Kubernetes user involved in a Kubernetes finding.</p>
@@ -4914,28 +4914,28 @@ export interface KubernetesUserDetails {
4914
4914
  * <p>The username of the user who called the Kubernetes API.</p>
4915
4915
  * @public
4916
4916
  */
4917
- Username?: string;
4917
+ Username?: string | undefined;
4918
4918
  /**
4919
4919
  * <p>The user ID of the user who called the Kubernetes API.</p>
4920
4920
  * @public
4921
4921
  */
4922
- Uid?: string;
4922
+ Uid?: string | undefined;
4923
4923
  /**
4924
4924
  * <p>The groups that include the user who called the Kubernetes API.</p>
4925
4925
  * @public
4926
4926
  */
4927
- Groups?: string[];
4927
+ Groups?: string[] | undefined;
4928
4928
  /**
4929
4929
  * <p>Entity that assumes the IAM role
4930
4930
  * when Kubernetes RBAC permissions are assigned to that role.</p>
4931
4931
  * @public
4932
4932
  */
4933
- SessionName?: string[];
4933
+ SessionName?: string[] | undefined;
4934
4934
  /**
4935
4935
  * <p>Information about the impersonated user.</p>
4936
4936
  * @public
4937
4937
  */
4938
- ImpersonatedUser?: ImpersonatedUser;
4938
+ ImpersonatedUser?: ImpersonatedUser | undefined;
4939
4939
  }
4940
4940
  /**
4941
4941
  * <p>Details about the Kubernetes workload involved in a Kubernetes finding.</p>
@@ -4946,52 +4946,52 @@ export interface KubernetesWorkloadDetails {
4946
4946
  * <p>Kubernetes workload name.</p>
4947
4947
  * @public
4948
4948
  */
4949
- Name?: string;
4949
+ Name?: string | undefined;
4950
4950
  /**
4951
4951
  * <p>Kubernetes workload type (e.g. Pod, Deployment, etc.).</p>
4952
4952
  * @public
4953
4953
  */
4954
- Type?: string;
4954
+ Type?: string | undefined;
4955
4955
  /**
4956
4956
  * <p>Kubernetes workload ID.</p>
4957
4957
  * @public
4958
4958
  */
4959
- Uid?: string;
4959
+ Uid?: string | undefined;
4960
4960
  /**
4961
4961
  * <p>Kubernetes namespace that the workload is part of.</p>
4962
4962
  * @public
4963
4963
  */
4964
- Namespace?: string;
4964
+ Namespace?: string | undefined;
4965
4965
  /**
4966
4966
  * <p>Whether the hostNetwork flag is enabled for the pods included in the workload.</p>
4967
4967
  * @public
4968
4968
  */
4969
- HostNetwork?: boolean;
4969
+ HostNetwork?: boolean | undefined;
4970
4970
  /**
4971
4971
  * <p>Containers running as part of the Kubernetes workload.</p>
4972
4972
  * @public
4973
4973
  */
4974
- Containers?: Container[];
4974
+ Containers?: Container[] | undefined;
4975
4975
  /**
4976
4976
  * <p>Volumes used by the Kubernetes workload.</p>
4977
4977
  * @public
4978
4978
  */
4979
- Volumes?: Volume[];
4979
+ Volumes?: Volume[] | undefined;
4980
4980
  /**
4981
4981
  * <p>The service account name that is associated with a Kubernetes workload.</p>
4982
4982
  * @public
4983
4983
  */
4984
- ServiceAccountName?: string;
4984
+ ServiceAccountName?: string | undefined;
4985
4985
  /**
4986
4986
  * <p>Whether the host IPC flag is enabled for the pods in the workload.</p>
4987
4987
  * @public
4988
4988
  */
4989
- HostIPC?: boolean;
4989
+ HostIPC?: boolean | undefined;
4990
4990
  /**
4991
4991
  * <p>Whether the host PID flag is enabled for the pods in the workload. </p>
4992
4992
  * @public
4993
4993
  */
4994
- HostPID?: boolean;
4994
+ HostPID?: boolean | undefined;
4995
4995
  }
4996
4996
  /**
4997
4997
  * <p>Details about Kubernetes resources such as a Kubernetes user or workload resource involved
@@ -5003,12 +5003,12 @@ export interface KubernetesDetails {
5003
5003
  * <p>Details about the Kubernetes user involved in a Kubernetes finding.</p>
5004
5004
  * @public
5005
5005
  */
5006
- KubernetesUserDetails?: KubernetesUserDetails;
5006
+ KubernetesUserDetails?: KubernetesUserDetails | undefined;
5007
5007
  /**
5008
5008
  * <p>Details about the Kubernetes workload involved in a Kubernetes finding.</p>
5009
5009
  * @public
5010
5010
  */
5011
- KubernetesWorkloadDetails?: KubernetesWorkloadDetails;
5011
+ KubernetesWorkloadDetails?: KubernetesWorkloadDetails | undefined;
5012
5012
  }
5013
5013
  /**
5014
5014
  * <p>Amazon Virtual Private Cloud configuration details associated with your Lambda function.</p>
@@ -5019,17 +5019,17 @@ export interface VpcConfig {
5019
5019
  * <p>The identifiers of the subnets that are associated with your Lambda function.</p>
5020
5020
  * @public
5021
5021
  */
5022
- SubnetIds?: string[];
5022
+ SubnetIds?: string[] | undefined;
5023
5023
  /**
5024
5024
  * <p>The identifier of the Amazon Virtual Private Cloud.</p>
5025
5025
  * @public
5026
5026
  */
5027
- VpcId?: string;
5027
+ VpcId?: string | undefined;
5028
5028
  /**
5029
5029
  * <p>The identifier of the security group attached to the Lambda function.</p>
5030
5030
  * @public
5031
5031
  */
5032
- SecurityGroups?: SecurityGroup[];
5032
+ SecurityGroups?: SecurityGroup[] | undefined;
5033
5033
  }
5034
5034
  /**
5035
5035
  * <p>Information about the Lambda function involved in the finding.</p>
@@ -5040,49 +5040,49 @@ export interface LambdaDetails {
5040
5040
  * <p>Amazon Resource Name (ARN) of the Lambda function.</p>
5041
5041
  * @public
5042
5042
  */
5043
- FunctionArn?: string;
5043
+ FunctionArn?: string | undefined;
5044
5044
  /**
5045
5045
  * <p>Name of the Lambda function.</p>
5046
5046
  * @public
5047
5047
  */
5048
- FunctionName?: string;
5048
+ FunctionName?: string | undefined;
5049
5049
  /**
5050
5050
  * <p>Description of the Lambda function.</p>
5051
5051
  * @public
5052
5052
  */
5053
- Description?: string;
5053
+ Description?: string | undefined;
5054
5054
  /**
5055
5055
  * <p>The timestamp when the Lambda function was last modified. This field is in the UTC date string
5056
5056
  * format <code>(2023-03-22T19:37:20.168Z)</code>.</p>
5057
5057
  * @public
5058
5058
  */
5059
- LastModifiedAt?: Date;
5059
+ LastModifiedAt?: Date | undefined;
5060
5060
  /**
5061
5061
  * <p>The revision ID of the Lambda function version.</p>
5062
5062
  * @public
5063
5063
  */
5064
- RevisionId?: string;
5064
+ RevisionId?: string | undefined;
5065
5065
  /**
5066
5066
  * <p>The version of the Lambda function.</p>
5067
5067
  * @public
5068
5068
  */
5069
- FunctionVersion?: string;
5069
+ FunctionVersion?: string | undefined;
5070
5070
  /**
5071
5071
  * <p>The execution role of the Lambda function.</p>
5072
5072
  * @public
5073
5073
  */
5074
- Role?: string;
5074
+ Role?: string | undefined;
5075
5075
  /**
5076
5076
  * <p>Amazon Virtual Private Cloud configuration details associated with your Lambda function.</p>
5077
5077
  * @public
5078
5078
  */
5079
- VpcConfig?: VpcConfig;
5079
+ VpcConfig?: VpcConfig | undefined;
5080
5080
  /**
5081
5081
  * <p>A list of tags attached to this resource, listed in the format of
5082
5082
  * <code>key</code>:<code>value</code> pair.</p>
5083
5083
  * @public
5084
5084
  */
5085
- Tags?: Tag[];
5085
+ Tags?: Tag[] | undefined;
5086
5086
  }
5087
5087
  /**
5088
5088
  * <p>Contains information about the resource type <code>RDSDBInstance</code> involved in a
@@ -5095,34 +5095,34 @@ export interface RdsDbInstanceDetails {
5095
5095
  * finding.</p>
5096
5096
  * @public
5097
5097
  */
5098
- DbInstanceIdentifier?: string;
5098
+ DbInstanceIdentifier?: string | undefined;
5099
5099
  /**
5100
5100
  * <p>The database engine of the database instance involved in the finding.</p>
5101
5101
  * @public
5102
5102
  */
5103
- Engine?: string;
5103
+ Engine?: string | undefined;
5104
5104
  /**
5105
5105
  * <p>The version of the database engine that was involved in the finding.</p>
5106
5106
  * @public
5107
5107
  */
5108
- EngineVersion?: string;
5108
+ EngineVersion?: string | undefined;
5109
5109
  /**
5110
5110
  * <p>The identifier of the database cluster that contains the database instance ID involved in
5111
5111
  * the finding.</p>
5112
5112
  * @public
5113
5113
  */
5114
- DbClusterIdentifier?: string;
5114
+ DbClusterIdentifier?: string | undefined;
5115
5115
  /**
5116
5116
  * <p>The Amazon Resource Name (ARN) that identifies the database instance involved in the
5117
5117
  * finding.</p>
5118
5118
  * @public
5119
5119
  */
5120
- DbInstanceArn?: string;
5120
+ DbInstanceArn?: string | undefined;
5121
5121
  /**
5122
5122
  * <p>Information about the tag key-value pairs.</p>
5123
5123
  * @public
5124
5124
  */
5125
- Tags?: Tag[];
5125
+ Tags?: Tag[] | undefined;
5126
5126
  }
5127
5127
  /**
5128
5128
  * <p>Contains information about the user and authentication details for a database instance
@@ -5134,27 +5134,27 @@ export interface RdsDbUserDetails {
5134
5134
  * <p>The user name used in the anomalous login attempt.</p>
5135
5135
  * @public
5136
5136
  */
5137
- User?: string;
5137
+ User?: string | undefined;
5138
5138
  /**
5139
5139
  * <p>The application name used in the anomalous login attempt.</p>
5140
5140
  * @public
5141
5141
  */
5142
- Application?: string;
5142
+ Application?: string | undefined;
5143
5143
  /**
5144
5144
  * <p>The name of the database instance involved in the anomalous login attempt.</p>
5145
5145
  * @public
5146
5146
  */
5147
- Database?: string;
5147
+ Database?: string | undefined;
5148
5148
  /**
5149
5149
  * <p>The version of the Secure Socket Layer (SSL) used for the network.</p>
5150
5150
  * @public
5151
5151
  */
5152
- Ssl?: string;
5152
+ Ssl?: string | undefined;
5153
5153
  /**
5154
5154
  * <p>The authentication method used by the user involved in the finding.</p>
5155
5155
  * @public
5156
5156
  */
5157
- AuthMethod?: string;
5157
+ AuthMethod?: string | undefined;
5158
5158
  }
5159
5159
  /**
5160
5160
  * <p>Contains information about the resource type <code>RDSLimitlessDB</code> that is involved in a GuardDuty
@@ -5166,37 +5166,37 @@ export interface RdsLimitlessDbDetails {
5166
5166
  * <p>The name associated with the Limitless DB shard group.</p>
5167
5167
  * @public
5168
5168
  */
5169
- DbShardGroupIdentifier?: string;
5169
+ DbShardGroupIdentifier?: string | undefined;
5170
5170
  /**
5171
5171
  * <p>The resource identifier of the DB shard group within the Limitless Database.</p>
5172
5172
  * @public
5173
5173
  */
5174
- DbShardGroupResourceId?: string;
5174
+ DbShardGroupResourceId?: string | undefined;
5175
5175
  /**
5176
5176
  * <p>The Amazon Resource Name (ARN) that identifies the DB shard group.</p>
5177
5177
  * @public
5178
5178
  */
5179
- DbShardGroupArn?: string;
5179
+ DbShardGroupArn?: string | undefined;
5180
5180
  /**
5181
5181
  * <p>The database engine of the database instance involved in the finding.</p>
5182
5182
  * @public
5183
5183
  */
5184
- Engine?: string;
5184
+ Engine?: string | undefined;
5185
5185
  /**
5186
5186
  * <p>The version of the database engine.</p>
5187
5187
  * @public
5188
5188
  */
5189
- EngineVersion?: string;
5189
+ EngineVersion?: string | undefined;
5190
5190
  /**
5191
5191
  * <p>The name of the database cluster that is a part of the Limitless Database.</p>
5192
5192
  * @public
5193
5193
  */
5194
- DbClusterIdentifier?: string;
5194
+ DbClusterIdentifier?: string | undefined;
5195
5195
  /**
5196
5196
  * <p>Information about the tag-key value pair.</p>
5197
5197
  * @public
5198
5198
  */
5199
- Tags?: Tag[];
5199
+ Tags?: Tag[] | undefined;
5200
5200
  }
5201
5201
  /**
5202
5202
  * <p>Contains information on the owner of the bucket.</p>
@@ -5210,7 +5210,7 @@ export interface Owner {
5210
5210
  * </p>
5211
5211
  * @public
5212
5212
  */
5213
- Id?: string;
5213
+ Id?: string | undefined;
5214
5214
  }
5215
5215
  /**
5216
5216
  * <p>Contains information about how permissions are configured for the S3 bucket.</p>
@@ -5221,12 +5221,12 @@ export interface PermissionConfiguration {
5221
5221
  * <p>Contains information about the bucket level permissions for the S3 bucket.</p>
5222
5222
  * @public
5223
5223
  */
5224
- BucketLevelPermissions?: BucketLevelPermissions;
5224
+ BucketLevelPermissions?: BucketLevelPermissions | undefined;
5225
5225
  /**
5226
5226
  * <p>Contains information about the account level permissions on the S3 bucket.</p>
5227
5227
  * @public
5228
5228
  */
5229
- AccountLevelPermissions?: AccountLevelPermissions;
5229
+ AccountLevelPermissions?: AccountLevelPermissions | undefined;
5230
5230
  }
5231
5231
  /**
5232
5232
  * <p>Describes the public access policies that apply to the S3 bucket.</p>
@@ -5237,13 +5237,13 @@ export interface PublicAccess {
5237
5237
  * <p>Contains information about how permissions are configured for the S3 bucket.</p>
5238
5238
  * @public
5239
5239
  */
5240
- PermissionConfiguration?: PermissionConfiguration;
5240
+ PermissionConfiguration?: PermissionConfiguration | undefined;
5241
5241
  /**
5242
5242
  * <p>Describes the effective permission on this bucket after factoring all attached
5243
5243
  * policies.</p>
5244
5244
  * @public
5245
5245
  */
5246
- EffectivePermission?: string;
5246
+ EffectivePermission?: string | undefined;
5247
5247
  }
5248
5248
  /**
5249
5249
  * <p>Information about the S3 object that was scanned</p>
@@ -5254,28 +5254,28 @@ export interface S3ObjectDetail {
5254
5254
  * <p>Amazon Resource Name (ARN) of the S3 object.</p>
5255
5255
  * @public
5256
5256
  */
5257
- ObjectArn?: string;
5257
+ ObjectArn?: string | undefined;
5258
5258
  /**
5259
5259
  * <p>Key of the S3 object.</p>
5260
5260
  * @public
5261
5261
  */
5262
- Key?: string;
5262
+ Key?: string | undefined;
5263
5263
  /**
5264
5264
  * <p>The entity tag is a hash of the S3 object. The ETag reflects changes only to the contents of
5265
5265
  * an object, and not its metadata.</p>
5266
5266
  * @public
5267
5267
  */
5268
- ETag?: string;
5268
+ ETag?: string | undefined;
5269
5269
  /**
5270
5270
  * <p>Hash of the threat detected in this finding.</p>
5271
5271
  * @public
5272
5272
  */
5273
- Hash?: string;
5273
+ Hash?: string | undefined;
5274
5274
  /**
5275
5275
  * <p>Version ID of the object.</p>
5276
5276
  * @public
5277
5277
  */
5278
- VersionId?: string;
5278
+ VersionId?: string | undefined;
5279
5279
  }
5280
5280
  /**
5281
5281
  * <p>Contains information on the S3 bucket.</p>
@@ -5286,47 +5286,47 @@ export interface S3BucketDetail {
5286
5286
  * <p>The Amazon Resource Name (ARN) of the S3 bucket.</p>
5287
5287
  * @public
5288
5288
  */
5289
- Arn?: string;
5289
+ Arn?: string | undefined;
5290
5290
  /**
5291
5291
  * <p>The name of the S3 bucket.</p>
5292
5292
  * @public
5293
5293
  */
5294
- Name?: string;
5294
+ Name?: string | undefined;
5295
5295
  /**
5296
5296
  * <p>Describes whether the bucket is a source or destination bucket.</p>
5297
5297
  * @public
5298
5298
  */
5299
- Type?: string;
5299
+ Type?: string | undefined;
5300
5300
  /**
5301
5301
  * <p>The date and time the bucket was created at.</p>
5302
5302
  * @public
5303
5303
  */
5304
- CreatedAt?: Date;
5304
+ CreatedAt?: Date | undefined;
5305
5305
  /**
5306
5306
  * <p>The owner of the S3 bucket.</p>
5307
5307
  * @public
5308
5308
  */
5309
- Owner?: Owner;
5309
+ Owner?: Owner | undefined;
5310
5310
  /**
5311
5311
  * <p>All tags attached to the S3 bucket</p>
5312
5312
  * @public
5313
5313
  */
5314
- Tags?: Tag[];
5314
+ Tags?: Tag[] | undefined;
5315
5315
  /**
5316
5316
  * <p>Describes the server side encryption method used in the S3 bucket.</p>
5317
5317
  * @public
5318
5318
  */
5319
- DefaultServerSideEncryption?: DefaultServerSideEncryption;
5319
+ DefaultServerSideEncryption?: DefaultServerSideEncryption | undefined;
5320
5320
  /**
5321
5321
  * <p>Describes the public access policies that apply to the S3 bucket.</p>
5322
5322
  * @public
5323
5323
  */
5324
- PublicAccess?: PublicAccess;
5324
+ PublicAccess?: PublicAccess | undefined;
5325
5325
  /**
5326
5326
  * <p>Information about the S3 object that was scanned.</p>
5327
5327
  * @public
5328
5328
  */
5329
- S3ObjectDetails?: S3ObjectDetail[];
5329
+ S3ObjectDetails?: S3ObjectDetail[] | undefined;
5330
5330
  }
5331
5331
  /**
5332
5332
  * <p>Contains information about the Amazon Web Services resource associated with the activity that prompted
@@ -5339,70 +5339,70 @@ export interface Resource {
5339
5339
  * prompted GuardDuty to generate a finding.</p>
5340
5340
  * @public
5341
5341
  */
5342
- AccessKeyDetails?: AccessKeyDetails;
5342
+ AccessKeyDetails?: AccessKeyDetails | undefined;
5343
5343
  /**
5344
5344
  * <p>Contains information on the S3 bucket.</p>
5345
5345
  * @public
5346
5346
  */
5347
- S3BucketDetails?: S3BucketDetail[];
5347
+ S3BucketDetails?: S3BucketDetail[] | undefined;
5348
5348
  /**
5349
5349
  * <p>The information about the EC2 instance associated with the activity that prompted
5350
5350
  * GuardDuty to generate a finding.</p>
5351
5351
  * @public
5352
5352
  */
5353
- InstanceDetails?: InstanceDetails;
5353
+ InstanceDetails?: InstanceDetails | undefined;
5354
5354
  /**
5355
5355
  * <p>Details about the EKS cluster involved in a Kubernetes finding.</p>
5356
5356
  * @public
5357
5357
  */
5358
- EksClusterDetails?: EksClusterDetails;
5358
+ EksClusterDetails?: EksClusterDetails | undefined;
5359
5359
  /**
5360
5360
  * <p>Details about the Kubernetes user and workload involved in a Kubernetes finding.</p>
5361
5361
  * @public
5362
5362
  */
5363
- KubernetesDetails?: KubernetesDetails;
5363
+ KubernetesDetails?: KubernetesDetails | undefined;
5364
5364
  /**
5365
5365
  * <p>The type of Amazon Web Services resource.</p>
5366
5366
  * @public
5367
5367
  */
5368
- ResourceType?: string;
5368
+ ResourceType?: string | undefined;
5369
5369
  /**
5370
5370
  * <p>Contains list of scanned and skipped EBS volumes with details.</p>
5371
5371
  * @public
5372
5372
  */
5373
- EbsVolumeDetails?: EbsVolumeDetails;
5373
+ EbsVolumeDetails?: EbsVolumeDetails | undefined;
5374
5374
  /**
5375
5375
  * <p>Contains information about the details of the ECS Cluster.</p>
5376
5376
  * @public
5377
5377
  */
5378
- EcsClusterDetails?: EcsClusterDetails;
5378
+ EcsClusterDetails?: EcsClusterDetails | undefined;
5379
5379
  /**
5380
5380
  * <p>Details of a container.</p>
5381
5381
  * @public
5382
5382
  */
5383
- ContainerDetails?: Container;
5383
+ ContainerDetails?: Container | undefined;
5384
5384
  /**
5385
5385
  * <p>Contains information about the database instance to which an anomalous login attempt was
5386
5386
  * made.</p>
5387
5387
  * @public
5388
5388
  */
5389
- RdsDbInstanceDetails?: RdsDbInstanceDetails;
5389
+ RdsDbInstanceDetails?: RdsDbInstanceDetails | undefined;
5390
5390
  /**
5391
5391
  * <p>Contains information about the RDS Limitless database that was involved in a GuardDuty finding.</p>
5392
5392
  * @public
5393
5393
  */
5394
- RdsLimitlessDbDetails?: RdsLimitlessDbDetails;
5394
+ RdsLimitlessDbDetails?: RdsLimitlessDbDetails | undefined;
5395
5395
  /**
5396
5396
  * <p>Contains information about the user details through which anomalous login attempt was
5397
5397
  * made.</p>
5398
5398
  * @public
5399
5399
  */
5400
- RdsDbUserDetails?: RdsDbUserDetails;
5400
+ RdsDbUserDetails?: RdsDbUserDetails | undefined;
5401
5401
  /**
5402
5402
  * <p>Contains information about the Lambda function that was involved in a finding.</p>
5403
5403
  * @public
5404
5404
  */
5405
- LambdaDetails?: LambdaDetails;
5405
+ LambdaDetails?: LambdaDetails | undefined;
5406
5406
  }
5407
5407
  /**
5408
5408
  * <p>Additional information about the generated finding.</p>
@@ -5413,12 +5413,12 @@ export interface ServiceAdditionalInfo {
5413
5413
  * <p>This field specifies the value of the additional information.</p>
5414
5414
  * @public
5415
5415
  */
5416
- Value?: string;
5416
+ Value?: string | undefined;
5417
5417
  /**
5418
5418
  * <p>Describes the type of the additional information.</p>
5419
5419
  * @public
5420
5420
  */
5421
- Type?: string;
5421
+ Type?: string | undefined;
5422
5422
  }
5423
5423
  /**
5424
5424
  * <p>Information about the nested item path and hash of the protected
@@ -5430,12 +5430,12 @@ export interface ItemPath {
5430
5430
  * <p>The nested item path where the infected file was found.</p>
5431
5431
  * @public
5432
5432
  */
5433
- NestedItemPath?: string;
5433
+ NestedItemPath?: string | undefined;
5434
5434
  /**
5435
5435
  * <p>The hash value of the infected resource.</p>
5436
5436
  * @public
5437
5437
  */
5438
- Hash?: string;
5438
+ Hash?: string | undefined;
5439
5439
  }
5440
5440
  /**
5441
5441
  * <p>Information about the detected threats associated with the
@@ -5447,18 +5447,18 @@ export interface Threat {
5447
5447
  * <p>Name of the detected threat that caused GuardDuty to generate this finding.</p>
5448
5448
  * @public
5449
5449
  */
5450
- Name?: string;
5450
+ Name?: string | undefined;
5451
5451
  /**
5452
5452
  * <p>Source of the threat that generated this finding.</p>
5453
5453
  * @public
5454
5454
  */
5455
- Source?: string;
5455
+ Source?: string | undefined;
5456
5456
  /**
5457
5457
  * <p>Information about the nested item path and
5458
5458
  * hash of the protected resource.</p>
5459
5459
  * @public
5460
5460
  */
5461
- ItemPaths?: ItemPath[];
5461
+ ItemPaths?: ItemPath[] | undefined;
5462
5462
  }
5463
5463
  /**
5464
5464
  * <p>Information about the malware scan that generated a GuardDuty finding.</p>
@@ -5470,7 +5470,7 @@ export interface MalwareScanDetails {
5470
5470
  * generated GuardDuty finding.</p>
5471
5471
  * @public
5472
5472
  */
5473
- Threats?: Threat[];
5473
+ Threats?: Threat[] | undefined;
5474
5474
  }
5475
5475
  /**
5476
5476
  * <p>Information about the runtime process details.</p>
@@ -5481,48 +5481,48 @@ export interface LineageObject {
5481
5481
  * <p>The time when the process started. This is in UTC format.</p>
5482
5482
  * @public
5483
5483
  */
5484
- StartTime?: Date;
5484
+ StartTime?: Date | undefined;
5485
5485
  /**
5486
5486
  * <p>The process ID of the child process.</p>
5487
5487
  * @public
5488
5488
  */
5489
- NamespacePid?: number;
5489
+ NamespacePid?: number | undefined;
5490
5490
  /**
5491
5491
  * <p>The user ID of the user that executed the process.</p>
5492
5492
  * @public
5493
5493
  */
5494
- UserId?: number;
5494
+ UserId?: number | undefined;
5495
5495
  /**
5496
5496
  * <p>The name of the process.</p>
5497
5497
  * @public
5498
5498
  */
5499
- Name?: string;
5499
+ Name?: string | undefined;
5500
5500
  /**
5501
5501
  * <p>The ID of the process.</p>
5502
5502
  * @public
5503
5503
  */
5504
- Pid?: number;
5504
+ Pid?: number | undefined;
5505
5505
  /**
5506
5506
  * <p>The unique ID assigned to the process by GuardDuty.</p>
5507
5507
  * @public
5508
5508
  */
5509
- Uuid?: string;
5509
+ Uuid?: string | undefined;
5510
5510
  /**
5511
5511
  * <p>The absolute path of the process executable file.</p>
5512
5512
  * @public
5513
5513
  */
5514
- ExecutablePath?: string;
5514
+ ExecutablePath?: string | undefined;
5515
5515
  /**
5516
5516
  * <p>The effective user ID that was used to execute the process.</p>
5517
5517
  * @public
5518
5518
  */
5519
- Euid?: number;
5519
+ Euid?: number | undefined;
5520
5520
  /**
5521
5521
  * <p>The unique ID of the parent process. This ID is assigned to the parent process by
5522
5522
  * GuardDuty.</p>
5523
5523
  * @public
5524
5524
  */
5525
- ParentUuid?: string;
5525
+ ParentUuid?: string | undefined;
5526
5526
  }
5527
5527
  /**
5528
5528
  * <p>Information about the observed process.</p>
@@ -5533,68 +5533,68 @@ export interface ProcessDetails {
5533
5533
  * <p>The name of the process.</p>
5534
5534
  * @public
5535
5535
  */
5536
- Name?: string;
5536
+ Name?: string | undefined;
5537
5537
  /**
5538
5538
  * <p>The absolute path of the process executable file.</p>
5539
5539
  * @public
5540
5540
  */
5541
- ExecutablePath?: string;
5541
+ ExecutablePath?: string | undefined;
5542
5542
  /**
5543
5543
  * <p>The <code>SHA256</code> hash of the process executable.</p>
5544
5544
  * @public
5545
5545
  */
5546
- ExecutableSha256?: string;
5546
+ ExecutableSha256?: string | undefined;
5547
5547
  /**
5548
5548
  * <p>The ID of the child process.</p>
5549
5549
  * @public
5550
5550
  */
5551
- NamespacePid?: number;
5551
+ NamespacePid?: number | undefined;
5552
5552
  /**
5553
5553
  * <p>The present working directory of the process.</p>
5554
5554
  * @public
5555
5555
  */
5556
- Pwd?: string;
5556
+ Pwd?: string | undefined;
5557
5557
  /**
5558
5558
  * <p>The ID of the process.</p>
5559
5559
  * @public
5560
5560
  */
5561
- Pid?: number;
5561
+ Pid?: number | undefined;
5562
5562
  /**
5563
5563
  * <p>The time when the process started. This is in UTC format.</p>
5564
5564
  * @public
5565
5565
  */
5566
- StartTime?: Date;
5566
+ StartTime?: Date | undefined;
5567
5567
  /**
5568
5568
  * <p>The unique ID assigned to the process by GuardDuty.</p>
5569
5569
  * @public
5570
5570
  */
5571
- Uuid?: string;
5571
+ Uuid?: string | undefined;
5572
5572
  /**
5573
5573
  * <p>The unique ID of the parent process. This ID is assigned to the parent process by
5574
5574
  * GuardDuty.</p>
5575
5575
  * @public
5576
5576
  */
5577
- ParentUuid?: string;
5577
+ ParentUuid?: string | undefined;
5578
5578
  /**
5579
5579
  * <p>The user that executed the process.</p>
5580
5580
  * @public
5581
5581
  */
5582
- User?: string;
5582
+ User?: string | undefined;
5583
5583
  /**
5584
5584
  * <p>The unique ID of the user that executed the process.</p>
5585
5585
  * @public
5586
5586
  */
5587
- UserId?: number;
5587
+ UserId?: number | undefined;
5588
5588
  /**
5589
5589
  * <p>The effective user ID of the user that executed the process.</p>
5590
5590
  * @public
5591
5591
  */
5592
- Euid?: number;
5592
+ Euid?: number | undefined;
5593
5593
  /**
5594
5594
  * <p>Information about the process's lineage.</p>
5595
5595
  * @public
5596
5596
  */
5597
- Lineage?: LineageObject[];
5597
+ Lineage?: LineageObject[] | undefined;
5598
5598
  }
5599
5599
  /**
5600
5600
  * <p>Additional information about the suspicious activity.</p>
@@ -5606,133 +5606,133 @@ export interface RuntimeContext {
5606
5606
  * multiple finding types.</p>
5607
5607
  * @public
5608
5608
  */
5609
- ModifyingProcess?: ProcessDetails;
5609
+ ModifyingProcess?: ProcessDetails | undefined;
5610
5610
  /**
5611
5611
  * <p>The timestamp at which the process modified the current process. The timestamp is in UTC date string
5612
5612
  * format.</p>
5613
5613
  * @public
5614
5614
  */
5615
- ModifiedAt?: Date;
5615
+ ModifiedAt?: Date | undefined;
5616
5616
  /**
5617
5617
  * <p>The path to the script that was executed.</p>
5618
5618
  * @public
5619
5619
  */
5620
- ScriptPath?: string;
5620
+ ScriptPath?: string | undefined;
5621
5621
  /**
5622
5622
  * <p>The path to the new library that was loaded.</p>
5623
5623
  * @public
5624
5624
  */
5625
- LibraryPath?: string;
5625
+ LibraryPath?: string | undefined;
5626
5626
  /**
5627
5627
  * <p>The value of the LD_PRELOAD environment variable.</p>
5628
5628
  * @public
5629
5629
  */
5630
- LdPreloadValue?: string;
5630
+ LdPreloadValue?: string | undefined;
5631
5631
  /**
5632
5632
  * <p>The path to the docket socket that was accessed.</p>
5633
5633
  * @public
5634
5634
  */
5635
- SocketPath?: string;
5635
+ SocketPath?: string | undefined;
5636
5636
  /**
5637
5637
  * <p>The path to the leveraged <code>runc</code> implementation.</p>
5638
5638
  * @public
5639
5639
  */
5640
- RuncBinaryPath?: string;
5640
+ RuncBinaryPath?: string | undefined;
5641
5641
  /**
5642
5642
  * <p>The path in the container that modified the release agent file.</p>
5643
5643
  * @public
5644
5644
  */
5645
- ReleaseAgentPath?: string;
5645
+ ReleaseAgentPath?: string | undefined;
5646
5646
  /**
5647
5647
  * <p>The path on the host that is mounted by the container.</p>
5648
5648
  * @public
5649
5649
  */
5650
- MountSource?: string;
5650
+ MountSource?: string | undefined;
5651
5651
  /**
5652
5652
  * <p>The path in the container that is mapped to the host directory.</p>
5653
5653
  * @public
5654
5654
  */
5655
- MountTarget?: string;
5655
+ MountTarget?: string | undefined;
5656
5656
  /**
5657
5657
  * <p>Represents the type of mounted fileSystem.</p>
5658
5658
  * @public
5659
5659
  */
5660
- FileSystemType?: string;
5660
+ FileSystemType?: string | undefined;
5661
5661
  /**
5662
5662
  * <p>Represents options that control the behavior of a runtime operation or action. For
5663
5663
  * example, a filesystem mount operation may contain a read-only flag.</p>
5664
5664
  * @public
5665
5665
  */
5666
- Flags?: string[];
5666
+ Flags?: string[] | undefined;
5667
5667
  /**
5668
5668
  * <p>The name of the module loaded into the kernel.</p>
5669
5669
  * @public
5670
5670
  */
5671
- ModuleName?: string;
5671
+ ModuleName?: string | undefined;
5672
5672
  /**
5673
5673
  * <p>The path to the module loaded into the kernel.</p>
5674
5674
  * @public
5675
5675
  */
5676
- ModuleFilePath?: string;
5676
+ ModuleFilePath?: string | undefined;
5677
5677
  /**
5678
5678
  * <p>The <code>SHA256</code> hash of the module.</p>
5679
5679
  * @public
5680
5680
  */
5681
- ModuleSha256?: string;
5681
+ ModuleSha256?: string | undefined;
5682
5682
  /**
5683
5683
  * <p>The path to the modified shell history file.</p>
5684
5684
  * @public
5685
5685
  */
5686
- ShellHistoryFilePath?: string;
5686
+ ShellHistoryFilePath?: string | undefined;
5687
5687
  /**
5688
5688
  * <p>Information about the process that had its memory overwritten by the current process.</p>
5689
5689
  * @public
5690
5690
  */
5691
- TargetProcess?: ProcessDetails;
5691
+ TargetProcess?: ProcessDetails | undefined;
5692
5692
  /**
5693
5693
  * <p>Represents the communication protocol associated with the address. For example, the address
5694
5694
  * family <code>AF_INET</code> is used for IP version of 4 protocol.</p>
5695
5695
  * @public
5696
5696
  */
5697
- AddressFamily?: string;
5697
+ AddressFamily?: string | undefined;
5698
5698
  /**
5699
5699
  * <p>Specifies a particular protocol within the address family. Usually there is a single
5700
5700
  * protocol in address families. For example, the address family <code>AF_INET</code> only has
5701
5701
  * the IP protocol.</p>
5702
5702
  * @public
5703
5703
  */
5704
- IanaProtocolNumber?: number;
5704
+ IanaProtocolNumber?: number | undefined;
5705
5705
  /**
5706
5706
  * <p>Specifies the Region of a process's address space such as stack and heap.</p>
5707
5707
  * @public
5708
5708
  */
5709
- MemoryRegions?: string[];
5709
+ MemoryRegions?: string[] | undefined;
5710
5710
  /**
5711
5711
  * <p>Name of the potentially suspicious tool.</p>
5712
5712
  * @public
5713
5713
  */
5714
- ToolName?: string;
5714
+ ToolName?: string | undefined;
5715
5715
  /**
5716
5716
  * <p>Category that the tool belongs to. Some of the examples
5717
5717
  * are Backdoor Tool, Pentest Tool, Network Scanner, and Network Sniffer.</p>
5718
5718
  * @public
5719
5719
  */
5720
- ToolCategory?: string;
5720
+ ToolCategory?: string | undefined;
5721
5721
  /**
5722
5722
  * <p>Name of the security service that has been potentially disabled.</p>
5723
5723
  * @public
5724
5724
  */
5725
- ServiceName?: string;
5725
+ ServiceName?: string | undefined;
5726
5726
  /**
5727
5727
  * <p>Example of the command line involved in the suspicious activity.</p>
5728
5728
  * @public
5729
5729
  */
5730
- CommandLineExample?: string;
5730
+ CommandLineExample?: string | undefined;
5731
5731
  /**
5732
5732
  * <p>The suspicious file path for which the threat intelligence details were found.</p>
5733
5733
  * @public
5734
5734
  */
5735
- ThreatFilePath?: string;
5735
+ ThreatFilePath?: string | undefined;
5736
5736
  }
5737
5737
  /**
5738
5738
  * <p>Information about the process and any required context values for a specific
@@ -5744,12 +5744,12 @@ export interface RuntimeDetails {
5744
5744
  * <p>Information about the observed process.</p>
5745
5745
  * @public
5746
5746
  */
5747
- Process?: ProcessDetails;
5747
+ Process?: ProcessDetails | undefined;
5748
5748
  /**
5749
5749
  * <p>Additional information about the suspicious activity.</p>
5750
5750
  * @public
5751
5751
  */
5752
- Context?: RuntimeContext;
5752
+ Context?: RuntimeContext | undefined;
5753
5753
  }
5754
5754
  /**
5755
5755
  * <p>Contains additional information about the generated finding.</p>
@@ -5760,85 +5760,85 @@ export interface Service {
5760
5760
  * <p>Information about the activity that is described in a finding.</p>
5761
5761
  * @public
5762
5762
  */
5763
- Action?: Action;
5763
+ Action?: Action | undefined;
5764
5764
  /**
5765
5765
  * <p>An evidence object associated with the service.</p>
5766
5766
  * @public
5767
5767
  */
5768
- Evidence?: Evidence;
5768
+ Evidence?: Evidence | undefined;
5769
5769
  /**
5770
5770
  * <p>Indicates whether this finding is archived.</p>
5771
5771
  * @public
5772
5772
  */
5773
- Archived?: boolean;
5773
+ Archived?: boolean | undefined;
5774
5774
  /**
5775
5775
  * <p>The total count of the occurrences of this finding type.</p>
5776
5776
  * @public
5777
5777
  */
5778
- Count?: number;
5778
+ Count?: number | undefined;
5779
5779
  /**
5780
5780
  * <p>The detector ID for the GuardDuty service.</p>
5781
5781
  * @public
5782
5782
  */
5783
- DetectorId?: string;
5783
+ DetectorId?: string | undefined;
5784
5784
  /**
5785
5785
  * <p>The first-seen timestamp of the activity that prompted GuardDuty to generate this
5786
5786
  * finding.</p>
5787
5787
  * @public
5788
5788
  */
5789
- EventFirstSeen?: string;
5789
+ EventFirstSeen?: string | undefined;
5790
5790
  /**
5791
5791
  * <p>The last-seen timestamp of the activity that prompted GuardDuty to generate this
5792
5792
  * finding.</p>
5793
5793
  * @public
5794
5794
  */
5795
- EventLastSeen?: string;
5795
+ EventLastSeen?: string | undefined;
5796
5796
  /**
5797
5797
  * <p>The resource role information for this finding.</p>
5798
5798
  * @public
5799
5799
  */
5800
- ResourceRole?: string;
5800
+ ResourceRole?: string | undefined;
5801
5801
  /**
5802
5802
  * <p>The name of the Amazon Web Services service (GuardDuty) that generated a finding.</p>
5803
5803
  * @public
5804
5804
  */
5805
- ServiceName?: string;
5805
+ ServiceName?: string | undefined;
5806
5806
  /**
5807
5807
  * <p>Feedback that was submitted about the finding.</p>
5808
5808
  * @public
5809
5809
  */
5810
- UserFeedback?: string;
5810
+ UserFeedback?: string | undefined;
5811
5811
  /**
5812
5812
  * <p>Contains additional information about the generated finding.</p>
5813
5813
  * @public
5814
5814
  */
5815
- AdditionalInfo?: ServiceAdditionalInfo;
5815
+ AdditionalInfo?: ServiceAdditionalInfo | undefined;
5816
5816
  /**
5817
5817
  * <p>The name of the feature that generated a finding.</p>
5818
5818
  * @public
5819
5819
  */
5820
- FeatureName?: string;
5820
+ FeatureName?: string | undefined;
5821
5821
  /**
5822
5822
  * <p>Returns details from the malware scan that created a finding.</p>
5823
5823
  * @public
5824
5824
  */
5825
- EbsVolumeScanDetails?: EbsVolumeScanDetails;
5825
+ EbsVolumeScanDetails?: EbsVolumeScanDetails | undefined;
5826
5826
  /**
5827
5827
  * <p>Information about the process and any required context values for a specific
5828
5828
  * finding</p>
5829
5829
  * @public
5830
5830
  */
5831
- RuntimeDetails?: RuntimeDetails;
5831
+ RuntimeDetails?: RuntimeDetails | undefined;
5832
5832
  /**
5833
5833
  * <p>Contains information about the detected unusual behavior.</p>
5834
5834
  * @public
5835
5835
  */
5836
- Detection?: Detection;
5836
+ Detection?: Detection | undefined;
5837
5837
  /**
5838
5838
  * <p>Returns details from the malware scan that generated a GuardDuty finding.</p>
5839
5839
  * @public
5840
5840
  */
5841
- MalwareScanDetails?: MalwareScanDetails;
5841
+ MalwareScanDetails?: MalwareScanDetails | undefined;
5842
5842
  }
5843
5843
  /**
5844
5844
  * <p>Contains information about the finding that is generated when abnormal or suspicious
@@ -5860,7 +5860,7 @@ export interface Finding {
5860
5860
  * <p>The confidence score for the finding.</p>
5861
5861
  * @public
5862
5862
  */
5863
- Confidence?: number;
5863
+ Confidence?: number | undefined;
5864
5864
  /**
5865
5865
  * <p>The time and date when the finding was created.</p>
5866
5866
  * @public
@@ -5870,7 +5870,7 @@ export interface Finding {
5870
5870
  * <p>The description of the finding.</p>
5871
5871
  * @public
5872
5872
  */
5873
- Description?: string;
5873
+ Description?: string | undefined;
5874
5874
  /**
5875
5875
  * <p>The ID of the finding.</p>
5876
5876
  * @public
@@ -5880,7 +5880,7 @@ export interface Finding {
5880
5880
  * <p>The partition associated with the finding.</p>
5881
5881
  * @public
5882
5882
  */
5883
- Partition?: string;
5883
+ Partition?: string | undefined;
5884
5884
  /**
5885
5885
  * <p>The Region where the finding was generated.</p>
5886
5886
  * @public
@@ -5901,7 +5901,7 @@ export interface Finding {
5901
5901
  * <p>Contains additional information about the generated finding.</p>
5902
5902
  * @public
5903
5903
  */
5904
- Service?: Service;
5904
+ Service?: Service | undefined;
5905
5905
  /**
5906
5906
  * <p>The severity of the finding.</p>
5907
5907
  * @public
@@ -5911,7 +5911,7 @@ export interface Finding {
5911
5911
  * <p>The title of the finding.</p>
5912
5912
  * @public
5913
5913
  */
5914
- Title?: string;
5914
+ Title?: string | undefined;
5915
5915
  /**
5916
5916
  * <p>The type of finding.</p>
5917
5917
  * @public
@@ -5933,17 +5933,17 @@ export interface FindingTypeStatistics {
5933
5933
  * <p>Name of the finding type.</p>
5934
5934
  * @public
5935
5935
  */
5936
- FindingType?: string;
5936
+ FindingType?: string | undefined;
5937
5937
  /**
5938
5938
  * <p>The timestamp at which this finding type was last generated in your environment.</p>
5939
5939
  * @public
5940
5940
  */
5941
- LastGeneratedAt?: Date;
5941
+ LastGeneratedAt?: Date | undefined;
5942
5942
  /**
5943
5943
  * <p>The total number of findings associated with generated for each distinct finding type.</p>
5944
5944
  * @public
5945
5945
  */
5946
- TotalFindings?: number;
5946
+ TotalFindings?: number | undefined;
5947
5947
  }
5948
5948
  /**
5949
5949
  * <p>Information about each resource type associated with the
@@ -5955,12 +5955,12 @@ export interface ResourceStatistics {
5955
5955
  * <p>The ID of the Amazon Web Services account.</p>
5956
5956
  * @public
5957
5957
  */
5958
- AccountId?: string;
5958
+ AccountId?: string | undefined;
5959
5959
  /**
5960
5960
  * <p>The timestamp at which the statistics for this resource was last generated.</p>
5961
5961
  * @public
5962
5962
  */
5963
- LastGeneratedAt?: Date;
5963
+ LastGeneratedAt?: Date | undefined;
5964
5964
  /**
5965
5965
  * <p>ID associated with each resource. The following list provides the mapping of the resource type
5966
5966
  * and resource ID.</p>
@@ -6011,17 +6011,17 @@ export interface ResourceStatistics {
6011
6011
  * </ul>
6012
6012
  * @public
6013
6013
  */
6014
- ResourceId?: string;
6014
+ ResourceId?: string | undefined;
6015
6015
  /**
6016
6016
  * <p>The type of resource.</p>
6017
6017
  * @public
6018
6018
  */
6019
- ResourceType?: string;
6019
+ ResourceType?: string | undefined;
6020
6020
  /**
6021
6021
  * <p>The total number of findings associated with this resource.</p>
6022
6022
  * @public
6023
6023
  */
6024
- TotalFindings?: number;
6024
+ TotalFindings?: number | undefined;
6025
6025
  }
6026
6026
  /**
6027
6027
  * <p>Information about severity level for each finding type.</p>
@@ -6032,17 +6032,17 @@ export interface SeverityStatistics {
6032
6032
  * <p>The timestamp at which a finding type for a specific severity was last generated.</p>
6033
6033
  * @public
6034
6034
  */
6035
- LastGeneratedAt?: Date;
6035
+ LastGeneratedAt?: Date | undefined;
6036
6036
  /**
6037
6037
  * <p>The severity level associated with each finding type.</p>
6038
6038
  * @public
6039
6039
  */
6040
- Severity?: number;
6040
+ Severity?: number | undefined;
6041
6041
  /**
6042
6042
  * <p>The total number of findings associated with this severity.</p>
6043
6043
  * @public
6044
6044
  */
6045
- TotalFindings?: number;
6045
+ TotalFindings?: number | undefined;
6046
6046
  }
6047
6047
  /**
6048
6048
  * <p>Contains information about finding statistics.</p>
@@ -6055,17 +6055,17 @@ export interface FindingStatistics {
6055
6055
  * <p>Represents a list of map of severity to count statistics for a set of findings.</p>
6056
6056
  * @public
6057
6057
  */
6058
- CountBySeverity?: Record<string, number>;
6058
+ CountBySeverity?: Record<string, number> | undefined;
6059
6059
  /**
6060
6060
  * <p>Represents a list of map of accounts with a findings count associated with each account.</p>
6061
6061
  * @public
6062
6062
  */
6063
- GroupedByAccount?: AccountStatistics[];
6063
+ GroupedByAccount?: AccountStatistics[] | undefined;
6064
6064
  /**
6065
6065
  * <p>Represents a list of map of dates with a count of total findings generated on each date per severity level.</p>
6066
6066
  * @public
6067
6067
  */
6068
- GroupedByDate?: DateStatistics[];
6068
+ GroupedByDate?: DateStatistics[] | undefined;
6069
6069
  /**
6070
6070
  * <p>Represents a list of map of finding types with a count of total findings generated for each type. </p>
6071
6071
  * <p>Based on the <code>orderBy</code>
@@ -6075,17 +6075,17 @@ export interface FindingStatistics {
6075
6075
  * value of <code>orderBy</code> is <code>DESC</code>.</p>
6076
6076
  * @public
6077
6077
  */
6078
- GroupedByFindingType?: FindingTypeStatistics[];
6078
+ GroupedByFindingType?: FindingTypeStatistics[] | undefined;
6079
6079
  /**
6080
6080
  * <p>Represents a list of map of top resources with a count of total findings.</p>
6081
6081
  * @public
6082
6082
  */
6083
- GroupedByResource?: ResourceStatistics[];
6083
+ GroupedByResource?: ResourceStatistics[] | undefined;
6084
6084
  /**
6085
6085
  * <p>Represents a list of map of total findings for each severity level.</p>
6086
6086
  * @public
6087
6087
  */
6088
- GroupedBySeverity?: SeverityStatistics[];
6088
+ GroupedBySeverity?: SeverityStatistics[] | undefined;
6089
6089
  }
6090
6090
  /**
6091
6091
  * @public
@@ -6133,7 +6133,7 @@ export interface GetCoverageStatisticsRequest {
6133
6133
  * <p>Represents the criteria used to filter the coverage statistics.</p>
6134
6134
  * @public
6135
6135
  */
6136
- FilterCriteria?: CoverageFilterCriteria;
6136
+ FilterCriteria?: CoverageFilterCriteria | undefined;
6137
6137
  /**
6138
6138
  * <p>Represents the statistics type used to aggregate the coverage details.</p>
6139
6139
  * @public
@@ -6149,7 +6149,7 @@ export interface GetCoverageStatisticsResponse {
6149
6149
  * <code>resourceType</code>.</p>
6150
6150
  * @public
6151
6151
  */
6152
- CoverageStatistics?: CoverageStatistics;
6152
+ CoverageStatistics?: CoverageStatistics | undefined;
6153
6153
  }
6154
6154
  /**
6155
6155
  * @public
@@ -6171,12 +6171,12 @@ export interface GetDetectorResponse {
6171
6171
  * <p>The timestamp of when the detector was created.</p>
6172
6172
  * @public
6173
6173
  */
6174
- CreatedAt?: string;
6174
+ CreatedAt?: string | undefined;
6175
6175
  /**
6176
6176
  * <p>The publishing frequency of the finding.</p>
6177
6177
  * @public
6178
6178
  */
6179
- FindingPublishingFrequency?: FindingPublishingFrequency;
6179
+ FindingPublishingFrequency?: FindingPublishingFrequency | undefined;
6180
6180
  /**
6181
6181
  * <p>The GuardDuty service role.</p>
6182
6182
  * @public
@@ -6191,24 +6191,24 @@ export interface GetDetectorResponse {
6191
6191
  * <p>The last-updated timestamp for the detector.</p>
6192
6192
  * @public
6193
6193
  */
6194
- UpdatedAt?: string;
6194
+ UpdatedAt?: string | undefined;
6195
6195
  /**
6196
6196
  * @deprecated
6197
6197
  *
6198
6198
  * <p>Describes which data sources are enabled for the detector.</p>
6199
6199
  * @public
6200
6200
  */
6201
- DataSources?: DataSourceConfigurationsResult;
6201
+ DataSources?: DataSourceConfigurationsResult | undefined;
6202
6202
  /**
6203
6203
  * <p>The tags of the detector resource.</p>
6204
6204
  * @public
6205
6205
  */
6206
- Tags?: Record<string, string>;
6206
+ Tags?: Record<string, string> | undefined;
6207
6207
  /**
6208
6208
  * <p>Describes the features that have been enabled for the detector.</p>
6209
6209
  * @public
6210
6210
  */
6211
- Features?: DetectorFeatureConfigurationResult[];
6211
+ Features?: DetectorFeatureConfigurationResult[] | undefined;
6212
6212
  }
6213
6213
  /**
6214
6214
  * @public
@@ -6240,7 +6240,7 @@ export interface GetFilterResponse {
6240
6240
  * <p>The description of the filter.</p>
6241
6241
  * @public
6242
6242
  */
6243
- Description?: string;
6243
+ Description?: string | undefined;
6244
6244
  /**
6245
6245
  * <p>Specifies the action that is to be applied to the findings that match the filter.</p>
6246
6246
  * @public
@@ -6251,7 +6251,7 @@ export interface GetFilterResponse {
6251
6251
  * order in which this filter is applied to the findings.</p>
6252
6252
  * @public
6253
6253
  */
6254
- Rank?: number;
6254
+ Rank?: number | undefined;
6255
6255
  /**
6256
6256
  * <p>Represents the criteria to be used in the filter for querying findings.</p>
6257
6257
  * @public
@@ -6261,7 +6261,7 @@ export interface GetFilterResponse {
6261
6261
  * <p>The tags of the filter resource.</p>
6262
6262
  * @public
6263
6263
  */
6264
- Tags?: Record<string, string>;
6264
+ Tags?: Record<string, string> | undefined;
6265
6265
  }
6266
6266
  /**
6267
6267
  * @public
@@ -6284,7 +6284,7 @@ export interface GetFindingsRequest {
6284
6284
  * <p>Represents the criteria used for sorting findings.</p>
6285
6285
  * @public
6286
6286
  */
6287
- SortCriteria?: SortCriteria;
6287
+ SortCriteria?: SortCriteria | undefined;
6288
6288
  }
6289
6289
  /**
6290
6290
  * @public
@@ -6329,30 +6329,30 @@ export interface GetFindingsStatisticsRequest {
6329
6329
  * <p>The types of finding statistics to retrieve.</p>
6330
6330
  * @public
6331
6331
  */
6332
- FindingStatisticTypes?: FindingStatisticType[];
6332
+ FindingStatisticTypes?: FindingStatisticType[] | undefined;
6333
6333
  /**
6334
6334
  * <p>Represents the criteria that is used for querying findings.</p>
6335
6335
  * @public
6336
6336
  */
6337
- FindingCriteria?: FindingCriteria;
6337
+ FindingCriteria?: FindingCriteria | undefined;
6338
6338
  /**
6339
6339
  * <p>Displays the findings statistics grouped by one of the listed valid values.</p>
6340
6340
  * @public
6341
6341
  */
6342
- GroupBy?: GroupByType;
6342
+ GroupBy?: GroupByType | undefined;
6343
6343
  /**
6344
6344
  * <p>Displays the sorted findings in the requested order. The default
6345
6345
  * value of <code>orderBy</code> is <code>DESC</code>.</p>
6346
6346
  * <p>You can use this parameter only with the <code>groupBy</code> parameter.</p>
6347
6347
  * @public
6348
6348
  */
6349
- OrderBy?: OrderBy;
6349
+ OrderBy?: OrderBy | undefined;
6350
6350
  /**
6351
6351
  * <p>The maximum number of results to be returned in the response. The default value is 25.</p>
6352
6352
  * <p>You can use this parameter only with the <code>groupBy</code> parameter.</p>
6353
6353
  * @public
6354
6354
  */
6355
- MaxResults?: number;
6355
+ MaxResults?: number | undefined;
6356
6356
  }
6357
6357
  /**
6358
6358
  * @public
@@ -6368,7 +6368,7 @@ export interface GetFindingsStatisticsResponse {
6368
6368
  * <p>This parameter is currently not supported.</p>
6369
6369
  * @public
6370
6370
  */
6371
- NextToken?: string;
6371
+ NextToken?: string | undefined;
6372
6372
  }
6373
6373
  /**
6374
6374
  * @public
@@ -6383,7 +6383,7 @@ export interface GetInvitationsCountResponse {
6383
6383
  * <p>The number of received invitations.</p>
6384
6384
  * @public
6385
6385
  */
6386
- InvitationsCount?: number;
6386
+ InvitationsCount?: number | undefined;
6387
6387
  }
6388
6388
  /**
6389
6389
  * @public
@@ -6447,7 +6447,7 @@ export interface GetIPSetResponse {
6447
6447
  * <p>The tags of the IPSet resource.</p>
6448
6448
  * @public
6449
6449
  */
6450
- Tags?: Record<string, string>;
6450
+ Tags?: Record<string, string> | undefined;
6451
6451
  }
6452
6452
  /**
6453
6453
  * @public
@@ -6482,7 +6482,7 @@ export interface MalwareProtectionPlanStatusReason {
6482
6482
  * <p>Issue code.</p>
6483
6483
  * @public
6484
6484
  */
6485
- Code?: string;
6485
+ Code?: string | undefined;
6486
6486
  /**
6487
6487
  * <p>Issue message that specifies the reason. For information
6488
6488
  * about potential troubleshooting steps, see
@@ -6490,7 +6490,7 @@ export interface MalwareProtectionPlanStatusReason {
6490
6490
  * <i>GuardDuty User Guide</i>.</p>
6491
6491
  * @public
6492
6492
  */
6493
- Message?: string;
6493
+ Message?: string | undefined;
6494
6494
  }
6495
6495
  /**
6496
6496
  * @public
@@ -6500,46 +6500,46 @@ export interface GetMalwareProtectionPlanResponse {
6500
6500
  * <p>Amazon Resource Name (ARN) of the protected resource.</p>
6501
6501
  * @public
6502
6502
  */
6503
- Arn?: string;
6503
+ Arn?: string | undefined;
6504
6504
  /**
6505
6505
  * <p>Amazon Resource Name (ARN) of the IAM role that includes the permissions to scan and
6506
6506
  * add tags to the associated protected resource.</p>
6507
6507
  * @public
6508
6508
  */
6509
- Role?: string;
6509
+ Role?: string | undefined;
6510
6510
  /**
6511
6511
  * <p>Information about the protected resource that is associated with the created
6512
6512
  * Malware Protection plan. Presently, <code>S3Bucket</code> is the only supported
6513
6513
  * protected resource.</p>
6514
6514
  * @public
6515
6515
  */
6516
- ProtectedResource?: CreateProtectedResource;
6516
+ ProtectedResource?: CreateProtectedResource | undefined;
6517
6517
  /**
6518
6518
  * <p>Information about whether the tags will be added to the S3 object after scanning.</p>
6519
6519
  * @public
6520
6520
  */
6521
- Actions?: MalwareProtectionPlanActions;
6521
+ Actions?: MalwareProtectionPlanActions | undefined;
6522
6522
  /**
6523
6523
  * <p>The timestamp when the Malware Protection plan resource was created.</p>
6524
6524
  * @public
6525
6525
  */
6526
- CreatedAt?: Date;
6526
+ CreatedAt?: Date | undefined;
6527
6527
  /**
6528
6528
  * <p>Malware Protection plan status.</p>
6529
6529
  * @public
6530
6530
  */
6531
- Status?: MalwareProtectionPlanStatus;
6531
+ Status?: MalwareProtectionPlanStatus | undefined;
6532
6532
  /**
6533
6533
  * <p>Information about the issue code and message associated to the status of
6534
6534
  * your Malware Protection plan.</p>
6535
6535
  * @public
6536
6536
  */
6537
- StatusReasons?: MalwareProtectionPlanStatusReason[];
6537
+ StatusReasons?: MalwareProtectionPlanStatusReason[] | undefined;
6538
6538
  /**
6539
6539
  * <p>Tags added to the Malware Protection plan resource.</p>
6540
6540
  * @public
6541
6541
  */
6542
- Tags?: Record<string, string>;
6542
+ Tags?: Record<string, string> | undefined;
6543
6543
  }
6544
6544
  /**
6545
6545
  * @public
@@ -6580,7 +6580,7 @@ export interface ScanConditionPair {
6580
6580
  * matched.</p>
6581
6581
  * @public
6582
6582
  */
6583
- Value?: string;
6583
+ Value?: string | undefined;
6584
6584
  }
6585
6585
  /**
6586
6586
  * <p>Contains information about the condition.</p>
@@ -6606,13 +6606,13 @@ export interface ScanResourceCriteria {
6606
6606
  * resource.</p>
6607
6607
  * @public
6608
6608
  */
6609
- Include?: Partial<Record<ScanCriterionKey, ScanCondition>>;
6609
+ Include?: Partial<Record<ScanCriterionKey, ScanCondition>> | undefined;
6610
6610
  /**
6611
6611
  * <p>Represents condition that when matched will prevent a malware scan for a certain
6612
6612
  * resource.</p>
6613
6613
  * @public
6614
6614
  */
6615
- Exclude?: Partial<Record<ScanCriterionKey, ScanCondition>>;
6615
+ Exclude?: Partial<Record<ScanCriterionKey, ScanCondition>> | undefined;
6616
6616
  }
6617
6617
  /**
6618
6618
  * @public
@@ -6622,12 +6622,12 @@ export interface GetMalwareScanSettingsResponse {
6622
6622
  * <p>Represents the criteria to be used in the filter for scanning resources.</p>
6623
6623
  * @public
6624
6624
  */
6625
- ScanResourceCriteria?: ScanResourceCriteria;
6625
+ ScanResourceCriteria?: ScanResourceCriteria | undefined;
6626
6626
  /**
6627
6627
  * <p>An enum value representing possible snapshot preservation settings.</p>
6628
6628
  * @public
6629
6629
  */
6630
- EbsSnapshotPreservation?: EbsSnapshotPreservation;
6630
+ EbsSnapshotPreservation?: EbsSnapshotPreservation | undefined;
6631
6631
  }
6632
6632
  /**
6633
6633
  * @public
@@ -6650,22 +6650,22 @@ export interface Master {
6650
6650
  * <p>The ID of the account used as the administrator account.</p>
6651
6651
  * @public
6652
6652
  */
6653
- AccountId?: string;
6653
+ AccountId?: string | undefined;
6654
6654
  /**
6655
6655
  * <p>The value used to validate the administrator account to the member account.</p>
6656
6656
  * @public
6657
6657
  */
6658
- InvitationId?: string;
6658
+ InvitationId?: string | undefined;
6659
6659
  /**
6660
6660
  * <p>The status of the relationship between the administrator and member accounts.</p>
6661
6661
  * @public
6662
6662
  */
6663
- RelationshipStatus?: string;
6663
+ RelationshipStatus?: string | undefined;
6664
6664
  /**
6665
6665
  * <p>The timestamp when the invitation was sent.</p>
6666
6666
  * @public
6667
6667
  */
6668
- InvitedAt?: string;
6668
+ InvitedAt?: string | undefined;
6669
6669
  }
6670
6670
  /**
6671
6671
  * @public
@@ -6704,19 +6704,19 @@ export interface MemberAdditionalConfigurationResult {
6704
6704
  * account.</p>
6705
6705
  * @public
6706
6706
  */
6707
- Name?: OrgFeatureAdditionalConfiguration;
6707
+ Name?: OrgFeatureAdditionalConfiguration | undefined;
6708
6708
  /**
6709
6709
  * <p>Indicates the status of the additional configuration that is set for the member
6710
6710
  * account.</p>
6711
6711
  * @public
6712
6712
  */
6713
- Status?: FeatureStatus;
6713
+ Status?: FeatureStatus | undefined;
6714
6714
  /**
6715
6715
  * <p>The timestamp at which the additional configuration was set for the member account. This
6716
6716
  * is in UTC format.</p>
6717
6717
  * @public
6718
6718
  */
6719
- UpdatedAt?: Date;
6719
+ UpdatedAt?: Date | undefined;
6720
6720
  }
6721
6721
  /**
6722
6722
  * <p>Contains information about the features for the member account.</p>
@@ -6727,23 +6727,23 @@ export interface MemberFeaturesConfigurationResult {
6727
6727
  * <p>Indicates the name of the feature that is enabled for the detector.</p>
6728
6728
  * @public
6729
6729
  */
6730
- Name?: OrgFeature;
6730
+ Name?: OrgFeature | undefined;
6731
6731
  /**
6732
6732
  * <p>Indicates the status of the feature that is enabled for the detector.</p>
6733
6733
  * @public
6734
6734
  */
6735
- Status?: FeatureStatus;
6735
+ Status?: FeatureStatus | undefined;
6736
6736
  /**
6737
6737
  * <p>The timestamp at which the feature object was updated.</p>
6738
6738
  * @public
6739
6739
  */
6740
- UpdatedAt?: Date;
6740
+ UpdatedAt?: Date | undefined;
6741
6741
  /**
6742
6742
  * <p>Indicates the additional configuration of the feature that is configured for the member
6743
6743
  * account.</p>
6744
6744
  * @public
6745
6745
  */
6746
- AdditionalConfiguration?: MemberAdditionalConfigurationResult[];
6746
+ AdditionalConfiguration?: MemberAdditionalConfigurationResult[] | undefined;
6747
6747
  }
6748
6748
  /**
6749
6749
  * <p>Contains information on which data sources are enabled for a member account.</p>
@@ -6761,12 +6761,12 @@ export interface MemberDataSourceConfiguration {
6761
6761
  * <p>Contains information on the status of data sources for the account.</p>
6762
6762
  * @public
6763
6763
  */
6764
- DataSources?: DataSourceConfigurationsResult;
6764
+ DataSources?: DataSourceConfigurationsResult | undefined;
6765
6765
  /**
6766
6766
  * <p>Contains information about the status of the features for the member account.</p>
6767
6767
  * @public
6768
6768
  */
6769
- Features?: MemberFeaturesConfigurationResult[];
6769
+ Features?: MemberFeaturesConfigurationResult[] | undefined;
6770
6770
  }
6771
6771
  /**
6772
6772
  * @public
@@ -6816,7 +6816,7 @@ export interface Member {
6816
6816
  * <p>The detector ID of the member account.</p>
6817
6817
  * @public
6818
6818
  */
6819
- DetectorId?: string;
6819
+ DetectorId?: string | undefined;
6820
6820
  /**
6821
6821
  * <p>The administrator account ID.</p>
6822
6822
  * @public
@@ -6836,7 +6836,7 @@ export interface Member {
6836
6836
  * <p>The timestamp when the invitation was sent.</p>
6837
6837
  * @public
6838
6838
  */
6839
- InvitedAt?: string;
6839
+ InvitedAt?: string | undefined;
6840
6840
  /**
6841
6841
  * <p>The last-updated timestamp of the member.</p>
6842
6842
  * @public
@@ -6846,7 +6846,7 @@ export interface Member {
6846
6846
  * <p>The administrator account ID.</p>
6847
6847
  * @public
6848
6848
  */
6849
- AdministratorId?: string;
6849
+ AdministratorId?: string | undefined;
6850
6850
  }
6851
6851
  /**
6852
6852
  * @public
@@ -6875,13 +6875,13 @@ export interface OrganizationFeatureStatisticsAdditionalConfiguration {
6875
6875
  * <p>Name of the additional configuration within a feature.</p>
6876
6876
  * @public
6877
6877
  */
6878
- Name?: OrgFeatureAdditionalConfiguration;
6878
+ Name?: OrgFeatureAdditionalConfiguration | undefined;
6879
6879
  /**
6880
6880
  * <p>Total number of accounts that have enabled the additional
6881
6881
  * configuration.</p>
6882
6882
  * @public
6883
6883
  */
6884
- EnabledAccountsCount?: number;
6884
+ EnabledAccountsCount?: number | undefined;
6885
6885
  }
6886
6886
  /**
6887
6887
  * <p>Information about the number of accounts
@@ -6893,18 +6893,18 @@ export interface OrganizationFeatureStatistics {
6893
6893
  * <p>Name of the feature.</p>
6894
6894
  * @public
6895
6895
  */
6896
- Name?: OrgFeature;
6896
+ Name?: OrgFeature | undefined;
6897
6897
  /**
6898
6898
  * <p>Total number of accounts that have enabled a specific
6899
6899
  * feature.</p>
6900
6900
  * @public
6901
6901
  */
6902
- EnabledAccountsCount?: number;
6902
+ EnabledAccountsCount?: number | undefined;
6903
6903
  /**
6904
6904
  * <p>Name of the additional configuration.</p>
6905
6905
  * @public
6906
6906
  */
6907
- AdditionalConfiguration?: OrganizationFeatureStatisticsAdditionalConfiguration[];
6907
+ AdditionalConfiguration?: OrganizationFeatureStatisticsAdditionalConfiguration[] | undefined;
6908
6908
  }
6909
6909
  /**
6910
6910
  * <p>Information about the coverage statistics of the
@@ -6920,30 +6920,30 @@ export interface OrganizationStatistics {
6920
6920
  * <p>Total number of accounts in your Amazon Web Services organization.</p>
6921
6921
  * @public
6922
6922
  */
6923
- TotalAccountsCount?: number;
6923
+ TotalAccountsCount?: number | undefined;
6924
6924
  /**
6925
6925
  * <p>Total number of accounts in your Amazon Web Services organization
6926
6926
  * that are associated with GuardDuty.</p>
6927
6927
  * @public
6928
6928
  */
6929
- MemberAccountsCount?: number;
6929
+ MemberAccountsCount?: number | undefined;
6930
6930
  /**
6931
6931
  * <p>Total number of active accounts in your Amazon Web Services
6932
6932
  * organization that are associated with GuardDuty.</p>
6933
6933
  * @public
6934
6934
  */
6935
- ActiveAccountsCount?: number;
6935
+ ActiveAccountsCount?: number | undefined;
6936
6936
  /**
6937
6937
  * <p>Total number of accounts that have enabled GuardDuty.</p>
6938
6938
  * @public
6939
6939
  */
6940
- EnabledAccountsCount?: number;
6940
+ EnabledAccountsCount?: number | undefined;
6941
6941
  /**
6942
6942
  * <p>Retrieves the coverage
6943
6943
  * statistics for each feature.</p>
6944
6944
  * @public
6945
6945
  */
6946
- CountByFeature?: OrganizationFeatureStatistics[];
6946
+ CountByFeature?: OrganizationFeatureStatistics[] | undefined;
6947
6947
  }
6948
6948
  /**
6949
6949
  * @internal