@aws-sdk/client-detective 3.379.1 → 3.382.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.
@@ -5,6 +5,7 @@ import { DetectiveServiceException as __BaseException } from "./DetectiveService
5
5
  */
6
6
  export interface AcceptInvitationRequest {
7
7
  /**
8
+ * @public
8
9
  * <p>The ARN of the behavior graph that the member account is accepting the invitation
9
10
  * for.</p>
10
11
  * <p>The member account status in the behavior graph must be <code>INVITED</code>.</p>
@@ -34,18 +35,22 @@ export declare class AccessDeniedException extends __BaseException {
34
35
  readonly $fault: "client";
35
36
  Message?: string;
36
37
  /**
38
+ * @public
37
39
  * <p>The SDK default error code associated with the access denied exception.</p>
38
40
  */
39
41
  ErrorCode?: ErrorCode | string;
40
42
  /**
43
+ * @public
41
44
  * <p>The SDK default explanation of why access was denied.</p>
42
45
  */
43
46
  ErrorCodeReason?: string;
44
47
  /**
48
+ * @public
45
49
  * <p>The error code associated with the access denied exception.</p>
46
50
  */
47
51
  SubErrorCode?: ErrorCode | string;
48
52
  /**
53
+ * @public
49
54
  * <p> An explanation of why access was denied.</p>
50
55
  */
51
56
  SubErrorCodeReason?: string;
@@ -102,10 +107,12 @@ export declare class ValidationException extends __BaseException {
102
107
  readonly $fault: "client";
103
108
  Message?: string;
104
109
  /**
110
+ * @public
105
111
  * <p>The error code associated with the validation failure.</p>
106
112
  */
107
113
  ErrorCode?: ErrorCode | string;
108
114
  /**
115
+ * @public
109
116
  * <p> An explanation of why validation failed.</p>
110
117
  */
111
118
  ErrorCodeReason?: string;
@@ -121,10 +128,12 @@ export declare class ValidationException extends __BaseException {
121
128
  */
122
129
  export interface Account {
123
130
  /**
131
+ * @public
124
132
  * <p>The account identifier of the Amazon Web Services account.</p>
125
133
  */
126
134
  AccountId: string | undefined;
127
135
  /**
136
+ * @public
128
137
  * <p>The Amazon Web Services account root user email address for the Amazon Web Services
129
138
  * account.</p>
130
139
  */
@@ -137,15 +146,18 @@ export interface Account {
137
146
  */
138
147
  export interface Administrator {
139
148
  /**
149
+ * @public
140
150
  * <p>The Amazon Web Services account identifier of the Detective administrator
141
151
  * account for the organization.</p>
142
152
  */
143
153
  AccountId?: string;
144
154
  /**
155
+ * @public
145
156
  * <p>The ARN of the organization behavior graph.</p>
146
157
  */
147
158
  GraphArn?: string;
148
159
  /**
160
+ * @public
149
161
  * <p>The date and time when the Detective administrator account was enabled. The
150
162
  * value is an ISO8601 formatted string. For example,
151
163
  * <code>2021-08-18T16:35:56.284Z</code>.</p>
@@ -157,10 +169,12 @@ export interface Administrator {
157
169
  */
158
170
  export interface BatchGetGraphMemberDatasourcesRequest {
159
171
  /**
172
+ * @public
160
173
  * <p>The ARN of the behavior graph.</p>
161
174
  */
162
175
  GraphArn: string | undefined;
163
176
  /**
177
+ * @public
164
178
  * <p>The list of Amazon Web Services accounts to get data source package information
165
179
  * on.</p>
166
180
  */
@@ -198,6 +212,7 @@ export type DatasourcePackageIngestState = (typeof DatasourcePackageIngestState)
198
212
  */
199
213
  export interface TimestampForCollection {
200
214
  /**
215
+ * @public
201
216
  * <p>The data and time when data collection began for a source package. The value is an
202
217
  * ISO8601 formatted string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
203
218
  */
@@ -209,14 +224,17 @@ export interface TimestampForCollection {
209
224
  */
210
225
  export interface MembershipDatasources {
211
226
  /**
227
+ * @public
212
228
  * <p>The account identifier of the Amazon Web Services account.</p>
213
229
  */
214
230
  AccountId?: string;
215
231
  /**
232
+ * @public
216
233
  * <p>The ARN of the organization behavior graph.</p>
217
234
  */
218
235
  GraphArn?: string;
219
236
  /**
237
+ * @public
220
238
  * <p>Details on when a data source package was added to a behavior graph.</p>
221
239
  */
222
240
  DatasourcePackageIngestHistory?: Record<string, Record<string, TimestampForCollection>>;
@@ -228,11 +246,13 @@ export interface MembershipDatasources {
228
246
  */
229
247
  export interface UnprocessedAccount {
230
248
  /**
249
+ * @public
231
250
  * <p>The Amazon Web Services account identifier of the member account that was not
232
251
  * processed.</p>
233
252
  */
234
253
  AccountId?: string;
235
254
  /**
255
+ * @public
236
256
  * <p>The reason that the member account request could not be processed.</p>
237
257
  */
238
258
  Reason?: string;
@@ -242,10 +262,12 @@ export interface UnprocessedAccount {
242
262
  */
243
263
  export interface BatchGetGraphMemberDatasourcesResponse {
244
264
  /**
265
+ * @public
245
266
  * <p>Details on the status of data source packages for members of the behavior graph.</p>
246
267
  */
247
268
  MemberDatasources?: MembershipDatasources[];
248
269
  /**
270
+ * @public
249
271
  * <p>Accounts that data source package information could not be retrieved for.</p>
250
272
  */
251
273
  UnprocessedAccounts?: UnprocessedAccount[];
@@ -255,6 +277,7 @@ export interface BatchGetGraphMemberDatasourcesResponse {
255
277
  */
256
278
  export interface BatchGetMembershipDatasourcesRequest {
257
279
  /**
280
+ * @public
258
281
  * <p>The ARN of the behavior graph.</p>
259
282
  */
260
283
  GraphArns: string[] | undefined;
@@ -265,10 +288,12 @@ export interface BatchGetMembershipDatasourcesRequest {
265
288
  */
266
289
  export interface UnprocessedGraph {
267
290
  /**
291
+ * @public
268
292
  * <p>The ARN of the organization behavior graph.</p>
269
293
  */
270
294
  GraphArn?: string;
271
295
  /**
296
+ * @public
272
297
  * <p>The reason data source package information could not be processed for a behavior
273
298
  * graph.</p>
274
299
  */
@@ -279,10 +304,12 @@ export interface UnprocessedGraph {
279
304
  */
280
305
  export interface BatchGetMembershipDatasourcesResponse {
281
306
  /**
307
+ * @public
282
308
  * <p>Details on the data source package history for an member of the behavior graph.</p>
283
309
  */
284
310
  MembershipDatasources?: MembershipDatasources[];
285
311
  /**
312
+ * @public
286
313
  * <p>Graphs that data source package information could not be retrieved for.</p>
287
314
  */
288
315
  UnprocessedGraphs?: UnprocessedGraph[];
@@ -292,6 +319,7 @@ export interface BatchGetMembershipDatasourcesResponse {
292
319
  */
293
320
  export interface CreateGraphRequest {
294
321
  /**
322
+ * @public
295
323
  * <p>The tags to assign to the new behavior graph. You can add up to 50 tags. For each tag,
296
324
  * you provide the tag key and the tag value. Each tag key can contain up to 128 characters.
297
325
  * Each tag value can contain up to 256 characters.</p>
@@ -303,6 +331,7 @@ export interface CreateGraphRequest {
303
331
  */
304
332
  export interface CreateGraphResponse {
305
333
  /**
334
+ * @public
306
335
  * <p>The ARN of the new behavior graph.</p>
307
336
  */
308
337
  GraphArn?: string;
@@ -331,6 +360,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
331
360
  readonly $fault: "client";
332
361
  Message?: string;
333
362
  /**
363
+ * @public
334
364
  * <p>The type of resource that has exceeded the service quota.</p>
335
365
  */
336
366
  Resources?: string[];
@@ -344,15 +374,18 @@ export declare class ServiceQuotaExceededException extends __BaseException {
344
374
  */
345
375
  export interface CreateMembersRequest {
346
376
  /**
377
+ * @public
347
378
  * <p>The ARN of the behavior graph.</p>
348
379
  */
349
380
  GraphArn: string | undefined;
350
381
  /**
382
+ * @public
351
383
  * <p>Customized message text to include in the invitation email message to the invited member
352
384
  * accounts.</p>
353
385
  */
354
386
  Message?: string;
355
387
  /**
388
+ * @public
356
389
  * <p>if set to <code>true</code>, then the invited accounts do not receive email
357
390
  * notifications. By default, this is set to <code>false</code>, and the invited accounts
358
391
  * receive email notifications.</p>
@@ -361,6 +394,7 @@ export interface CreateMembersRequest {
361
394
  */
362
395
  DisableEmailNotification?: boolean;
363
396
  /**
397
+ * @public
364
398
  * <p>The list of Amazon Web Services accounts to invite or to enable. You can invite or enable
365
399
  * up to 50 accounts at a time. For each invited account, the account list contains the
366
400
  * account identifier and the Amazon Web Services account root user email address. For
@@ -414,10 +448,12 @@ export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
414
448
  */
415
449
  export interface DatasourcePackageUsageInfo {
416
450
  /**
451
+ * @public
417
452
  * <p>Total volume of data in bytes per day ingested for a given data source package.</p>
418
453
  */
419
454
  VolumeUsageInBytes?: number;
420
455
  /**
456
+ * @public
421
457
  * <p>The data and time when the member account data volume was last updated. The value is an
422
458
  * ISO8601 formatted string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
423
459
  */
@@ -429,18 +465,22 @@ export interface DatasourcePackageUsageInfo {
429
465
  */
430
466
  export interface MemberDetail {
431
467
  /**
468
+ * @public
432
469
  * <p>The Amazon Web Services account identifier for the member account.</p>
433
470
  */
434
471
  AccountId?: string;
435
472
  /**
473
+ * @public
436
474
  * <p>The Amazon Web Services account root user email address for the member account.</p>
437
475
  */
438
476
  EmailAddress?: string;
439
477
  /**
478
+ * @public
440
479
  * <p>The ARN of the behavior graph.</p>
441
480
  */
442
481
  GraphArn?: string;
443
482
  /**
483
+ * @public
444
484
  * @deprecated
445
485
  *
446
486
  * <p>The Amazon Web Services account identifier of the administrator account for the behavior
@@ -448,11 +488,13 @@ export interface MemberDetail {
448
488
  */
449
489
  MasterId?: string;
450
490
  /**
491
+ * @public
451
492
  * <p>The Amazon Web Services account identifier of the administrator account for the behavior
452
493
  * graph.</p>
453
494
  */
454
495
  AdministratorId?: string;
455
496
  /**
497
+ * @public
456
498
  * <p>The current membership status of the member account. The status can have one of the
457
499
  * following values:</p>
458
500
  * <ul>
@@ -498,6 +540,7 @@ export interface MemberDetail {
498
540
  */
499
541
  Status?: MemberStatus | string;
500
542
  /**
543
+ * @public
501
544
  * <p>For member accounts with a status of <code>ACCEPTED_BUT_DISABLED</code>, the reason that
502
545
  * the member account is not enabled.</p>
503
546
  * <p>The reason can have one of the following values:</p>
@@ -517,23 +560,27 @@ export interface MemberDetail {
517
560
  */
518
561
  DisabledReason?: MemberDisabledReason | string;
519
562
  /**
563
+ * @public
520
564
  * <p>For invited accounts, the date and time that Detective sent the invitation to
521
565
  * the account. The value is an ISO8601 formatted string. For example,
522
566
  * <code>2021-08-18T16:35:56.284Z</code>.</p>
523
567
  */
524
568
  InvitedTime?: Date;
525
569
  /**
570
+ * @public
526
571
  * <p>The date and time that the member account was last updated. The value is an ISO8601
527
572
  * formatted string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
528
573
  */
529
574
  UpdatedTime?: Date;
530
575
  /**
576
+ * @public
531
577
  * @deprecated
532
578
  *
533
579
  * <p>The data volume in bytes per day for the member account.</p>
534
580
  */
535
581
  VolumeUsageInBytes?: number;
536
582
  /**
583
+ * @public
537
584
  * @deprecated
538
585
  *
539
586
  * <p>The data and time when the member account data volume was last updated. The value is an
@@ -541,6 +588,7 @@ export interface MemberDetail {
541
588
  */
542
589
  VolumeUsageUpdatedTime?: Date;
543
590
  /**
591
+ * @public
544
592
  * @deprecated
545
593
  *
546
594
  * <p>The member account data volume as a percentage of the maximum allowed data volume. 0
@@ -553,6 +601,7 @@ export interface MemberDetail {
553
601
  */
554
602
  PercentOfGraphUtilization?: number;
555
603
  /**
604
+ * @public
556
605
  * @deprecated
557
606
  *
558
607
  * <p>The date and time when the graph utilization percentage was last updated. The value is
@@ -560,6 +609,7 @@ export interface MemberDetail {
560
609
  */
561
610
  PercentOfGraphUtilizationUpdatedTime?: Date;
562
611
  /**
612
+ * @public
563
613
  * <p>The type of behavior graph membership.</p>
564
614
  * <p>For an organization account in the organization behavior graph, the type is
565
615
  * <code>ORGANIZATION</code>.</p>
@@ -568,10 +618,12 @@ export interface MemberDetail {
568
618
  */
569
619
  InvitationType?: InvitationType | string;
570
620
  /**
621
+ * @public
571
622
  * <p>Details on the volume of usage for each data source package in a behavior graph.</p>
572
623
  */
573
624
  VolumeUsageByDatasourcePackage?: Record<string, DatasourcePackageUsageInfo>;
574
625
  /**
626
+ * @public
575
627
  * <p>The state of a data source package for the behavior graph.</p>
576
628
  */
577
629
  DatasourcePackageIngestStates?: Record<string, DatasourcePackageIngestState | string>;
@@ -581,12 +633,14 @@ export interface MemberDetail {
581
633
  */
582
634
  export interface CreateMembersResponse {
583
635
  /**
636
+ * @public
584
637
  * <p>The set of member account invitation or enablement requests that Detective was
585
638
  * able to process. This includes accounts that are being verified, that failed verification,
586
639
  * and that passed verification and are being sent an invitation or are being enabled.</p>
587
640
  */
588
641
  Members?: MemberDetail[];
589
642
  /**
643
+ * @public
590
644
  * <p>The list of accounts for which Detective was unable to process the invitation
591
645
  * or enablement request. For each account, the list provides the reason why the request could
592
646
  * not be processed. The list includes accounts that are already member accounts in the
@@ -599,6 +653,7 @@ export interface CreateMembersResponse {
599
653
  */
600
654
  export interface DeleteGraphRequest {
601
655
  /**
656
+ * @public
602
657
  * <p>The ARN of the behavior graph to disable.</p>
603
658
  */
604
659
  GraphArn: string | undefined;
@@ -608,10 +663,12 @@ export interface DeleteGraphRequest {
608
663
  */
609
664
  export interface DeleteMembersRequest {
610
665
  /**
666
+ * @public
611
667
  * <p>The ARN of the behavior graph to remove members from.</p>
612
668
  */
613
669
  GraphArn: string | undefined;
614
670
  /**
671
+ * @public
615
672
  * <p>The list of Amazon Web Services account identifiers for the member accounts to remove
616
673
  * from the behavior graph. You can remove up to 50 member accounts at a time.</p>
617
674
  */
@@ -622,10 +679,12 @@ export interface DeleteMembersRequest {
622
679
  */
623
680
  export interface DeleteMembersResponse {
624
681
  /**
682
+ * @public
625
683
  * <p>The list of Amazon Web Services account identifiers for the member accounts that Detective successfully removed from the behavior graph.</p>
626
684
  */
627
685
  AccountIds?: string[];
628
686
  /**
687
+ * @public
629
688
  * <p>The list of member accounts that Detective was not able to remove from the
630
689
  * behavior graph. For each member account, provides the reason that the deletion could not be
631
690
  * processed.</p>
@@ -637,6 +696,7 @@ export interface DeleteMembersResponse {
637
696
  */
638
697
  export interface DescribeOrganizationConfigurationRequest {
639
698
  /**
699
+ * @public
640
700
  * <p>The ARN of the organization behavior graph.</p>
641
701
  */
642
702
  GraphArn: string | undefined;
@@ -646,6 +706,7 @@ export interface DescribeOrganizationConfigurationRequest {
646
706
  */
647
707
  export interface DescribeOrganizationConfigurationResponse {
648
708
  /**
709
+ * @public
649
710
  * <p>Indicates whether to automatically enable new organization accounts as member accounts
650
711
  * in the organization behavior graph.</p>
651
712
  */
@@ -670,6 +731,7 @@ export declare class TooManyRequestsException extends __BaseException {
670
731
  */
671
732
  export interface DisassociateMembershipRequest {
672
733
  /**
734
+ * @public
673
735
  * <p>The ARN of the behavior graph to remove the member account from.</p>
674
736
  * <p>The member account's member status in the behavior graph must be
675
737
  * <code>ENABLED</code>.</p>
@@ -681,6 +743,7 @@ export interface DisassociateMembershipRequest {
681
743
  */
682
744
  export interface EnableOrganizationAdminAccountRequest {
683
745
  /**
746
+ * @public
684
747
  * <p>The Amazon Web Services account identifier of the account to designate as the Detective administrator account for the organization.</p>
685
748
  */
686
749
  AccountId: string | undefined;
@@ -690,10 +753,12 @@ export interface EnableOrganizationAdminAccountRequest {
690
753
  */
691
754
  export interface GetMembersRequest {
692
755
  /**
756
+ * @public
693
757
  * <p>The ARN of the behavior graph for which to request the member details.</p>
694
758
  */
695
759
  GraphArn: string | undefined;
696
760
  /**
761
+ * @public
697
762
  * <p>The list of Amazon Web Services account identifiers for the member account for which to
698
763
  * return member details. You can request details for up to 50 member accounts at a
699
764
  * time.</p>
@@ -707,11 +772,13 @@ export interface GetMembersRequest {
707
772
  */
708
773
  export interface GetMembersResponse {
709
774
  /**
775
+ * @public
710
776
  * <p>The member account details that Detective is returning in response to the
711
777
  * request.</p>
712
778
  */
713
779
  MemberDetails?: MemberDetail[];
714
780
  /**
781
+ * @public
715
782
  * <p>The requested member accounts for which Detective was unable to return member
716
783
  * details.</p>
717
784
  * <p>For each account, provides the reason why the request could not be processed.</p>
@@ -723,16 +790,19 @@ export interface GetMembersResponse {
723
790
  */
724
791
  export interface ListDatasourcePackagesRequest {
725
792
  /**
793
+ * @public
726
794
  * <p>The ARN of the behavior graph.</p>
727
795
  */
728
796
  GraphArn: string | undefined;
729
797
  /**
798
+ * @public
730
799
  * <p>For requests to get the next page of results, the pagination token that was returned
731
800
  * with the previous set of results. The initial request does not include a pagination
732
801
  * token.</p>
733
802
  */
734
803
  NextToken?: string;
735
804
  /**
805
+ * @public
736
806
  * <p>The maximum number of results to return.</p>
737
807
  */
738
808
  MaxResults?: number;
@@ -743,10 +813,12 @@ export interface ListDatasourcePackagesRequest {
743
813
  */
744
814
  export interface DatasourcePackageIngestDetail {
745
815
  /**
816
+ * @public
746
817
  * <p>Details on which data source packages are ingested for a member account.</p>
747
818
  */
748
819
  DatasourcePackageIngestState?: DatasourcePackageIngestState | string;
749
820
  /**
821
+ * @public
750
822
  * <p>The date a data source package was enabled for this account</p>
751
823
  */
752
824
  LastIngestStateChange?: Record<string, TimestampForCollection>;
@@ -756,10 +828,12 @@ export interface DatasourcePackageIngestDetail {
756
828
  */
757
829
  export interface ListDatasourcePackagesResponse {
758
830
  /**
831
+ * @public
759
832
  * <p>Details on the data source packages active in the behavior graph.</p>
760
833
  */
761
834
  DatasourcePackages?: Record<string, DatasourcePackageIngestDetail>;
762
835
  /**
836
+ * @public
763
837
  * <p>For requests to get the next page of results, the pagination token that was returned
764
838
  * with the previous set of results. The initial request does not include a pagination
765
839
  * token.</p>
@@ -771,12 +845,14 @@ export interface ListDatasourcePackagesResponse {
771
845
  */
772
846
  export interface ListGraphsRequest {
773
847
  /**
848
+ * @public
774
849
  * <p>For requests to get the next page of results, the pagination token that was returned
775
850
  * with the previous set of results. The initial request does not include a pagination
776
851
  * token.</p>
777
852
  */
778
853
  NextToken?: string;
779
854
  /**
855
+ * @public
780
856
  * <p>The maximum number of graphs to return at a time. The total must be less than the
781
857
  * overall limit on the number of results to return, which is currently 200.</p>
782
858
  */
@@ -788,10 +864,12 @@ export interface ListGraphsRequest {
788
864
  */
789
865
  export interface Graph {
790
866
  /**
867
+ * @public
791
868
  * <p>The ARN of the behavior graph.</p>
792
869
  */
793
870
  Arn?: string;
794
871
  /**
872
+ * @public
795
873
  * <p>The date and time that the behavior graph was created. The value is an ISO8601 formatted
796
874
  * string. For example, <code>2021-08-18T16:35:56.284Z</code>.</p>
797
875
  */
@@ -802,10 +880,12 @@ export interface Graph {
802
880
  */
803
881
  export interface ListGraphsResponse {
804
882
  /**
883
+ * @public
805
884
  * <p>A list of behavior graphs that the account is an administrator account for.</p>
806
885
  */
807
886
  GraphList?: Graph[];
808
887
  /**
888
+ * @public
809
889
  * <p>If there are more behavior graphs remaining in the results, then this is the pagination
810
890
  * token to use to request the next page of behavior graphs.</p>
811
891
  */
@@ -816,12 +896,14 @@ export interface ListGraphsResponse {
816
896
  */
817
897
  export interface ListInvitationsRequest {
818
898
  /**
899
+ * @public
819
900
  * <p>For requests to retrieve the next page of results, the pagination token that was
820
901
  * returned with the previous page of results. The initial request does not include a
821
902
  * pagination token.</p>
822
903
  */
823
904
  NextToken?: string;
824
905
  /**
906
+ * @public
825
907
  * <p>The maximum number of behavior graph invitations to return in the response. The total
826
908
  * must be less than the overall limit on the number of results to return, which is currently
827
909
  * 200.</p>
@@ -833,11 +915,13 @@ export interface ListInvitationsRequest {
833
915
  */
834
916
  export interface ListInvitationsResponse {
835
917
  /**
918
+ * @public
836
919
  * <p>The list of behavior graphs for which the member account has open or accepted
837
920
  * invitations.</p>
838
921
  */
839
922
  Invitations?: MemberDetail[];
840
923
  /**
924
+ * @public
841
925
  * <p>If there are more behavior graphs remaining in the results, then this is the pagination
842
926
  * token to use to request the next page of behavior graphs.</p>
843
927
  */
@@ -848,16 +932,19 @@ export interface ListInvitationsResponse {
848
932
  */
849
933
  export interface ListMembersRequest {
850
934
  /**
935
+ * @public
851
936
  * <p>The ARN of the behavior graph for which to retrieve the list of member accounts.</p>
852
937
  */
853
938
  GraphArn: string | undefined;
854
939
  /**
940
+ * @public
855
941
  * <p>For requests to retrieve the next page of member account results, the pagination token
856
942
  * that was returned with the previous page of results. The initial request does not include a
857
943
  * pagination token.</p>
858
944
  */
859
945
  NextToken?: string;
860
946
  /**
947
+ * @public
861
948
  * <p>The maximum number of member accounts to include in the response. The total must be less
862
949
  * than the overall limit on the number of results to return, which is currently 200.</p>
863
950
  */
@@ -868,6 +955,7 @@ export interface ListMembersRequest {
868
955
  */
869
956
  export interface ListMembersResponse {
870
957
  /**
958
+ * @public
871
959
  * <p>The list of member accounts in the behavior graph.</p>
872
960
  * <p>For invited accounts, the results include member accounts that did not pass verification
873
961
  * and member accounts that have not yet accepted the invitation to the behavior graph. The
@@ -878,6 +966,7 @@ export interface ListMembersResponse {
878
966
  */
879
967
  MemberDetails?: MemberDetail[];
880
968
  /**
969
+ * @public
881
970
  * <p>If there are more member accounts remaining in the results, then use this pagination
882
971
  * token to request the next page of member accounts.</p>
883
972
  */
@@ -888,12 +977,14 @@ export interface ListMembersResponse {
888
977
  */
889
978
  export interface ListOrganizationAdminAccountsRequest {
890
979
  /**
980
+ * @public
891
981
  * <p>For requests to get the next page of results, the pagination token that was returned
892
982
  * with the previous set of results. The initial request does not include a pagination
893
983
  * token.</p>
894
984
  */
895
985
  NextToken?: string;
896
986
  /**
987
+ * @public
897
988
  * <p>The maximum number of results to return.</p>
898
989
  */
899
990
  MaxResults?: number;
@@ -903,10 +994,12 @@ export interface ListOrganizationAdminAccountsRequest {
903
994
  */
904
995
  export interface ListOrganizationAdminAccountsResponse {
905
996
  /**
997
+ * @public
906
998
  * <p>The list of Detective administrator accounts.</p>
907
999
  */
908
1000
  Administrators?: Administrator[];
909
1001
  /**
1002
+ * @public
910
1003
  * <p>If there are more accounts remaining in the results, then this is the pagination token
911
1004
  * to use to request the next page of accounts.</p>
912
1005
  */
@@ -917,6 +1010,7 @@ export interface ListOrganizationAdminAccountsResponse {
917
1010
  */
918
1011
  export interface ListTagsForResourceRequest {
919
1012
  /**
1013
+ * @public
920
1014
  * <p>The ARN of the behavior graph for which to retrieve the tag values.</p>
921
1015
  */
922
1016
  ResourceArn: string | undefined;
@@ -926,6 +1020,7 @@ export interface ListTagsForResourceRequest {
926
1020
  */
927
1021
  export interface ListTagsForResourceResponse {
928
1022
  /**
1023
+ * @public
929
1024
  * <p>The tag values that are assigned to the behavior graph. The request returns up to 50 tag
930
1025
  * values.</p>
931
1026
  */
@@ -936,6 +1031,7 @@ export interface ListTagsForResourceResponse {
936
1031
  */
937
1032
  export interface RejectInvitationRequest {
938
1033
  /**
1034
+ * @public
939
1035
  * <p>The ARN of the behavior graph to reject the invitation to.</p>
940
1036
  * <p>The member account's current member status in the behavior graph must be
941
1037
  * <code>INVITED</code>.</p>
@@ -947,10 +1043,12 @@ export interface RejectInvitationRequest {
947
1043
  */
948
1044
  export interface StartMonitoringMemberRequest {
949
1045
  /**
1046
+ * @public
950
1047
  * <p>The ARN of the behavior graph.</p>
951
1048
  */
952
1049
  GraphArn: string | undefined;
953
1050
  /**
1051
+ * @public
954
1052
  * <p>The account ID of the member account to try to enable.</p>
955
1053
  * <p>The account must be an invited member account with a status of
956
1054
  * <code>ACCEPTED_BUT_DISABLED</code>. </p>
@@ -962,10 +1060,12 @@ export interface StartMonitoringMemberRequest {
962
1060
  */
963
1061
  export interface TagResourceRequest {
964
1062
  /**
1063
+ * @public
965
1064
  * <p>The ARN of the behavior graph to assign the tags to.</p>
966
1065
  */
967
1066
  ResourceArn: string | undefined;
968
1067
  /**
1068
+ * @public
969
1069
  * <p>The tags to assign to the behavior graph. You can add up to 50 tags. For each tag, you
970
1070
  * provide the tag key and the tag value. Each tag key can contain up to 128 characters. Each
971
1071
  * tag value can contain up to 256 characters.</p>
@@ -982,10 +1082,12 @@ export interface TagResourceResponse {
982
1082
  */
983
1083
  export interface UntagResourceRequest {
984
1084
  /**
1085
+ * @public
985
1086
  * <p>The ARN of the behavior graph to remove the tags from.</p>
986
1087
  */
987
1088
  ResourceArn: string | undefined;
988
1089
  /**
1090
+ * @public
989
1091
  * <p>The tag keys of the tags to remove from the behavior graph. You can remove up to 50 tags
990
1092
  * at a time.</p>
991
1093
  */
@@ -1001,10 +1103,12 @@ export interface UntagResourceResponse {
1001
1103
  */
1002
1104
  export interface UpdateDatasourcePackagesRequest {
1003
1105
  /**
1106
+ * @public
1004
1107
  * <p>The ARN of the behavior graph.</p>
1005
1108
  */
1006
1109
  GraphArn: string | undefined;
1007
1110
  /**
1111
+ * @public
1008
1112
  * <p>The data source package start for the behavior graph.</p>
1009
1113
  */
1010
1114
  DatasourcePackages: (DatasourcePackage | string)[] | undefined;
@@ -1014,10 +1118,12 @@ export interface UpdateDatasourcePackagesRequest {
1014
1118
  */
1015
1119
  export interface UpdateOrganizationConfigurationRequest {
1016
1120
  /**
1121
+ * @public
1017
1122
  * <p>The ARN of the organization behavior graph.</p>
1018
1123
  */
1019
1124
  GraphArn: string | undefined;
1020
1125
  /**
1126
+ * @public
1021
1127
  * <p>Indicates whether to automatically enable new organization accounts as member accounts
1022
1128
  * in the organization behavior graph.</p>
1023
1129
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-detective",
3
3
  "description": "AWS SDK for JavaScript Detective Client for Node.js, Browser and React Native",
4
- "version": "3.379.1",
4
+ "version": "3.382.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",