@aws-sdk/client-detective 3.687.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.
@@ -33,27 +33,27 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
33
33
  export declare class AccessDeniedException extends __BaseException {
34
34
  readonly name: "AccessDeniedException";
35
35
  readonly $fault: "client";
36
- Message?: string;
36
+ Message?: string | undefined;
37
37
  /**
38
38
  * <p>The SDK default error code associated with the access denied exception.</p>
39
39
  * @public
40
40
  */
41
- ErrorCode?: ErrorCode;
41
+ ErrorCode?: ErrorCode | undefined;
42
42
  /**
43
43
  * <p>The SDK default explanation of why access was denied.</p>
44
44
  * @public
45
45
  */
46
- ErrorCodeReason?: string;
46
+ ErrorCodeReason?: string | undefined;
47
47
  /**
48
48
  * <p>The error code associated with the access denied exception.</p>
49
49
  * @public
50
50
  */
51
- SubErrorCode?: ErrorCode;
51
+ SubErrorCode?: ErrorCode | undefined;
52
52
  /**
53
53
  * <p> An explanation of why access was denied.</p>
54
54
  * @public
55
55
  */
56
- SubErrorCodeReason?: string;
56
+ SubErrorCodeReason?: string | undefined;
57
57
  /**
58
58
  * @internal
59
59
  */
@@ -66,7 +66,7 @@ export declare class AccessDeniedException extends __BaseException {
66
66
  export declare class ConflictException extends __BaseException {
67
67
  readonly name: "ConflictException";
68
68
  readonly $fault: "client";
69
- Message?: string;
69
+ Message?: string | undefined;
70
70
  /**
71
71
  * @internal
72
72
  */
@@ -79,7 +79,7 @@ export declare class ConflictException extends __BaseException {
79
79
  export declare class InternalServerException extends __BaseException {
80
80
  readonly name: "InternalServerException";
81
81
  readonly $fault: "server";
82
- Message?: string;
82
+ Message?: string | undefined;
83
83
  /**
84
84
  * @internal
85
85
  */
@@ -92,7 +92,7 @@ export declare class InternalServerException extends __BaseException {
92
92
  export declare class ResourceNotFoundException extends __BaseException {
93
93
  readonly name: "ResourceNotFoundException";
94
94
  readonly $fault: "client";
95
- Message?: string;
95
+ Message?: string | undefined;
96
96
  /**
97
97
  * @internal
98
98
  */
@@ -105,17 +105,17 @@ export declare class ResourceNotFoundException extends __BaseException {
105
105
  export declare class ValidationException extends __BaseException {
106
106
  readonly name: "ValidationException";
107
107
  readonly $fault: "client";
108
- Message?: string;
108
+ Message?: string | undefined;
109
109
  /**
110
110
  * <p>The error code associated with the validation failure.</p>
111
111
  * @public
112
112
  */
113
- ErrorCode?: ErrorCode;
113
+ ErrorCode?: ErrorCode | undefined;
114
114
  /**
115
115
  * <p> An explanation of why validation failed.</p>
116
116
  * @public
117
117
  */
118
- ErrorCodeReason?: string;
118
+ ErrorCodeReason?: string | undefined;
119
119
  /**
120
120
  * @internal
121
121
  */
@@ -150,19 +150,19 @@ export interface Administrator {
150
150
  * account for the organization.</p>
151
151
  * @public
152
152
  */
153
- AccountId?: string;
153
+ AccountId?: string | undefined;
154
154
  /**
155
155
  * <p>The ARN of the organization behavior graph.</p>
156
156
  * @public
157
157
  */
158
- GraphArn?: string;
158
+ GraphArn?: string | undefined;
159
159
  /**
160
160
  * <p>The date and time when the Detective administrator account was enabled. The
161
161
  * value is an ISO8601 formatted string. For example,
162
162
  * <code>2021-08-18T16:35:56.284Z</code>.</p>
163
163
  * @public
164
164
  */
165
- DelegationTime?: Date;
165
+ DelegationTime?: Date | undefined;
166
166
  }
167
167
  /**
168
168
  * @public
@@ -216,7 +216,7 @@ export interface TimestampForCollection {
216
216
  * ISO8601 formatted string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
217
217
  * @public
218
218
  */
219
- Timestamp?: Date;
219
+ Timestamp?: Date | undefined;
220
220
  }
221
221
  /**
222
222
  * <p>Details on data source packages for members of the behavior graph.</p>
@@ -227,17 +227,17 @@ export interface MembershipDatasources {
227
227
  * <p>The account identifier of the Amazon Web Services account.</p>
228
228
  * @public
229
229
  */
230
- AccountId?: string;
230
+ AccountId?: string | undefined;
231
231
  /**
232
232
  * <p>The ARN of the organization behavior graph.</p>
233
233
  * @public
234
234
  */
235
- GraphArn?: string;
235
+ GraphArn?: string | undefined;
236
236
  /**
237
237
  * <p>Details on when a data source package was added to a behavior graph.</p>
238
238
  * @public
239
239
  */
240
- DatasourcePackageIngestHistory?: Partial<Record<DatasourcePackage, Partial<Record<DatasourcePackageIngestState, TimestampForCollection>>>>;
240
+ DatasourcePackageIngestHistory?: Partial<Record<DatasourcePackage, Partial<Record<DatasourcePackageIngestState, TimestampForCollection>>>> | undefined;
241
241
  }
242
242
  /**
243
243
  * <p>A member account that was included in a request but for which the request could not be
@@ -250,12 +250,12 @@ export interface UnprocessedAccount {
250
250
  * processed.</p>
251
251
  * @public
252
252
  */
253
- AccountId?: string;
253
+ AccountId?: string | undefined;
254
254
  /**
255
255
  * <p>The reason that the member account request could not be processed.</p>
256
256
  * @public
257
257
  */
258
- Reason?: string;
258
+ Reason?: string | undefined;
259
259
  }
260
260
  /**
261
261
  * @public
@@ -265,12 +265,12 @@ export interface BatchGetGraphMemberDatasourcesResponse {
265
265
  * <p>Details on the status of data source packages for members of the behavior graph.</p>
266
266
  * @public
267
267
  */
268
- MemberDatasources?: MembershipDatasources[];
268
+ MemberDatasources?: MembershipDatasources[] | undefined;
269
269
  /**
270
270
  * <p>Accounts that data source package information could not be retrieved for.</p>
271
271
  * @public
272
272
  */
273
- UnprocessedAccounts?: UnprocessedAccount[];
273
+ UnprocessedAccounts?: UnprocessedAccount[] | undefined;
274
274
  }
275
275
  /**
276
276
  * @public
@@ -291,13 +291,13 @@ export interface UnprocessedGraph {
291
291
  * <p>The ARN of the organization behavior graph.</p>
292
292
  * @public
293
293
  */
294
- GraphArn?: string;
294
+ GraphArn?: string | undefined;
295
295
  /**
296
296
  * <p>The reason data source package information could not be processed for a behavior
297
297
  * graph.</p>
298
298
  * @public
299
299
  */
300
- Reason?: string;
300
+ Reason?: string | undefined;
301
301
  }
302
302
  /**
303
303
  * @public
@@ -307,12 +307,12 @@ export interface BatchGetMembershipDatasourcesResponse {
307
307
  * <p>Details on the data source package history for an member of the behavior graph.</p>
308
308
  * @public
309
309
  */
310
- MembershipDatasources?: MembershipDatasources[];
310
+ MembershipDatasources?: MembershipDatasources[] | undefined;
311
311
  /**
312
312
  * <p>Graphs that data source package information could not be retrieved for.</p>
313
313
  * @public
314
314
  */
315
- UnprocessedGraphs?: UnprocessedGraph[];
315
+ UnprocessedGraphs?: UnprocessedGraph[] | undefined;
316
316
  }
317
317
  /**
318
318
  * @public
@@ -324,7 +324,7 @@ export interface CreateGraphRequest {
324
324
  * Each tag value can contain up to 256 characters.</p>
325
325
  * @public
326
326
  */
327
- Tags?: Record<string, string>;
327
+ Tags?: Record<string, string> | undefined;
328
328
  }
329
329
  /**
330
330
  * @public
@@ -334,7 +334,7 @@ export interface CreateGraphResponse {
334
334
  * <p>The ARN of the new behavior graph.</p>
335
335
  * @public
336
336
  */
337
- GraphArn?: string;
337
+ GraphArn?: string | undefined;
338
338
  }
339
339
  /**
340
340
  * <p>This request cannot be completed for one of the following reasons.</p>
@@ -353,12 +353,12 @@ export interface CreateGraphResponse {
353
353
  export declare class ServiceQuotaExceededException extends __BaseException {
354
354
  readonly name: "ServiceQuotaExceededException";
355
355
  readonly $fault: "client";
356
- Message?: string;
356
+ Message?: string | undefined;
357
357
  /**
358
358
  * <p>The type of resource that has exceeded the service quota.</p>
359
359
  * @public
360
360
  */
361
- Resources?: string[];
361
+ Resources?: string[] | undefined;
362
362
  /**
363
363
  * @internal
364
364
  */
@@ -378,7 +378,7 @@ export interface CreateMembersRequest {
378
378
  * accounts.</p>
379
379
  * @public
380
380
  */
381
- Message?: string;
381
+ Message?: string | undefined;
382
382
  /**
383
383
  * <p>if set to <code>true</code>, then the invited accounts do not receive email
384
384
  * notifications. By default, this is set to <code>false</code>, and the invited accounts
@@ -387,7 +387,7 @@ export interface CreateMembersRequest {
387
387
  * notifications.</p>
388
388
  * @public
389
389
  */
390
- DisableEmailNotification?: boolean;
390
+ DisableEmailNotification?: boolean | undefined;
391
391
  /**
392
392
  * <p>The list of Amazon Web Services accounts to invite or to enable. You can invite or enable
393
393
  * up to 50 accounts at a time. For each invited account, the account list contains the
@@ -446,13 +446,13 @@ export interface DatasourcePackageUsageInfo {
446
446
  * <p>Total volume of data in bytes per day ingested for a given data source package.</p>
447
447
  * @public
448
448
  */
449
- VolumeUsageInBytes?: number;
449
+ VolumeUsageInBytes?: number | undefined;
450
450
  /**
451
451
  * <p>The data and time when the member account data volume was last updated. The value is an
452
452
  * ISO8601 formatted string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
453
453
  * @public
454
454
  */
455
- VolumeUsageUpdateTime?: Date;
455
+ VolumeUsageUpdateTime?: Date | undefined;
456
456
  }
457
457
  /**
458
458
  * <p>Details about a member account in a behavior graph.</p>
@@ -463,17 +463,17 @@ export interface MemberDetail {
463
463
  * <p>The Amazon Web Services account identifier for the member account.</p>
464
464
  * @public
465
465
  */
466
- AccountId?: string;
466
+ AccountId?: string | undefined;
467
467
  /**
468
468
  * <p>The Amazon Web Services account root user email address for the member account.</p>
469
469
  * @public
470
470
  */
471
- EmailAddress?: string;
471
+ EmailAddress?: string | undefined;
472
472
  /**
473
473
  * <p>The ARN of the behavior graph.</p>
474
474
  * @public
475
475
  */
476
- GraphArn?: string;
476
+ GraphArn?: string | undefined;
477
477
  /**
478
478
  * @deprecated
479
479
  *
@@ -481,13 +481,13 @@ export interface MemberDetail {
481
481
  * graph.</p>
482
482
  * @public
483
483
  */
484
- MasterId?: string;
484
+ MasterId?: string | undefined;
485
485
  /**
486
486
  * <p>The Amazon Web Services account identifier of the administrator account for the behavior
487
487
  * graph.</p>
488
488
  * @public
489
489
  */
490
- AdministratorId?: string;
490
+ AdministratorId?: string | undefined;
491
491
  /**
492
492
  * <p>The current membership status of the member account. The status can have one of the
493
493
  * following values:</p>
@@ -533,7 +533,7 @@ export interface MemberDetail {
533
533
  * Detective administrator account did not enable are not included.</p>
534
534
  * @public
535
535
  */
536
- Status?: MemberStatus;
536
+ Status?: MemberStatus | undefined;
537
537
  /**
538
538
  * <p>For member accounts with a status of <code>ACCEPTED_BUT_DISABLED</code>, the reason that
539
539
  * the member account is not enabled.</p>
@@ -553,27 +553,27 @@ export interface MemberDetail {
553
553
  * </ul>
554
554
  * @public
555
555
  */
556
- DisabledReason?: MemberDisabledReason;
556
+ DisabledReason?: MemberDisabledReason | undefined;
557
557
  /**
558
558
  * <p>For invited accounts, the date and time that Detective sent the invitation to
559
559
  * the account. The value is an ISO8601 formatted string. For example,
560
560
  * <code>2021-08-18T16:35:56.284Z</code>.</p>
561
561
  * @public
562
562
  */
563
- InvitedTime?: Date;
563
+ InvitedTime?: Date | undefined;
564
564
  /**
565
565
  * <p>The date and time that the member account was last updated. The value is an ISO8601
566
566
  * formatted string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
567
567
  * @public
568
568
  */
569
- UpdatedTime?: Date;
569
+ UpdatedTime?: Date | undefined;
570
570
  /**
571
571
  * @deprecated
572
572
  *
573
573
  * <p>The data volume in bytes per day for the member account.</p>
574
574
  * @public
575
575
  */
576
- VolumeUsageInBytes?: number;
576
+ VolumeUsageInBytes?: number | undefined;
577
577
  /**
578
578
  * @deprecated
579
579
  *
@@ -581,7 +581,7 @@ export interface MemberDetail {
581
581
  * ISO8601 formatted string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
582
582
  * @public
583
583
  */
584
- VolumeUsageUpdatedTime?: Date;
584
+ VolumeUsageUpdatedTime?: Date | undefined;
585
585
  /**
586
586
  * @deprecated
587
587
  *
@@ -594,7 +594,7 @@ export interface MemberDetail {
594
594
  * data volume. </p>
595
595
  * @public
596
596
  */
597
- PercentOfGraphUtilization?: number;
597
+ PercentOfGraphUtilization?: number | undefined;
598
598
  /**
599
599
  * @deprecated
600
600
  *
@@ -602,7 +602,7 @@ export interface MemberDetail {
602
602
  * an ISO8601 formatted string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
603
603
  * @public
604
604
  */
605
- PercentOfGraphUtilizationUpdatedTime?: Date;
605
+ PercentOfGraphUtilizationUpdatedTime?: Date | undefined;
606
606
  /**
607
607
  * <p>The type of behavior graph membership.</p>
608
608
  * <p>For an organization account in the organization behavior graph, the type is
@@ -611,17 +611,17 @@ export interface MemberDetail {
611
611
  * <code>INVITATION</code>. </p>
612
612
  * @public
613
613
  */
614
- InvitationType?: InvitationType;
614
+ InvitationType?: InvitationType | undefined;
615
615
  /**
616
616
  * <p>Details on the volume of usage for each data source package in a behavior graph.</p>
617
617
  * @public
618
618
  */
619
- VolumeUsageByDatasourcePackage?: Partial<Record<DatasourcePackage, DatasourcePackageUsageInfo>>;
619
+ VolumeUsageByDatasourcePackage?: Partial<Record<DatasourcePackage, DatasourcePackageUsageInfo>> | undefined;
620
620
  /**
621
621
  * <p>The state of a data source package for the behavior graph.</p>
622
622
  * @public
623
623
  */
624
- DatasourcePackageIngestStates?: Partial<Record<DatasourcePackage, DatasourcePackageIngestState>>;
624
+ DatasourcePackageIngestStates?: Partial<Record<DatasourcePackage, DatasourcePackageIngestState>> | undefined;
625
625
  }
626
626
  /**
627
627
  * @public
@@ -633,7 +633,7 @@ export interface CreateMembersResponse {
633
633
  * and that passed verification and are being sent an invitation or are being enabled.</p>
634
634
  * @public
635
635
  */
636
- Members?: MemberDetail[];
636
+ Members?: MemberDetail[] | undefined;
637
637
  /**
638
638
  * <p>The list of accounts for which Detective was unable to process the invitation
639
639
  * or enablement request. For each account, the list provides the reason why the request could
@@ -641,7 +641,7 @@ export interface CreateMembersResponse {
641
641
  * behavior graph.</p>
642
642
  * @public
643
643
  */
644
- UnprocessedAccounts?: UnprocessedAccount[];
644
+ UnprocessedAccounts?: UnprocessedAccount[] | undefined;
645
645
  }
646
646
  /**
647
647
  * @public
@@ -677,14 +677,14 @@ export interface DeleteMembersResponse {
677
677
  * <p>The list of Amazon Web Services account identifiers for the member accounts that Detective successfully removed from the behavior graph.</p>
678
678
  * @public
679
679
  */
680
- AccountIds?: string[];
680
+ AccountIds?: string[] | undefined;
681
681
  /**
682
682
  * <p>The list of member accounts that Detective was not able to remove from the
683
683
  * behavior graph. For each member account, provides the reason that the deletion could not be
684
684
  * processed.</p>
685
685
  * @public
686
686
  */
687
- UnprocessedAccounts?: UnprocessedAccount[];
687
+ UnprocessedAccounts?: UnprocessedAccount[] | undefined;
688
688
  }
689
689
  /**
690
690
  * @public
@@ -705,7 +705,7 @@ export interface DescribeOrganizationConfigurationResponse {
705
705
  * in the organization behavior graph.</p>
706
706
  * @public
707
707
  */
708
- AutoEnable?: boolean;
708
+ AutoEnable?: boolean | undefined;
709
709
  }
710
710
  /**
711
711
  * <p>The request cannot be completed because too many other requests are occurring at the
@@ -715,7 +715,7 @@ export interface DescribeOrganizationConfigurationResponse {
715
715
  export declare class TooManyRequestsException extends __BaseException {
716
716
  readonly name: "TooManyRequestsException";
717
717
  readonly $fault: "client";
718
- Message?: string;
718
+ Message?: string | undefined;
719
719
  /**
720
720
  * @internal
721
721
  */
@@ -818,56 +818,56 @@ export interface GetInvestigationResponse {
818
818
  * <p>The Amazon Resource Name (ARN) of the behavior graph.</p>
819
819
  * @public
820
820
  */
821
- GraphArn?: string;
821
+ GraphArn?: string | undefined;
822
822
  /**
823
823
  * <p>The investigation ID of the investigation report.</p>
824
824
  * @public
825
825
  */
826
- InvestigationId?: string;
826
+ InvestigationId?: string | undefined;
827
827
  /**
828
828
  * <p>The unique Amazon Resource Name (ARN). Detective supports IAM user ARNs and IAM role ARNs.</p>
829
829
  * @public
830
830
  */
831
- EntityArn?: string;
831
+ EntityArn?: string | undefined;
832
832
  /**
833
833
  * <p>Type of entity. For example, Amazon Web Services accounts, such as an IAM user and/or IAM role.</p>
834
834
  * @public
835
835
  */
836
- EntityType?: EntityType;
836
+ EntityType?: EntityType | undefined;
837
837
  /**
838
838
  * <p>The creation time of the investigation report in UTC time stamp format.</p>
839
839
  * @public
840
840
  */
841
- CreatedTime?: Date;
841
+ CreatedTime?: Date | undefined;
842
842
  /**
843
843
  * <p>The start date and time used to set the scope time within which you want to generate the investigation report. The value is an UTC ISO8601 formatted
844
844
  * string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
845
845
  * @public
846
846
  */
847
- ScopeStartTime?: Date;
847
+ ScopeStartTime?: Date | undefined;
848
848
  /**
849
849
  * <p>The data and time when the investigation began. The value is an UTC ISO8601 formatted
850
850
  * string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
851
851
  * @public
852
852
  */
853
- ScopeEndTime?: Date;
853
+ ScopeEndTime?: Date | undefined;
854
854
  /**
855
855
  * <p>The status based on the completion status of the investigation.</p>
856
856
  * @public
857
857
  */
858
- Status?: Status;
858
+ Status?: Status | undefined;
859
859
  /**
860
860
  * <p>The severity assigned is based on the likelihood and impact of the indicators of
861
861
  * compromise discovered in the investigation.</p>
862
862
  * @public
863
863
  */
864
- Severity?: Severity;
864
+ Severity?: Severity | undefined;
865
865
  /**
866
866
  * <p>The current state of the investigation. An archived investigation indicates that you
867
867
  * have completed reviewing the investigation.</p>
868
868
  * @public
869
869
  */
870
- State?: State;
870
+ State?: State | undefined;
871
871
  }
872
872
  /**
873
873
  * @public
@@ -897,14 +897,14 @@ export interface GetMembersResponse {
897
897
  * request.</p>
898
898
  * @public
899
899
  */
900
- MemberDetails?: MemberDetail[];
900
+ MemberDetails?: MemberDetail[] | undefined;
901
901
  /**
902
902
  * <p>The requested member accounts for which Detective was unable to return member
903
903
  * details.</p>
904
904
  * <p>For each account, provides the reason why the request could not be processed.</p>
905
905
  * @public
906
906
  */
907
- UnprocessedAccounts?: UnprocessedAccount[];
907
+ UnprocessedAccounts?: UnprocessedAccount[] | undefined;
908
908
  }
909
909
  /**
910
910
  * @public
@@ -921,12 +921,12 @@ export interface ListDatasourcePackagesRequest {
921
921
  * token.</p>
922
922
  * @public
923
923
  */
924
- NextToken?: string;
924
+ NextToken?: string | undefined;
925
925
  /**
926
926
  * <p>The maximum number of results to return.</p>
927
927
  * @public
928
928
  */
929
- MaxResults?: number;
929
+ MaxResults?: number | undefined;
930
930
  }
931
931
  /**
932
932
  * <p>Details about the data source packages ingested by your behavior graph.</p>
@@ -937,12 +937,12 @@ export interface DatasourcePackageIngestDetail {
937
937
  * <p>Details on which data source packages are ingested for a member account.</p>
938
938
  * @public
939
939
  */
940
- DatasourcePackageIngestState?: DatasourcePackageIngestState;
940
+ DatasourcePackageIngestState?: DatasourcePackageIngestState | undefined;
941
941
  /**
942
942
  * <p>The date a data source package was enabled for this account</p>
943
943
  * @public
944
944
  */
945
- LastIngestStateChange?: Partial<Record<DatasourcePackageIngestState, TimestampForCollection>>;
945
+ LastIngestStateChange?: Partial<Record<DatasourcePackageIngestState, TimestampForCollection>> | undefined;
946
946
  }
947
947
  /**
948
948
  * @public
@@ -952,14 +952,14 @@ export interface ListDatasourcePackagesResponse {
952
952
  * <p>Details on the data source packages active in the behavior graph.</p>
953
953
  * @public
954
954
  */
955
- DatasourcePackages?: Partial<Record<DatasourcePackage, DatasourcePackageIngestDetail>>;
955
+ DatasourcePackages?: Partial<Record<DatasourcePackage, DatasourcePackageIngestDetail>> | undefined;
956
956
  /**
957
957
  * <p>For requests to get the next page of results, the pagination token that was returned
958
958
  * with the previous set of results. The initial request does not include a pagination
959
959
  * token.</p>
960
960
  * @public
961
961
  */
962
- NextToken?: string;
962
+ NextToken?: string | undefined;
963
963
  }
964
964
  /**
965
965
  * @public
@@ -971,13 +971,13 @@ export interface ListGraphsRequest {
971
971
  * token.</p>
972
972
  * @public
973
973
  */
974
- NextToken?: string;
974
+ NextToken?: string | undefined;
975
975
  /**
976
976
  * <p>The maximum number of graphs to return at a time. The total must be less than the
977
977
  * overall limit on the number of results to return, which is currently 200.</p>
978
978
  * @public
979
979
  */
980
- MaxResults?: number;
980
+ MaxResults?: number | undefined;
981
981
  }
982
982
  /**
983
983
  * <p>A behavior graph in Detective.</p>
@@ -988,13 +988,13 @@ export interface Graph {
988
988
  * <p>The ARN of the behavior graph.</p>
989
989
  * @public
990
990
  */
991
- Arn?: string;
991
+ Arn?: string | undefined;
992
992
  /**
993
993
  * <p>The date and time that the behavior graph was created. The value is an ISO8601 formatted
994
994
  * string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
995
995
  * @public
996
996
  */
997
- CreatedTime?: Date;
997
+ CreatedTime?: Date | undefined;
998
998
  }
999
999
  /**
1000
1000
  * @public
@@ -1004,13 +1004,13 @@ export interface ListGraphsResponse {
1004
1004
  * <p>A list of behavior graphs that the account is an administrator account for.</p>
1005
1005
  * @public
1006
1006
  */
1007
- GraphList?: Graph[];
1007
+ GraphList?: Graph[] | undefined;
1008
1008
  /**
1009
1009
  * <p>If there are more behavior graphs remaining in the results, then this is the pagination
1010
1010
  * token to use to request the next page of behavior graphs.</p>
1011
1011
  * @public
1012
1012
  */
1013
- NextToken?: string;
1013
+ NextToken?: string | undefined;
1014
1014
  }
1015
1015
  /**
1016
1016
  * @public
@@ -1048,18 +1048,18 @@ export interface ListIndicatorsRequest {
1048
1048
  * <p>For the list of indicators of compromise that are generated by Detective investigations, see <a href="https://docs.aws.amazon.com/detective/latest/userguide/detective-investigations.html">Detective investigations</a>.</p>
1049
1049
  * @public
1050
1050
  */
1051
- IndicatorType?: IndicatorType;
1051
+ IndicatorType?: IndicatorType | undefined;
1052
1052
  /**
1053
1053
  * <p>Lists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.</p>
1054
1054
  * <p>Each pagination token expires after 24 hours. Using an expired pagination token will return a Validation Exception error.</p>
1055
1055
  * @public
1056
1056
  */
1057
- NextToken?: string;
1057
+ NextToken?: string | undefined;
1058
1058
  /**
1059
1059
  * <p>Lists the maximum number of indicators in a page.</p>
1060
1060
  * @public
1061
1061
  */
1062
- MaxResults?: number;
1062
+ MaxResults?: number | undefined;
1063
1063
  }
1064
1064
  /**
1065
1065
  * @public
@@ -1081,12 +1081,12 @@ export interface FlaggedIpAddressDetail {
1081
1081
  * <p>IP address of the suspicious entity.</p>
1082
1082
  * @public
1083
1083
  */
1084
- IpAddress?: string;
1084
+ IpAddress?: string | undefined;
1085
1085
  /**
1086
1086
  * <p>Details the reason the IP address was flagged as suspicious.</p>
1087
1087
  * @public
1088
1088
  */
1089
- Reason?: Reason;
1089
+ Reason?: Reason | undefined;
1090
1090
  }
1091
1091
  /**
1092
1092
  * <p>Contains information on unusual and impossible travel in an account.</p>
@@ -1097,27 +1097,27 @@ export interface ImpossibleTravelDetail {
1097
1097
  * <p>IP address where the resource was first used in the impossible travel.</p>
1098
1098
  * @public
1099
1099
  */
1100
- StartingIpAddress?: string;
1100
+ StartingIpAddress?: string | undefined;
1101
1101
  /**
1102
1102
  * <p>IP address where the resource was last used in the impossible travel.</p>
1103
1103
  * @public
1104
1104
  */
1105
- EndingIpAddress?: string;
1105
+ EndingIpAddress?: string | undefined;
1106
1106
  /**
1107
1107
  * <p>Location where the resource was first used in the impossible travel.</p>
1108
1108
  * @public
1109
1109
  */
1110
- StartingLocation?: string;
1110
+ StartingLocation?: string | undefined;
1111
1111
  /**
1112
1112
  * <p>Location where the resource was last used in the impossible travel.</p>
1113
1113
  * @public
1114
1114
  */
1115
- EndingLocation?: string;
1115
+ EndingLocation?: string | undefined;
1116
1116
  /**
1117
1117
  * <p>Returns the time difference between the first and last timestamp the resource was used.</p>
1118
1118
  * @public
1119
1119
  */
1120
- HourlyTimeDelta?: number;
1120
+ HourlyTimeDelta?: number | undefined;
1121
1121
  }
1122
1122
  /**
1123
1123
  * <p>Details new Autonomous System Organizations (ASOs) used either at the resource or account level. </p>
@@ -1128,12 +1128,12 @@ export interface NewAsoDetail {
1128
1128
  * <p>Details about the new Autonomous System Organization (ASO).</p>
1129
1129
  * @public
1130
1130
  */
1131
- Aso?: string;
1131
+ Aso?: string | undefined;
1132
1132
  /**
1133
1133
  * <p>Checks if the Autonomous System Organization (ASO) is new for the entire account.</p>
1134
1134
  * @public
1135
1135
  */
1136
- IsNewForEntireAccount?: boolean;
1136
+ IsNewForEntireAccount?: boolean | undefined;
1137
1137
  }
1138
1138
  /**
1139
1139
  * <p>Details new geolocations used either at the resource or account level. For example, lists an observed geolocation that is an infrequent or unused location based on previous user activity.</p>
@@ -1144,17 +1144,17 @@ export interface NewGeolocationDetail {
1144
1144
  * <p>Location where the resource was accessed.</p>
1145
1145
  * @public
1146
1146
  */
1147
- Location?: string;
1147
+ Location?: string | undefined;
1148
1148
  /**
1149
1149
  * <p>IP address using which the resource was accessed.</p>
1150
1150
  * @public
1151
1151
  */
1152
- IpAddress?: string;
1152
+ IpAddress?: string | undefined;
1153
1153
  /**
1154
1154
  * <p>Checks if the geolocation is new for the entire account.</p>
1155
1155
  * @public
1156
1156
  */
1157
- IsNewForEntireAccount?: boolean;
1157
+ IsNewForEntireAccount?: boolean | undefined;
1158
1158
  }
1159
1159
  /**
1160
1160
  * <p>Details new user agents used either at the resource or account level.</p>
@@ -1165,12 +1165,12 @@ export interface NewUserAgentDetail {
1165
1165
  * <p>New user agent which accessed the resource.</p>
1166
1166
  * @public
1167
1167
  */
1168
- UserAgent?: string;
1168
+ UserAgent?: string | undefined;
1169
1169
  /**
1170
1170
  * <p>Checks if the user agent is new for the entire account.</p>
1171
1171
  * @public
1172
1172
  */
1173
- IsNewForEntireAccount?: boolean;
1173
+ IsNewForEntireAccount?: boolean | undefined;
1174
1174
  }
1175
1175
  /**
1176
1176
  * <p>Details related activities associated with a potential security event. Lists all distinct categories of evidence that are connected to the resource or the finding group.</p>
@@ -1181,17 +1181,17 @@ export interface RelatedFindingDetail {
1181
1181
  * <p>The Amazon Resource Name (ARN) of the related finding.</p>
1182
1182
  * @public
1183
1183
  */
1184
- Arn?: string;
1184
+ Arn?: string | undefined;
1185
1185
  /**
1186
1186
  * <p>The type of finding.</p>
1187
1187
  * @public
1188
1188
  */
1189
- Type?: string;
1189
+ Type?: string | undefined;
1190
1190
  /**
1191
1191
  * <p>The IP address of the finding.</p>
1192
1192
  * @public
1193
1193
  */
1194
- IpAddress?: string;
1194
+ IpAddress?: string | undefined;
1195
1195
  }
1196
1196
  /**
1197
1197
  * <p>Details multiple activities as they related to a potential security event. Detective uses graph analysis technique that infers relationships between findings and entities, and groups them together as a finding group.</p>
@@ -1202,7 +1202,7 @@ export interface RelatedFindingGroupDetail {
1202
1202
  * <p>The unique identifier for the finding group.</p>
1203
1203
  * @public
1204
1204
  */
1205
- Id?: string;
1205
+ Id?: string | undefined;
1206
1206
  }
1207
1207
  /**
1208
1208
  * <p>Details tactics, techniques, and procedures (TTPs) used in a potential security event. Tactics are based on <a href="https://attack.mitre.org/matrices/enterprise/">MITRE ATT&CK Matrix for
@@ -1214,37 +1214,37 @@ export interface TTPsObservedDetail {
1214
1214
  * <p>The tactic used, identified by the investigation.</p>
1215
1215
  * @public
1216
1216
  */
1217
- Tactic?: string;
1217
+ Tactic?: string | undefined;
1218
1218
  /**
1219
1219
  * <p>The technique used, identified by the investigation. </p>
1220
1220
  * @public
1221
1221
  */
1222
- Technique?: string;
1222
+ Technique?: string | undefined;
1223
1223
  /**
1224
1224
  * <p>The procedure used, identified by the investigation.</p>
1225
1225
  * @public
1226
1226
  */
1227
- Procedure?: string;
1227
+ Procedure?: string | undefined;
1228
1228
  /**
1229
1229
  * <p>The IP address where the tactics, techniques, and procedure (TTP) was observed.</p>
1230
1230
  * @public
1231
1231
  */
1232
- IpAddress?: string;
1232
+ IpAddress?: string | undefined;
1233
1233
  /**
1234
1234
  * <p>The name of the API where the tactics, techniques, and procedure (TTP) was observed.</p>
1235
1235
  * @public
1236
1236
  */
1237
- APIName?: string;
1237
+ APIName?: string | undefined;
1238
1238
  /**
1239
1239
  * <p>The total number of successful API requests.</p>
1240
1240
  * @public
1241
1241
  */
1242
- APISuccessCount?: number;
1242
+ APISuccessCount?: number | undefined;
1243
1243
  /**
1244
1244
  * <p>The total number of failed API requests.</p>
1245
1245
  * @public
1246
1246
  */
1247
- APIFailureCount?: number;
1247
+ APIFailureCount?: number | undefined;
1248
1248
  }
1249
1249
  /**
1250
1250
  * <p>Details about the indicators of compromise which are used to determine if a resource is involved in a security incident. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident. For the list of indicators of compromise that are generated by Detective investigations, see <a href="https://docs.aws.amazon.com/detective/latest/userguide/detective-investigations.html">Detective investigations</a>.</p>
@@ -1255,42 +1255,42 @@ export interface IndicatorDetail {
1255
1255
  * <p>Details about the indicator of compromise.</p>
1256
1256
  * @public
1257
1257
  */
1258
- TTPsObservedDetail?: TTPsObservedDetail;
1258
+ TTPsObservedDetail?: TTPsObservedDetail | undefined;
1259
1259
  /**
1260
1260
  * <p>Identifies unusual and impossible user activity for an account. </p>
1261
1261
  * @public
1262
1262
  */
1263
- ImpossibleTravelDetail?: ImpossibleTravelDetail;
1263
+ ImpossibleTravelDetail?: ImpossibleTravelDetail | undefined;
1264
1264
  /**
1265
1265
  * <p>Suspicious IP addresses that are flagged, which indicates critical or severe threats based on threat intelligence by Detective. This indicator is derived from Amazon Web Services threat intelligence.</p>
1266
1266
  * @public
1267
1267
  */
1268
- FlaggedIpAddressDetail?: FlaggedIpAddressDetail;
1268
+ FlaggedIpAddressDetail?: FlaggedIpAddressDetail | undefined;
1269
1269
  /**
1270
1270
  * <p>Contains details about the new geographic location.</p>
1271
1271
  * @public
1272
1272
  */
1273
- NewGeolocationDetail?: NewGeolocationDetail;
1273
+ NewGeolocationDetail?: NewGeolocationDetail | undefined;
1274
1274
  /**
1275
1275
  * <p>Contains details about the new Autonomous System Organization (ASO).</p>
1276
1276
  * @public
1277
1277
  */
1278
- NewAsoDetail?: NewAsoDetail;
1278
+ NewAsoDetail?: NewAsoDetail | undefined;
1279
1279
  /**
1280
1280
  * <p>Contains details about the new user agent.</p>
1281
1281
  * @public
1282
1282
  */
1283
- NewUserAgentDetail?: NewUserAgentDetail;
1283
+ NewUserAgentDetail?: NewUserAgentDetail | undefined;
1284
1284
  /**
1285
1285
  * <p>Contains details about related findings.</p>
1286
1286
  * @public
1287
1287
  */
1288
- RelatedFindingDetail?: RelatedFindingDetail;
1288
+ RelatedFindingDetail?: RelatedFindingDetail | undefined;
1289
1289
  /**
1290
1290
  * <p>Contains details about related finding groups.</p>
1291
1291
  * @public
1292
1292
  */
1293
- RelatedFindingGroupDetail?: RelatedFindingGroupDetail;
1293
+ RelatedFindingGroupDetail?: RelatedFindingGroupDetail | undefined;
1294
1294
  }
1295
1295
  /**
1296
1296
  * <p>Detective investigations triages indicators of compromises such as a finding
@@ -1305,12 +1305,12 @@ export interface Indicator {
1305
1305
  * <p>The type of indicator. </p>
1306
1306
  * @public
1307
1307
  */
1308
- IndicatorType?: IndicatorType;
1308
+ IndicatorType?: IndicatorType | undefined;
1309
1309
  /**
1310
1310
  * <p>Details about the indicators of compromise that are used to determine if a resource is involved in a security incident. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident.</p>
1311
1311
  * @public
1312
1312
  */
1313
- IndicatorDetail?: IndicatorDetail;
1313
+ IndicatorDetail?: IndicatorDetail | undefined;
1314
1314
  }
1315
1315
  /**
1316
1316
  * @public
@@ -1320,23 +1320,23 @@ export interface ListIndicatorsResponse {
1320
1320
  * <p>The Amazon Resource Name (ARN) of the behavior graph.</p>
1321
1321
  * @public
1322
1322
  */
1323
- GraphArn?: string;
1323
+ GraphArn?: string | undefined;
1324
1324
  /**
1325
1325
  * <p>The investigation ID of the investigation report.</p>
1326
1326
  * @public
1327
1327
  */
1328
- InvestigationId?: string;
1328
+ InvestigationId?: string | undefined;
1329
1329
  /**
1330
1330
  * <p>Lists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.</p>
1331
1331
  * <p>Each pagination token expires after 24 hours. Using an expired pagination token will return a Validation Exception error.</p>
1332
1332
  * @public
1333
1333
  */
1334
- NextToken?: string;
1334
+ NextToken?: string | undefined;
1335
1335
  /**
1336
1336
  * <p>Lists the indicators of compromise.</p>
1337
1337
  * @public
1338
1338
  */
1339
- Indicators?: Indicator[];
1339
+ Indicators?: Indicator[] | undefined;
1340
1340
  }
1341
1341
  /**
1342
1342
  * <p>Contains details on the time range used to filter data.</p>
@@ -1374,27 +1374,27 @@ export interface FilterCriteria {
1374
1374
  * <p>Filter the investigation results based on the severity.</p>
1375
1375
  * @public
1376
1376
  */
1377
- Severity?: StringFilter;
1377
+ Severity?: StringFilter | undefined;
1378
1378
  /**
1379
1379
  * <p>Filter the investigation results based on the status.</p>
1380
1380
  * @public
1381
1381
  */
1382
- Status?: StringFilter;
1382
+ Status?: StringFilter | undefined;
1383
1383
  /**
1384
1384
  * <p>Filter the investigation results based on the state.</p>
1385
1385
  * @public
1386
1386
  */
1387
- State?: StringFilter;
1387
+ State?: StringFilter | undefined;
1388
1388
  /**
1389
1389
  * <p>Filter the investigation results based on the Amazon Resource Name (ARN) of the entity.</p>
1390
1390
  * @public
1391
1391
  */
1392
- EntityArn?: StringFilter;
1392
+ EntityArn?: StringFilter | undefined;
1393
1393
  /**
1394
1394
  * <p>Filter the investigation results based on when the investigation was created.</p>
1395
1395
  * @public
1396
1396
  */
1397
- CreatedTime?: DateFilter;
1397
+ CreatedTime?: DateFilter | undefined;
1398
1398
  }
1399
1399
  /**
1400
1400
  * @public
@@ -1430,12 +1430,12 @@ export interface SortCriteria {
1430
1430
  * <p>Represents the <code>Field</code> attribute to sort investigations.</p>
1431
1431
  * @public
1432
1432
  */
1433
- Field?: Field;
1433
+ Field?: Field | undefined;
1434
1434
  /**
1435
1435
  * <p>The order by which the sorted findings are displayed.</p>
1436
1436
  * @public
1437
1437
  */
1438
- SortOrder?: SortOrder;
1438
+ SortOrder?: SortOrder | undefined;
1439
1439
  }
1440
1440
  /**
1441
1441
  * @public
@@ -1451,22 +1451,22 @@ export interface ListInvestigationsRequest {
1451
1451
  * <p>Each pagination token expires after 24 hours. Using an expired pagination token will return a Validation Exception error.</p>
1452
1452
  * @public
1453
1453
  */
1454
- NextToken?: string;
1454
+ NextToken?: string | undefined;
1455
1455
  /**
1456
1456
  * <p>Lists the maximum number of investigations in a page.</p>
1457
1457
  * @public
1458
1458
  */
1459
- MaxResults?: number;
1459
+ MaxResults?: number | undefined;
1460
1460
  /**
1461
1461
  * <p>Filters the investigation results based on a criteria.</p>
1462
1462
  * @public
1463
1463
  */
1464
- FilterCriteria?: FilterCriteria;
1464
+ FilterCriteria?: FilterCriteria | undefined;
1465
1465
  /**
1466
1466
  * <p>Sorts the investigation results based on a criteria.</p>
1467
1467
  * @public
1468
1468
  */
1469
- SortCriteria?: SortCriteria;
1469
+ SortCriteria?: SortCriteria | undefined;
1470
1470
  }
1471
1471
  /**
1472
1472
  * <p>Details about the investigation related to a potential security event identified by Detective.</p>
@@ -1477,38 +1477,38 @@ export interface InvestigationDetail {
1477
1477
  * <p>The investigation ID of the investigation report.</p>
1478
1478
  * @public
1479
1479
  */
1480
- InvestigationId?: string;
1480
+ InvestigationId?: string | undefined;
1481
1481
  /**
1482
1482
  * <p>Severity based on the likelihood and impact of the indicators of compromise discovered in the investigation.</p>
1483
1483
  * @public
1484
1484
  */
1485
- Severity?: Severity;
1485
+ Severity?: Severity | undefined;
1486
1486
  /**
1487
1487
  * <p>Status based on the completion status of the investigation.</p>
1488
1488
  * @public
1489
1489
  */
1490
- Status?: Status;
1490
+ Status?: Status | undefined;
1491
1491
  /**
1492
1492
  * <p>The current state of the investigation. An archived investigation indicates you have completed reviewing the investigation.</p>
1493
1493
  * @public
1494
1494
  */
1495
- State?: State;
1495
+ State?: State | undefined;
1496
1496
  /**
1497
1497
  * <p>The time stamp of the creation time of the investigation report. The value is an UTC ISO8601 formatted
1498
1498
  * string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
1499
1499
  * @public
1500
1500
  */
1501
- CreatedTime?: Date;
1501
+ CreatedTime?: Date | undefined;
1502
1502
  /**
1503
1503
  * <p>The unique Amazon Resource Name (ARN) of the IAM user and IAM role.</p>
1504
1504
  * @public
1505
1505
  */
1506
- EntityArn?: string;
1506
+ EntityArn?: string | undefined;
1507
1507
  /**
1508
1508
  * <p>Type of entity. For example, Amazon Web Services accounts, such as IAM user and role.</p>
1509
1509
  * @public
1510
1510
  */
1511
- EntityType?: EntityType;
1511
+ EntityType?: EntityType | undefined;
1512
1512
  }
1513
1513
  /**
1514
1514
  * @public
@@ -1518,13 +1518,13 @@ export interface ListInvestigationsResponse {
1518
1518
  * <p>Lists the summary of uncommon behavior or malicious activity which indicates a compromise.</p>
1519
1519
  * @public
1520
1520
  */
1521
- InvestigationDetails?: InvestigationDetail[];
1521
+ InvestigationDetails?: InvestigationDetail[] | undefined;
1522
1522
  /**
1523
1523
  * <p>Lists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.</p>
1524
1524
  * <p>Each pagination token expires after 24 hours. </p>
1525
1525
  * @public
1526
1526
  */
1527
- NextToken?: string;
1527
+ NextToken?: string | undefined;
1528
1528
  }
1529
1529
  /**
1530
1530
  * @public
@@ -1536,14 +1536,14 @@ export interface ListInvitationsRequest {
1536
1536
  * pagination token.</p>
1537
1537
  * @public
1538
1538
  */
1539
- NextToken?: string;
1539
+ NextToken?: string | undefined;
1540
1540
  /**
1541
1541
  * <p>The maximum number of behavior graph invitations to return in the response. The total
1542
1542
  * must be less than the overall limit on the number of results to return, which is currently
1543
1543
  * 200.</p>
1544
1544
  * @public
1545
1545
  */
1546
- MaxResults?: number;
1546
+ MaxResults?: number | undefined;
1547
1547
  }
1548
1548
  /**
1549
1549
  * @public
@@ -1554,13 +1554,13 @@ export interface ListInvitationsResponse {
1554
1554
  * invitations.</p>
1555
1555
  * @public
1556
1556
  */
1557
- Invitations?: MemberDetail[];
1557
+ Invitations?: MemberDetail[] | undefined;
1558
1558
  /**
1559
1559
  * <p>If there are more behavior graphs remaining in the results, then this is the pagination
1560
1560
  * token to use to request the next page of behavior graphs.</p>
1561
1561
  * @public
1562
1562
  */
1563
- NextToken?: string;
1563
+ NextToken?: string | undefined;
1564
1564
  }
1565
1565
  /**
1566
1566
  * @public
@@ -1577,13 +1577,13 @@ export interface ListMembersRequest {
1577
1577
  * pagination token.</p>
1578
1578
  * @public
1579
1579
  */
1580
- NextToken?: string;
1580
+ NextToken?: string | undefined;
1581
1581
  /**
1582
1582
  * <p>The maximum number of member accounts to include in the response. The total must be less
1583
1583
  * than the overall limit on the number of results to return, which is currently 200.</p>
1584
1584
  * @public
1585
1585
  */
1586
- MaxResults?: number;
1586
+ MaxResults?: number | undefined;
1587
1587
  }
1588
1588
  /**
1589
1589
  * @public
@@ -1599,13 +1599,13 @@ export interface ListMembersResponse {
1599
1599
  * accounts.</p>
1600
1600
  * @public
1601
1601
  */
1602
- MemberDetails?: MemberDetail[];
1602
+ MemberDetails?: MemberDetail[] | undefined;
1603
1603
  /**
1604
1604
  * <p>If there are more member accounts remaining in the results, then use this pagination
1605
1605
  * token to request the next page of member accounts.</p>
1606
1606
  * @public
1607
1607
  */
1608
- NextToken?: string;
1608
+ NextToken?: string | undefined;
1609
1609
  }
1610
1610
  /**
1611
1611
  * @public
@@ -1617,12 +1617,12 @@ export interface ListOrganizationAdminAccountsRequest {
1617
1617
  * token.</p>
1618
1618
  * @public
1619
1619
  */
1620
- NextToken?: string;
1620
+ NextToken?: string | undefined;
1621
1621
  /**
1622
1622
  * <p>The maximum number of results to return.</p>
1623
1623
  * @public
1624
1624
  */
1625
- MaxResults?: number;
1625
+ MaxResults?: number | undefined;
1626
1626
  }
1627
1627
  /**
1628
1628
  * @public
@@ -1632,13 +1632,13 @@ export interface ListOrganizationAdminAccountsResponse {
1632
1632
  * <p>The list of Detective administrator accounts.</p>
1633
1633
  * @public
1634
1634
  */
1635
- Administrators?: Administrator[];
1635
+ Administrators?: Administrator[] | undefined;
1636
1636
  /**
1637
1637
  * <p>If there are more accounts remaining in the results, then this is the pagination token
1638
1638
  * to use to request the next page of accounts.</p>
1639
1639
  * @public
1640
1640
  */
1641
- NextToken?: string;
1641
+ NextToken?: string | undefined;
1642
1642
  }
1643
1643
  /**
1644
1644
  * @public
@@ -1659,7 +1659,7 @@ export interface ListTagsForResourceResponse {
1659
1659
  * values.</p>
1660
1660
  * @public
1661
1661
  */
1662
- Tags?: Record<string, string>;
1662
+ Tags?: Record<string, string> | undefined;
1663
1663
  }
1664
1664
  /**
1665
1665
  * @public
@@ -1707,7 +1707,7 @@ export interface StartInvestigationResponse {
1707
1707
  * <p>The investigation ID of the investigation report.</p>
1708
1708
  * @public
1709
1709
  */
1710
- InvestigationId?: string;
1710
+ InvestigationId?: string | undefined;
1711
1711
  }
1712
1712
  /**
1713
1713
  * @public
@@ -1818,7 +1818,7 @@ export interface UpdateOrganizationConfigurationRequest {
1818
1818
  * in the organization behavior graph.</p>
1819
1819
  * @public
1820
1820
  */
1821
- AutoEnable?: boolean;
1821
+ AutoEnable?: boolean | undefined;
1822
1822
  }
1823
1823
  /**
1824
1824
  * @internal