@aws-sdk/client-cloudtrail 3.131.0 → 3.142.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.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AddTagsCommand.js +2 -2
- package/dist-cjs/commands/CancelQueryCommand.js +2 -2
- package/dist-cjs/commands/CreateEventDataStoreCommand.js +2 -2
- package/dist-cjs/commands/CreateTrailCommand.js +2 -2
- package/dist-cjs/commands/DeleteEventDataStoreCommand.js +2 -2
- package/dist-cjs/commands/DeleteTrailCommand.js +2 -2
- package/dist-cjs/commands/DescribeQueryCommand.js +2 -2
- package/dist-cjs/commands/DescribeTrailsCommand.js +2 -2
- package/dist-cjs/commands/GetEventDataStoreCommand.js +2 -2
- package/dist-cjs/commands/GetEventSelectorsCommand.js +2 -2
- package/dist-cjs/commands/GetInsightSelectorsCommand.js +2 -2
- package/dist-cjs/commands/GetQueryResultsCommand.js +2 -2
- package/dist-cjs/commands/GetTrailCommand.js +2 -2
- package/dist-cjs/commands/GetTrailStatusCommand.js +2 -2
- package/dist-cjs/commands/ListEventDataStoresCommand.js +2 -2
- package/dist-cjs/commands/ListPublicKeysCommand.js +2 -2
- package/dist-cjs/commands/ListQueriesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsCommand.js +2 -2
- package/dist-cjs/commands/ListTrailsCommand.js +2 -2
- package/dist-cjs/commands/LookupEventsCommand.js +2 -2
- package/dist-cjs/commands/PutEventSelectorsCommand.js +2 -2
- package/dist-cjs/commands/PutInsightSelectorsCommand.js +2 -2
- package/dist-cjs/commands/RemoveTagsCommand.js +2 -2
- package/dist-cjs/commands/RestoreEventDataStoreCommand.js +2 -2
- package/dist-cjs/commands/StartLoggingCommand.js +2 -2
- package/dist-cjs/commands/StartQueryCommand.js +2 -2
- package/dist-cjs/commands/StopLoggingCommand.js +2 -2
- package/dist-cjs/commands/UpdateEventDataStoreCommand.js +2 -2
- package/dist-cjs/commands/UpdateTrailCommand.js +2 -2
- package/dist-cjs/models/models_0.js +303 -453
- package/dist-cjs/protocols/Aws_json1_1.js +145 -268
- package/dist-es/commands/AddTagsCommand.js +3 -3
- package/dist-es/commands/CancelQueryCommand.js +3 -3
- package/dist-es/commands/CreateEventDataStoreCommand.js +3 -3
- package/dist-es/commands/CreateTrailCommand.js +3 -3
- package/dist-es/commands/DeleteEventDataStoreCommand.js +3 -3
- package/dist-es/commands/DeleteTrailCommand.js +3 -3
- package/dist-es/commands/DescribeQueryCommand.js +3 -3
- package/dist-es/commands/DescribeTrailsCommand.js +3 -3
- package/dist-es/commands/GetEventDataStoreCommand.js +3 -3
- package/dist-es/commands/GetEventSelectorsCommand.js +3 -3
- package/dist-es/commands/GetInsightSelectorsCommand.js +3 -3
- package/dist-es/commands/GetQueryResultsCommand.js +3 -3
- package/dist-es/commands/GetTrailCommand.js +3 -3
- package/dist-es/commands/GetTrailStatusCommand.js +3 -3
- package/dist-es/commands/ListEventDataStoresCommand.js +3 -3
- package/dist-es/commands/ListPublicKeysCommand.js +3 -3
- package/dist-es/commands/ListQueriesCommand.js +3 -3
- package/dist-es/commands/ListTagsCommand.js +3 -3
- package/dist-es/commands/ListTrailsCommand.js +3 -3
- package/dist-es/commands/LookupEventsCommand.js +3 -3
- package/dist-es/commands/PutEventSelectorsCommand.js +3 -3
- package/dist-es/commands/PutInsightSelectorsCommand.js +3 -3
- package/dist-es/commands/RemoveTagsCommand.js +3 -3
- package/dist-es/commands/RestoreEventDataStoreCommand.js +3 -3
- package/dist-es/commands/StartLoggingCommand.js +3 -3
- package/dist-es/commands/StartQueryCommand.js +3 -3
- package/dist-es/commands/StopLoggingCommand.js +3 -3
- package/dist-es/commands/UpdateEventDataStoreCommand.js +3 -3
- package/dist-es/commands/UpdateTrailCommand.js +3 -3
- package/dist-es/models/models_0.js +75 -300
- package/dist-es/protocols/Aws_json1_1.js +233 -269
- package/dist-types/models/models_0.d.ts +300 -450
- package/dist-types/ts3.4/models/models_0.d.ts +150 -300
- package/package.json +6 -6
|
@@ -7,10 +7,6 @@ export interface Tag {
|
|
|
7
7
|
|
|
8
8
|
Value?: string;
|
|
9
9
|
}
|
|
10
|
-
export declare namespace Tag {
|
|
11
|
-
|
|
12
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
13
|
-
}
|
|
14
10
|
|
|
15
11
|
export interface AddTagsRequest {
|
|
16
12
|
|
|
@@ -18,17 +14,9 @@ export interface AddTagsRequest {
|
|
|
18
14
|
|
|
19
15
|
TagsList: Tag[] | undefined;
|
|
20
16
|
}
|
|
21
|
-
export declare namespace AddTagsRequest {
|
|
22
|
-
|
|
23
|
-
const filterSensitiveLog: (obj: AddTagsRequest) => any;
|
|
24
|
-
}
|
|
25
17
|
|
|
26
18
|
export interface AddTagsResponse {
|
|
27
19
|
}
|
|
28
|
-
export declare namespace AddTagsResponse {
|
|
29
|
-
|
|
30
|
-
const filterSensitiveLog: (obj: AddTagsResponse) => any;
|
|
31
|
-
}
|
|
32
20
|
|
|
33
21
|
export declare class CloudTrailARNInvalidException extends __BaseException {
|
|
34
22
|
readonly name: "CloudTrailARNInvalidException";
|
|
@@ -154,10 +142,6 @@ export interface AdvancedFieldSelector {
|
|
|
154
142
|
|
|
155
143
|
NotEndsWith?: string[];
|
|
156
144
|
}
|
|
157
|
-
export declare namespace AdvancedFieldSelector {
|
|
158
|
-
|
|
159
|
-
const filterSensitiveLog: (obj: AdvancedFieldSelector) => any;
|
|
160
|
-
}
|
|
161
145
|
|
|
162
146
|
export interface AdvancedEventSelector {
|
|
163
147
|
|
|
@@ -165,20 +149,12 @@ export interface AdvancedEventSelector {
|
|
|
165
149
|
|
|
166
150
|
FieldSelectors: AdvancedFieldSelector[] | undefined;
|
|
167
151
|
}
|
|
168
|
-
export declare namespace AdvancedEventSelector {
|
|
169
|
-
|
|
170
|
-
const filterSensitiveLog: (obj: AdvancedEventSelector) => any;
|
|
171
|
-
}
|
|
172
152
|
export interface CancelQueryRequest {
|
|
173
153
|
|
|
174
154
|
EventDataStore: string | undefined;
|
|
175
155
|
|
|
176
156
|
QueryId: string | undefined;
|
|
177
157
|
}
|
|
178
|
-
export declare namespace CancelQueryRequest {
|
|
179
|
-
|
|
180
|
-
const filterSensitiveLog: (obj: CancelQueryRequest) => any;
|
|
181
|
-
}
|
|
182
158
|
export declare enum QueryStatus {
|
|
183
159
|
CANCELLED = "CANCELLED",
|
|
184
160
|
FAILED = "FAILED",
|
|
@@ -193,10 +169,6 @@ export interface CancelQueryResponse {
|
|
|
193
169
|
|
|
194
170
|
QueryStatus: QueryStatus | string | undefined;
|
|
195
171
|
}
|
|
196
|
-
export declare namespace CancelQueryResponse {
|
|
197
|
-
|
|
198
|
-
const filterSensitiveLog: (obj: CancelQueryResponse) => any;
|
|
199
|
-
}
|
|
200
172
|
|
|
201
173
|
export declare class EventDataStoreARNInvalidException extends __BaseException {
|
|
202
174
|
readonly name: "EventDataStoreARNInvalidException";
|
|
@@ -258,10 +230,6 @@ export interface CreateEventDataStoreRequest {
|
|
|
258
230
|
|
|
259
231
|
TagsList?: Tag[];
|
|
260
232
|
}
|
|
261
|
-
export declare namespace CreateEventDataStoreRequest {
|
|
262
|
-
|
|
263
|
-
const filterSensitiveLog: (obj: CreateEventDataStoreRequest) => any;
|
|
264
|
-
}
|
|
265
233
|
export declare enum EventDataStoreStatus {
|
|
266
234
|
CREATED = "CREATED",
|
|
267
235
|
ENABLED = "ENABLED",
|
|
@@ -291,10 +259,6 @@ export interface CreateEventDataStoreResponse {
|
|
|
291
259
|
|
|
292
260
|
UpdatedTimestamp?: Date;
|
|
293
261
|
}
|
|
294
|
-
export declare namespace CreateEventDataStoreResponse {
|
|
295
|
-
|
|
296
|
-
const filterSensitiveLog: (obj: CreateEventDataStoreResponse) => any;
|
|
297
|
-
}
|
|
298
262
|
|
|
299
263
|
export declare class EventDataStoreAlreadyExistsException extends __BaseException {
|
|
300
264
|
readonly name: "EventDataStoreAlreadyExistsException";
|
|
@@ -385,10 +349,6 @@ export interface CreateTrailRequest {
|
|
|
385
349
|
|
|
386
350
|
TagsList?: Tag[];
|
|
387
351
|
}
|
|
388
|
-
export declare namespace CreateTrailRequest {
|
|
389
|
-
|
|
390
|
-
const filterSensitiveLog: (obj: CreateTrailRequest) => any;
|
|
391
|
-
}
|
|
392
352
|
|
|
393
353
|
export interface CreateTrailResponse {
|
|
394
354
|
|
|
@@ -418,10 +378,6 @@ export interface CreateTrailResponse {
|
|
|
418
378
|
|
|
419
379
|
IsOrganizationTrail?: boolean;
|
|
420
380
|
}
|
|
421
|
-
export declare namespace CreateTrailResponse {
|
|
422
|
-
|
|
423
|
-
const filterSensitiveLog: (obj: CreateTrailResponse) => any;
|
|
424
|
-
}
|
|
425
381
|
|
|
426
382
|
export declare class InsufficientEncryptionPolicyException extends __BaseException {
|
|
427
383
|
readonly name: "InsufficientEncryptionPolicyException";
|
|
@@ -579,16 +535,8 @@ export interface DeleteEventDataStoreRequest {
|
|
|
579
535
|
|
|
580
536
|
EventDataStore: string | undefined;
|
|
581
537
|
}
|
|
582
|
-
export declare namespace DeleteEventDataStoreRequest {
|
|
583
|
-
|
|
584
|
-
const filterSensitiveLog: (obj: DeleteEventDataStoreRequest) => any;
|
|
585
|
-
}
|
|
586
538
|
export interface DeleteEventDataStoreResponse {
|
|
587
539
|
}
|
|
588
|
-
export declare namespace DeleteEventDataStoreResponse {
|
|
589
|
-
|
|
590
|
-
const filterSensitiveLog: (obj: DeleteEventDataStoreResponse) => any;
|
|
591
|
-
}
|
|
592
540
|
|
|
593
541
|
export declare class EventDataStoreTerminationProtectedException extends __BaseException {
|
|
594
542
|
readonly name: "EventDataStoreTerminationProtectedException";
|
|
@@ -603,17 +551,9 @@ export interface DeleteTrailRequest {
|
|
|
603
551
|
|
|
604
552
|
Name: string | undefined;
|
|
605
553
|
}
|
|
606
|
-
export declare namespace DeleteTrailRequest {
|
|
607
|
-
|
|
608
|
-
const filterSensitiveLog: (obj: DeleteTrailRequest) => any;
|
|
609
|
-
}
|
|
610
554
|
|
|
611
555
|
export interface DeleteTrailResponse {
|
|
612
556
|
}
|
|
613
|
-
export declare namespace DeleteTrailResponse {
|
|
614
|
-
|
|
615
|
-
const filterSensitiveLog: (obj: DeleteTrailResponse) => any;
|
|
616
|
-
}
|
|
617
557
|
|
|
618
558
|
export declare class InvalidHomeRegionException extends __BaseException {
|
|
619
559
|
readonly name: "InvalidHomeRegionException";
|
|
@@ -638,10 +578,6 @@ export interface DescribeQueryRequest {
|
|
|
638
578
|
|
|
639
579
|
QueryId: string | undefined;
|
|
640
580
|
}
|
|
641
|
-
export declare namespace DescribeQueryRequest {
|
|
642
|
-
|
|
643
|
-
const filterSensitiveLog: (obj: DescribeQueryRequest) => any;
|
|
644
|
-
}
|
|
645
581
|
|
|
646
582
|
export interface QueryStatisticsForDescribeQuery {
|
|
647
583
|
|
|
@@ -655,10 +591,6 @@ export interface QueryStatisticsForDescribeQuery {
|
|
|
655
591
|
|
|
656
592
|
CreationTime?: Date;
|
|
657
593
|
}
|
|
658
|
-
export declare namespace QueryStatisticsForDescribeQuery {
|
|
659
|
-
|
|
660
|
-
const filterSensitiveLog: (obj: QueryStatisticsForDescribeQuery) => any;
|
|
661
|
-
}
|
|
662
594
|
export interface DescribeQueryResponse {
|
|
663
595
|
|
|
664
596
|
QueryId?: string;
|
|
@@ -671,10 +603,6 @@ export interface DescribeQueryResponse {
|
|
|
671
603
|
|
|
672
604
|
ErrorMessage?: string;
|
|
673
605
|
}
|
|
674
|
-
export declare namespace DescribeQueryResponse {
|
|
675
|
-
|
|
676
|
-
const filterSensitiveLog: (obj: DescribeQueryResponse) => any;
|
|
677
|
-
}
|
|
678
606
|
|
|
679
607
|
export interface DescribeTrailsRequest {
|
|
680
608
|
|
|
@@ -682,10 +610,6 @@ export interface DescribeTrailsRequest {
|
|
|
682
610
|
|
|
683
611
|
includeShadowTrails?: boolean;
|
|
684
612
|
}
|
|
685
|
-
export declare namespace DescribeTrailsRequest {
|
|
686
|
-
|
|
687
|
-
const filterSensitiveLog: (obj: DescribeTrailsRequest) => any;
|
|
688
|
-
}
|
|
689
613
|
|
|
690
614
|
export interface Trail {
|
|
691
615
|
|
|
@@ -721,27 +645,15 @@ export interface Trail {
|
|
|
721
645
|
|
|
722
646
|
IsOrganizationTrail?: boolean;
|
|
723
647
|
}
|
|
724
|
-
export declare namespace Trail {
|
|
725
|
-
|
|
726
|
-
const filterSensitiveLog: (obj: Trail) => any;
|
|
727
|
-
}
|
|
728
648
|
|
|
729
649
|
export interface DescribeTrailsResponse {
|
|
730
650
|
|
|
731
651
|
trailList?: Trail[];
|
|
732
652
|
}
|
|
733
|
-
export declare namespace DescribeTrailsResponse {
|
|
734
|
-
|
|
735
|
-
const filterSensitiveLog: (obj: DescribeTrailsResponse) => any;
|
|
736
|
-
}
|
|
737
653
|
export interface GetEventDataStoreRequest {
|
|
738
654
|
|
|
739
655
|
EventDataStore: string | undefined;
|
|
740
656
|
}
|
|
741
|
-
export declare namespace GetEventDataStoreRequest {
|
|
742
|
-
|
|
743
|
-
const filterSensitiveLog: (obj: GetEventDataStoreRequest) => any;
|
|
744
|
-
}
|
|
745
657
|
export interface GetEventDataStoreResponse {
|
|
746
658
|
|
|
747
659
|
EventDataStoreArn?: string;
|
|
@@ -764,18 +676,10 @@ export interface GetEventDataStoreResponse {
|
|
|
764
676
|
|
|
765
677
|
UpdatedTimestamp?: Date;
|
|
766
678
|
}
|
|
767
|
-
export declare namespace GetEventDataStoreResponse {
|
|
768
|
-
|
|
769
|
-
const filterSensitiveLog: (obj: GetEventDataStoreResponse) => any;
|
|
770
|
-
}
|
|
771
679
|
export interface GetEventSelectorsRequest {
|
|
772
680
|
|
|
773
681
|
TrailName: string | undefined;
|
|
774
682
|
}
|
|
775
|
-
export declare namespace GetEventSelectorsRequest {
|
|
776
|
-
|
|
777
|
-
const filterSensitiveLog: (obj: GetEventSelectorsRequest) => any;
|
|
778
|
-
}
|
|
779
683
|
|
|
780
684
|
export interface DataResource {
|
|
781
685
|
|
|
@@ -783,10 +687,6 @@ export interface DataResource {
|
|
|
783
687
|
|
|
784
688
|
Values?: string[];
|
|
785
689
|
}
|
|
786
|
-
export declare namespace DataResource {
|
|
787
|
-
|
|
788
|
-
const filterSensitiveLog: (obj: DataResource) => any;
|
|
789
|
-
}
|
|
790
690
|
export declare enum ReadWriteType {
|
|
791
691
|
All = "All",
|
|
792
692
|
ReadOnly = "ReadOnly",
|
|
@@ -803,10 +703,6 @@ export interface EventSelector {
|
|
|
803
703
|
|
|
804
704
|
ExcludeManagementEventSources?: string[];
|
|
805
705
|
}
|
|
806
|
-
export declare namespace EventSelector {
|
|
807
|
-
|
|
808
|
-
const filterSensitiveLog: (obj: EventSelector) => any;
|
|
809
|
-
}
|
|
810
706
|
export interface GetEventSelectorsResponse {
|
|
811
707
|
|
|
812
708
|
TrailARN?: string;
|
|
@@ -815,18 +711,10 @@ export interface GetEventSelectorsResponse {
|
|
|
815
711
|
|
|
816
712
|
AdvancedEventSelectors?: AdvancedEventSelector[];
|
|
817
713
|
}
|
|
818
|
-
export declare namespace GetEventSelectorsResponse {
|
|
819
|
-
|
|
820
|
-
const filterSensitiveLog: (obj: GetEventSelectorsResponse) => any;
|
|
821
|
-
}
|
|
822
714
|
export interface GetInsightSelectorsRequest {
|
|
823
715
|
|
|
824
716
|
TrailName: string | undefined;
|
|
825
717
|
}
|
|
826
|
-
export declare namespace GetInsightSelectorsRequest {
|
|
827
|
-
|
|
828
|
-
const filterSensitiveLog: (obj: GetInsightSelectorsRequest) => any;
|
|
829
|
-
}
|
|
830
718
|
export declare enum InsightType {
|
|
831
719
|
ApiCallRateInsight = "ApiCallRateInsight",
|
|
832
720
|
ApiErrorRateInsight = "ApiErrorRateInsight"
|
|
@@ -836,20 +724,12 @@ export interface InsightSelector {
|
|
|
836
724
|
|
|
837
725
|
InsightType?: InsightType | string;
|
|
838
726
|
}
|
|
839
|
-
export declare namespace InsightSelector {
|
|
840
|
-
|
|
841
|
-
const filterSensitiveLog: (obj: InsightSelector) => any;
|
|
842
|
-
}
|
|
843
727
|
export interface GetInsightSelectorsResponse {
|
|
844
728
|
|
|
845
729
|
TrailARN?: string;
|
|
846
730
|
|
|
847
731
|
InsightSelectors?: InsightSelector[];
|
|
848
732
|
}
|
|
849
|
-
export declare namespace GetInsightSelectorsResponse {
|
|
850
|
-
|
|
851
|
-
const filterSensitiveLog: (obj: GetInsightSelectorsResponse) => any;
|
|
852
|
-
}
|
|
853
733
|
|
|
854
734
|
export declare class InsightNotEnabledException extends __BaseException {
|
|
855
735
|
readonly name: "InsightNotEnabledException";
|
|
@@ -869,10 +749,6 @@ export interface GetQueryResultsRequest {
|
|
|
869
749
|
|
|
870
750
|
MaxQueryResults?: number;
|
|
871
751
|
}
|
|
872
|
-
export declare namespace GetQueryResultsRequest {
|
|
873
|
-
|
|
874
|
-
const filterSensitiveLog: (obj: GetQueryResultsRequest) => any;
|
|
875
|
-
}
|
|
876
752
|
|
|
877
753
|
export interface QueryStatistics {
|
|
878
754
|
|
|
@@ -882,10 +758,6 @@ export interface QueryStatistics {
|
|
|
882
758
|
|
|
883
759
|
BytesScanned?: number;
|
|
884
760
|
}
|
|
885
|
-
export declare namespace QueryStatistics {
|
|
886
|
-
|
|
887
|
-
const filterSensitiveLog: (obj: QueryStatistics) => any;
|
|
888
|
-
}
|
|
889
761
|
export interface GetQueryResultsResponse {
|
|
890
762
|
|
|
891
763
|
QueryStatus?: QueryStatus | string;
|
|
@@ -898,10 +770,6 @@ export interface GetQueryResultsResponse {
|
|
|
898
770
|
|
|
899
771
|
ErrorMessage?: string;
|
|
900
772
|
}
|
|
901
|
-
export declare namespace GetQueryResultsResponse {
|
|
902
|
-
|
|
903
|
-
const filterSensitiveLog: (obj: GetQueryResultsResponse) => any;
|
|
904
|
-
}
|
|
905
773
|
|
|
906
774
|
export declare class InvalidMaxResultsException extends __BaseException {
|
|
907
775
|
readonly name: "InvalidMaxResultsException";
|
|
@@ -924,27 +792,15 @@ export interface GetTrailRequest {
|
|
|
924
792
|
|
|
925
793
|
Name: string | undefined;
|
|
926
794
|
}
|
|
927
|
-
export declare namespace GetTrailRequest {
|
|
928
|
-
|
|
929
|
-
const filterSensitiveLog: (obj: GetTrailRequest) => any;
|
|
930
|
-
}
|
|
931
795
|
export interface GetTrailResponse {
|
|
932
796
|
|
|
933
797
|
Trail?: Trail;
|
|
934
798
|
}
|
|
935
|
-
export declare namespace GetTrailResponse {
|
|
936
|
-
|
|
937
|
-
const filterSensitiveLog: (obj: GetTrailResponse) => any;
|
|
938
|
-
}
|
|
939
799
|
|
|
940
800
|
export interface GetTrailStatusRequest {
|
|
941
801
|
|
|
942
802
|
Name: string | undefined;
|
|
943
803
|
}
|
|
944
|
-
export declare namespace GetTrailStatusRequest {
|
|
945
|
-
|
|
946
|
-
const filterSensitiveLog: (obj: GetTrailStatusRequest) => any;
|
|
947
|
-
}
|
|
948
804
|
|
|
949
805
|
export interface GetTrailStatusResponse {
|
|
950
806
|
|
|
@@ -982,20 +838,12 @@ export interface GetTrailStatusResponse {
|
|
|
982
838
|
|
|
983
839
|
TimeLoggingStopped?: string;
|
|
984
840
|
}
|
|
985
|
-
export declare namespace GetTrailStatusResponse {
|
|
986
|
-
|
|
987
|
-
const filterSensitiveLog: (obj: GetTrailStatusResponse) => any;
|
|
988
|
-
}
|
|
989
841
|
export interface ListEventDataStoresRequest {
|
|
990
842
|
|
|
991
843
|
NextToken?: string;
|
|
992
844
|
|
|
993
845
|
MaxResults?: number;
|
|
994
846
|
}
|
|
995
|
-
export declare namespace ListEventDataStoresRequest {
|
|
996
|
-
|
|
997
|
-
const filterSensitiveLog: (obj: ListEventDataStoresRequest) => any;
|
|
998
|
-
}
|
|
999
847
|
|
|
1000
848
|
export interface EventDataStore {
|
|
1001
849
|
|
|
@@ -1019,20 +867,12 @@ export interface EventDataStore {
|
|
|
1019
867
|
|
|
1020
868
|
UpdatedTimestamp?: Date;
|
|
1021
869
|
}
|
|
1022
|
-
export declare namespace EventDataStore {
|
|
1023
|
-
|
|
1024
|
-
const filterSensitiveLog: (obj: EventDataStore) => any;
|
|
1025
|
-
}
|
|
1026
870
|
export interface ListEventDataStoresResponse {
|
|
1027
871
|
|
|
1028
872
|
EventDataStores?: EventDataStore[];
|
|
1029
873
|
|
|
1030
874
|
NextToken?: string;
|
|
1031
875
|
}
|
|
1032
|
-
export declare namespace ListEventDataStoresResponse {
|
|
1033
|
-
|
|
1034
|
-
const filterSensitiveLog: (obj: ListEventDataStoresResponse) => any;
|
|
1035
|
-
}
|
|
1036
876
|
|
|
1037
877
|
export declare class InvalidTimeRangeException extends __BaseException {
|
|
1038
878
|
readonly name: "InvalidTimeRangeException";
|
|
@@ -1060,10 +900,6 @@ export interface ListPublicKeysRequest {
|
|
|
1060
900
|
|
|
1061
901
|
NextToken?: string;
|
|
1062
902
|
}
|
|
1063
|
-
export declare namespace ListPublicKeysRequest {
|
|
1064
|
-
|
|
1065
|
-
const filterSensitiveLog: (obj: ListPublicKeysRequest) => any;
|
|
1066
|
-
}
|
|
1067
903
|
|
|
1068
904
|
export interface PublicKey {
|
|
1069
905
|
|
|
@@ -1075,10 +911,6 @@ export interface PublicKey {
|
|
|
1075
911
|
|
|
1076
912
|
Fingerprint?: string;
|
|
1077
913
|
}
|
|
1078
|
-
export declare namespace PublicKey {
|
|
1079
|
-
|
|
1080
|
-
const filterSensitiveLog: (obj: PublicKey) => any;
|
|
1081
|
-
}
|
|
1082
914
|
|
|
1083
915
|
export interface ListPublicKeysResponse {
|
|
1084
916
|
|
|
@@ -1086,10 +918,6 @@ export interface ListPublicKeysResponse {
|
|
|
1086
918
|
|
|
1087
919
|
NextToken?: string;
|
|
1088
920
|
}
|
|
1089
|
-
export declare namespace ListPublicKeysResponse {
|
|
1090
|
-
|
|
1091
|
-
const filterSensitiveLog: (obj: ListPublicKeysResponse) => any;
|
|
1092
|
-
}
|
|
1093
921
|
|
|
1094
922
|
export declare class InvalidDateRangeException extends __BaseException {
|
|
1095
923
|
readonly name: "InvalidDateRangeException";
|
|
@@ -1122,10 +950,6 @@ export interface ListQueriesRequest {
|
|
|
1122
950
|
|
|
1123
951
|
QueryStatus?: QueryStatus | string;
|
|
1124
952
|
}
|
|
1125
|
-
export declare namespace ListQueriesRequest {
|
|
1126
|
-
|
|
1127
|
-
const filterSensitiveLog: (obj: ListQueriesRequest) => any;
|
|
1128
|
-
}
|
|
1129
953
|
|
|
1130
954
|
export interface Query {
|
|
1131
955
|
|
|
@@ -1135,20 +959,12 @@ export interface Query {
|
|
|
1135
959
|
|
|
1136
960
|
CreationTime?: Date;
|
|
1137
961
|
}
|
|
1138
|
-
export declare namespace Query {
|
|
1139
|
-
|
|
1140
|
-
const filterSensitiveLog: (obj: Query) => any;
|
|
1141
|
-
}
|
|
1142
962
|
export interface ListQueriesResponse {
|
|
1143
963
|
|
|
1144
964
|
Queries?: Query[];
|
|
1145
965
|
|
|
1146
966
|
NextToken?: string;
|
|
1147
967
|
}
|
|
1148
|
-
export declare namespace ListQueriesResponse {
|
|
1149
|
-
|
|
1150
|
-
const filterSensitiveLog: (obj: ListQueriesResponse) => any;
|
|
1151
|
-
}
|
|
1152
968
|
|
|
1153
969
|
export interface ListTagsRequest {
|
|
1154
970
|
|
|
@@ -1156,10 +972,6 @@ export interface ListTagsRequest {
|
|
|
1156
972
|
|
|
1157
973
|
NextToken?: string;
|
|
1158
974
|
}
|
|
1159
|
-
export declare namespace ListTagsRequest {
|
|
1160
|
-
|
|
1161
|
-
const filterSensitiveLog: (obj: ListTagsRequest) => any;
|
|
1162
|
-
}
|
|
1163
975
|
|
|
1164
976
|
export interface ResourceTag {
|
|
1165
977
|
|
|
@@ -1167,10 +979,6 @@ export interface ResourceTag {
|
|
|
1167
979
|
|
|
1168
980
|
TagsList?: Tag[];
|
|
1169
981
|
}
|
|
1170
|
-
export declare namespace ResourceTag {
|
|
1171
|
-
|
|
1172
|
-
const filterSensitiveLog: (obj: ResourceTag) => any;
|
|
1173
|
-
}
|
|
1174
982
|
|
|
1175
983
|
export interface ListTagsResponse {
|
|
1176
984
|
|
|
@@ -1178,18 +986,10 @@ export interface ListTagsResponse {
|
|
|
1178
986
|
|
|
1179
987
|
NextToken?: string;
|
|
1180
988
|
}
|
|
1181
|
-
export declare namespace ListTagsResponse {
|
|
1182
|
-
|
|
1183
|
-
const filterSensitiveLog: (obj: ListTagsResponse) => any;
|
|
1184
|
-
}
|
|
1185
989
|
export interface ListTrailsRequest {
|
|
1186
990
|
|
|
1187
991
|
NextToken?: string;
|
|
1188
992
|
}
|
|
1189
|
-
export declare namespace ListTrailsRequest {
|
|
1190
|
-
|
|
1191
|
-
const filterSensitiveLog: (obj: ListTrailsRequest) => any;
|
|
1192
|
-
}
|
|
1193
993
|
|
|
1194
994
|
export interface TrailInfo {
|
|
1195
995
|
|
|
@@ -1199,20 +999,12 @@ export interface TrailInfo {
|
|
|
1199
999
|
|
|
1200
1000
|
HomeRegion?: string;
|
|
1201
1001
|
}
|
|
1202
|
-
export declare namespace TrailInfo {
|
|
1203
|
-
|
|
1204
|
-
const filterSensitiveLog: (obj: TrailInfo) => any;
|
|
1205
|
-
}
|
|
1206
1002
|
export interface ListTrailsResponse {
|
|
1207
1003
|
|
|
1208
1004
|
Trails?: TrailInfo[];
|
|
1209
1005
|
|
|
1210
1006
|
NextToken?: string;
|
|
1211
1007
|
}
|
|
1212
|
-
export declare namespace ListTrailsResponse {
|
|
1213
|
-
|
|
1214
|
-
const filterSensitiveLog: (obj: ListTrailsResponse) => any;
|
|
1215
|
-
}
|
|
1216
1008
|
|
|
1217
1009
|
export declare class InvalidEventCategoryException extends __BaseException {
|
|
1218
1010
|
readonly name: "InvalidEventCategoryException";
|
|
@@ -1251,10 +1043,6 @@ export interface LookupAttribute {
|
|
|
1251
1043
|
|
|
1252
1044
|
AttributeValue: string | undefined;
|
|
1253
1045
|
}
|
|
1254
|
-
export declare namespace LookupAttribute {
|
|
1255
|
-
|
|
1256
|
-
const filterSensitiveLog: (obj: LookupAttribute) => any;
|
|
1257
|
-
}
|
|
1258
1046
|
|
|
1259
1047
|
export interface LookupEventsRequest {
|
|
1260
1048
|
|
|
@@ -1270,10 +1058,6 @@ export interface LookupEventsRequest {
|
|
|
1270
1058
|
|
|
1271
1059
|
NextToken?: string;
|
|
1272
1060
|
}
|
|
1273
|
-
export declare namespace LookupEventsRequest {
|
|
1274
|
-
|
|
1275
|
-
const filterSensitiveLog: (obj: LookupEventsRequest) => any;
|
|
1276
|
-
}
|
|
1277
1061
|
|
|
1278
1062
|
export interface Resource {
|
|
1279
1063
|
|
|
@@ -1281,10 +1065,6 @@ export interface Resource {
|
|
|
1281
1065
|
|
|
1282
1066
|
ResourceName?: string;
|
|
1283
1067
|
}
|
|
1284
|
-
export declare namespace Resource {
|
|
1285
|
-
|
|
1286
|
-
const filterSensitiveLog: (obj: Resource) => any;
|
|
1287
|
-
}
|
|
1288
1068
|
|
|
1289
1069
|
export interface Event {
|
|
1290
1070
|
|
|
@@ -1306,10 +1086,6 @@ export interface Event {
|
|
|
1306
1086
|
|
|
1307
1087
|
CloudTrailEvent?: string;
|
|
1308
1088
|
}
|
|
1309
|
-
export declare namespace Event {
|
|
1310
|
-
|
|
1311
|
-
const filterSensitiveLog: (obj: Event) => any;
|
|
1312
|
-
}
|
|
1313
1089
|
|
|
1314
1090
|
export interface LookupEventsResponse {
|
|
1315
1091
|
|
|
@@ -1317,10 +1093,6 @@ export interface LookupEventsResponse {
|
|
|
1317
1093
|
|
|
1318
1094
|
NextToken?: string;
|
|
1319
1095
|
}
|
|
1320
|
-
export declare namespace LookupEventsResponse {
|
|
1321
|
-
|
|
1322
|
-
const filterSensitiveLog: (obj: LookupEventsResponse) => any;
|
|
1323
|
-
}
|
|
1324
1096
|
|
|
1325
1097
|
export declare class InvalidEventSelectorsException extends __BaseException {
|
|
1326
1098
|
readonly name: "InvalidEventSelectorsException";
|
|
@@ -1338,10 +1110,6 @@ export interface PutEventSelectorsRequest {
|
|
|
1338
1110
|
|
|
1339
1111
|
AdvancedEventSelectors?: AdvancedEventSelector[];
|
|
1340
1112
|
}
|
|
1341
|
-
export declare namespace PutEventSelectorsRequest {
|
|
1342
|
-
|
|
1343
|
-
const filterSensitiveLog: (obj: PutEventSelectorsRequest) => any;
|
|
1344
|
-
}
|
|
1345
1113
|
export interface PutEventSelectorsResponse {
|
|
1346
1114
|
|
|
1347
1115
|
TrailARN?: string;
|
|
@@ -1350,10 +1118,6 @@ export interface PutEventSelectorsResponse {
|
|
|
1350
1118
|
|
|
1351
1119
|
AdvancedEventSelectors?: AdvancedEventSelector[];
|
|
1352
1120
|
}
|
|
1353
|
-
export declare namespace PutEventSelectorsResponse {
|
|
1354
|
-
|
|
1355
|
-
const filterSensitiveLog: (obj: PutEventSelectorsResponse) => any;
|
|
1356
|
-
}
|
|
1357
1121
|
|
|
1358
1122
|
export declare class InvalidInsightSelectorsException extends __BaseException {
|
|
1359
1123
|
readonly name: "InvalidInsightSelectorsException";
|
|
@@ -1369,20 +1133,12 @@ export interface PutInsightSelectorsRequest {
|
|
|
1369
1133
|
|
|
1370
1134
|
InsightSelectors: InsightSelector[] | undefined;
|
|
1371
1135
|
}
|
|
1372
|
-
export declare namespace PutInsightSelectorsRequest {
|
|
1373
|
-
|
|
1374
|
-
const filterSensitiveLog: (obj: PutInsightSelectorsRequest) => any;
|
|
1375
|
-
}
|
|
1376
1136
|
export interface PutInsightSelectorsResponse {
|
|
1377
1137
|
|
|
1378
1138
|
TrailARN?: string;
|
|
1379
1139
|
|
|
1380
1140
|
InsightSelectors?: InsightSelector[];
|
|
1381
1141
|
}
|
|
1382
|
-
export declare namespace PutInsightSelectorsResponse {
|
|
1383
|
-
|
|
1384
|
-
const filterSensitiveLog: (obj: PutInsightSelectorsResponse) => any;
|
|
1385
|
-
}
|
|
1386
1142
|
|
|
1387
1143
|
export interface RemoveTagsRequest {
|
|
1388
1144
|
|
|
@@ -1390,17 +1146,9 @@ export interface RemoveTagsRequest {
|
|
|
1390
1146
|
|
|
1391
1147
|
TagsList: Tag[] | undefined;
|
|
1392
1148
|
}
|
|
1393
|
-
export declare namespace RemoveTagsRequest {
|
|
1394
|
-
|
|
1395
|
-
const filterSensitiveLog: (obj: RemoveTagsRequest) => any;
|
|
1396
|
-
}
|
|
1397
1149
|
|
|
1398
1150
|
export interface RemoveTagsResponse {
|
|
1399
1151
|
}
|
|
1400
|
-
export declare namespace RemoveTagsResponse {
|
|
1401
|
-
|
|
1402
|
-
const filterSensitiveLog: (obj: RemoveTagsResponse) => any;
|
|
1403
|
-
}
|
|
1404
1152
|
|
|
1405
1153
|
export declare class InvalidEventDataStoreStatusException extends __BaseException {
|
|
1406
1154
|
readonly name: "InvalidEventDataStoreStatusException";
|
|
@@ -1414,10 +1162,6 @@ export interface RestoreEventDataStoreRequest {
|
|
|
1414
1162
|
|
|
1415
1163
|
EventDataStore: string | undefined;
|
|
1416
1164
|
}
|
|
1417
|
-
export declare namespace RestoreEventDataStoreRequest {
|
|
1418
|
-
|
|
1419
|
-
const filterSensitiveLog: (obj: RestoreEventDataStoreRequest) => any;
|
|
1420
|
-
}
|
|
1421
1165
|
export interface RestoreEventDataStoreResponse {
|
|
1422
1166
|
|
|
1423
1167
|
EventDataStoreArn?: string;
|
|
@@ -1440,26 +1184,14 @@ export interface RestoreEventDataStoreResponse {
|
|
|
1440
1184
|
|
|
1441
1185
|
UpdatedTimestamp?: Date;
|
|
1442
1186
|
}
|
|
1443
|
-
export declare namespace RestoreEventDataStoreResponse {
|
|
1444
|
-
|
|
1445
|
-
const filterSensitiveLog: (obj: RestoreEventDataStoreResponse) => any;
|
|
1446
|
-
}
|
|
1447
1187
|
|
|
1448
1188
|
export interface StartLoggingRequest {
|
|
1449
1189
|
|
|
1450
1190
|
Name: string | undefined;
|
|
1451
1191
|
}
|
|
1452
|
-
export declare namespace StartLoggingRequest {
|
|
1453
|
-
|
|
1454
|
-
const filterSensitiveLog: (obj: StartLoggingRequest) => any;
|
|
1455
|
-
}
|
|
1456
1192
|
|
|
1457
1193
|
export interface StartLoggingResponse {
|
|
1458
1194
|
}
|
|
1459
|
-
export declare namespace StartLoggingResponse {
|
|
1460
|
-
|
|
1461
|
-
const filterSensitiveLog: (obj: StartLoggingResponse) => any;
|
|
1462
|
-
}
|
|
1463
1195
|
|
|
1464
1196
|
export declare class InvalidQueryStatementException extends __BaseException {
|
|
1465
1197
|
readonly name: "InvalidQueryStatementException";
|
|
@@ -1482,34 +1214,18 @@ export interface StartQueryRequest {
|
|
|
1482
1214
|
|
|
1483
1215
|
QueryStatement: string | undefined;
|
|
1484
1216
|
}
|
|
1485
|
-
export declare namespace StartQueryRequest {
|
|
1486
|
-
|
|
1487
|
-
const filterSensitiveLog: (obj: StartQueryRequest) => any;
|
|
1488
|
-
}
|
|
1489
1217
|
export interface StartQueryResponse {
|
|
1490
1218
|
|
|
1491
1219
|
QueryId?: string;
|
|
1492
1220
|
}
|
|
1493
|
-
export declare namespace StartQueryResponse {
|
|
1494
|
-
|
|
1495
|
-
const filterSensitiveLog: (obj: StartQueryResponse) => any;
|
|
1496
|
-
}
|
|
1497
1221
|
|
|
1498
1222
|
export interface StopLoggingRequest {
|
|
1499
1223
|
|
|
1500
1224
|
Name: string | undefined;
|
|
1501
1225
|
}
|
|
1502
|
-
export declare namespace StopLoggingRequest {
|
|
1503
|
-
|
|
1504
|
-
const filterSensitiveLog: (obj: StopLoggingRequest) => any;
|
|
1505
|
-
}
|
|
1506
1226
|
|
|
1507
1227
|
export interface StopLoggingResponse {
|
|
1508
1228
|
}
|
|
1509
|
-
export declare namespace StopLoggingResponse {
|
|
1510
|
-
|
|
1511
|
-
const filterSensitiveLog: (obj: StopLoggingResponse) => any;
|
|
1512
|
-
}
|
|
1513
1229
|
export interface UpdateEventDataStoreRequest {
|
|
1514
1230
|
|
|
1515
1231
|
EventDataStore: string | undefined;
|
|
@@ -1526,10 +1242,6 @@ export interface UpdateEventDataStoreRequest {
|
|
|
1526
1242
|
|
|
1527
1243
|
TerminationProtectionEnabled?: boolean;
|
|
1528
1244
|
}
|
|
1529
|
-
export declare namespace UpdateEventDataStoreRequest {
|
|
1530
|
-
|
|
1531
|
-
const filterSensitiveLog: (obj: UpdateEventDataStoreRequest) => any;
|
|
1532
|
-
}
|
|
1533
1245
|
export interface UpdateEventDataStoreResponse {
|
|
1534
1246
|
|
|
1535
1247
|
EventDataStoreArn?: string;
|
|
@@ -1552,10 +1264,6 @@ export interface UpdateEventDataStoreResponse {
|
|
|
1552
1264
|
|
|
1553
1265
|
UpdatedTimestamp?: Date;
|
|
1554
1266
|
}
|
|
1555
|
-
export declare namespace UpdateEventDataStoreResponse {
|
|
1556
|
-
|
|
1557
|
-
const filterSensitiveLog: (obj: UpdateEventDataStoreResponse) => any;
|
|
1558
|
-
}
|
|
1559
1267
|
|
|
1560
1268
|
export interface UpdateTrailRequest {
|
|
1561
1269
|
|
|
@@ -1581,10 +1289,6 @@ export interface UpdateTrailRequest {
|
|
|
1581
1289
|
|
|
1582
1290
|
IsOrganizationTrail?: boolean;
|
|
1583
1291
|
}
|
|
1584
|
-
export declare namespace UpdateTrailRequest {
|
|
1585
|
-
|
|
1586
|
-
const filterSensitiveLog: (obj: UpdateTrailRequest) => any;
|
|
1587
|
-
}
|
|
1588
1292
|
|
|
1589
1293
|
export interface UpdateTrailResponse {
|
|
1590
1294
|
|
|
@@ -1614,7 +1318,153 @@ export interface UpdateTrailResponse {
|
|
|
1614
1318
|
|
|
1615
1319
|
IsOrganizationTrail?: boolean;
|
|
1616
1320
|
}
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1321
|
+
|
|
1322
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1323
|
+
|
|
1324
|
+
export declare const AddTagsRequestFilterSensitiveLog: (obj: AddTagsRequest) => any;
|
|
1325
|
+
|
|
1326
|
+
export declare const AddTagsResponseFilterSensitiveLog: (obj: AddTagsResponse) => any;
|
|
1327
|
+
|
|
1328
|
+
export declare const AdvancedFieldSelectorFilterSensitiveLog: (obj: AdvancedFieldSelector) => any;
|
|
1329
|
+
|
|
1330
|
+
export declare const AdvancedEventSelectorFilterSensitiveLog: (obj: AdvancedEventSelector) => any;
|
|
1331
|
+
|
|
1332
|
+
export declare const CancelQueryRequestFilterSensitiveLog: (obj: CancelQueryRequest) => any;
|
|
1333
|
+
|
|
1334
|
+
export declare const CancelQueryResponseFilterSensitiveLog: (obj: CancelQueryResponse) => any;
|
|
1335
|
+
|
|
1336
|
+
export declare const CreateEventDataStoreRequestFilterSensitiveLog: (obj: CreateEventDataStoreRequest) => any;
|
|
1337
|
+
|
|
1338
|
+
export declare const CreateEventDataStoreResponseFilterSensitiveLog: (obj: CreateEventDataStoreResponse) => any;
|
|
1339
|
+
|
|
1340
|
+
export declare const CreateTrailRequestFilterSensitiveLog: (obj: CreateTrailRequest) => any;
|
|
1341
|
+
|
|
1342
|
+
export declare const CreateTrailResponseFilterSensitiveLog: (obj: CreateTrailResponse) => any;
|
|
1343
|
+
|
|
1344
|
+
export declare const DeleteEventDataStoreRequestFilterSensitiveLog: (obj: DeleteEventDataStoreRequest) => any;
|
|
1345
|
+
|
|
1346
|
+
export declare const DeleteEventDataStoreResponseFilterSensitiveLog: (obj: DeleteEventDataStoreResponse) => any;
|
|
1347
|
+
|
|
1348
|
+
export declare const DeleteTrailRequestFilterSensitiveLog: (obj: DeleteTrailRequest) => any;
|
|
1349
|
+
|
|
1350
|
+
export declare const DeleteTrailResponseFilterSensitiveLog: (obj: DeleteTrailResponse) => any;
|
|
1351
|
+
|
|
1352
|
+
export declare const DescribeQueryRequestFilterSensitiveLog: (obj: DescribeQueryRequest) => any;
|
|
1353
|
+
|
|
1354
|
+
export declare const QueryStatisticsForDescribeQueryFilterSensitiveLog: (obj: QueryStatisticsForDescribeQuery) => any;
|
|
1355
|
+
|
|
1356
|
+
export declare const DescribeQueryResponseFilterSensitiveLog: (obj: DescribeQueryResponse) => any;
|
|
1357
|
+
|
|
1358
|
+
export declare const DescribeTrailsRequestFilterSensitiveLog: (obj: DescribeTrailsRequest) => any;
|
|
1359
|
+
|
|
1360
|
+
export declare const TrailFilterSensitiveLog: (obj: Trail) => any;
|
|
1361
|
+
|
|
1362
|
+
export declare const DescribeTrailsResponseFilterSensitiveLog: (obj: DescribeTrailsResponse) => any;
|
|
1363
|
+
|
|
1364
|
+
export declare const GetEventDataStoreRequestFilterSensitiveLog: (obj: GetEventDataStoreRequest) => any;
|
|
1365
|
+
|
|
1366
|
+
export declare const GetEventDataStoreResponseFilterSensitiveLog: (obj: GetEventDataStoreResponse) => any;
|
|
1367
|
+
|
|
1368
|
+
export declare const GetEventSelectorsRequestFilterSensitiveLog: (obj: GetEventSelectorsRequest) => any;
|
|
1369
|
+
|
|
1370
|
+
export declare const DataResourceFilterSensitiveLog: (obj: DataResource) => any;
|
|
1371
|
+
|
|
1372
|
+
export declare const EventSelectorFilterSensitiveLog: (obj: EventSelector) => any;
|
|
1373
|
+
|
|
1374
|
+
export declare const GetEventSelectorsResponseFilterSensitiveLog: (obj: GetEventSelectorsResponse) => any;
|
|
1375
|
+
|
|
1376
|
+
export declare const GetInsightSelectorsRequestFilterSensitiveLog: (obj: GetInsightSelectorsRequest) => any;
|
|
1377
|
+
|
|
1378
|
+
export declare const InsightSelectorFilterSensitiveLog: (obj: InsightSelector) => any;
|
|
1379
|
+
|
|
1380
|
+
export declare const GetInsightSelectorsResponseFilterSensitiveLog: (obj: GetInsightSelectorsResponse) => any;
|
|
1381
|
+
|
|
1382
|
+
export declare const GetQueryResultsRequestFilterSensitiveLog: (obj: GetQueryResultsRequest) => any;
|
|
1383
|
+
|
|
1384
|
+
export declare const QueryStatisticsFilterSensitiveLog: (obj: QueryStatistics) => any;
|
|
1385
|
+
|
|
1386
|
+
export declare const GetQueryResultsResponseFilterSensitiveLog: (obj: GetQueryResultsResponse) => any;
|
|
1387
|
+
|
|
1388
|
+
export declare const GetTrailRequestFilterSensitiveLog: (obj: GetTrailRequest) => any;
|
|
1389
|
+
|
|
1390
|
+
export declare const GetTrailResponseFilterSensitiveLog: (obj: GetTrailResponse) => any;
|
|
1391
|
+
|
|
1392
|
+
export declare const GetTrailStatusRequestFilterSensitiveLog: (obj: GetTrailStatusRequest) => any;
|
|
1393
|
+
|
|
1394
|
+
export declare const GetTrailStatusResponseFilterSensitiveLog: (obj: GetTrailStatusResponse) => any;
|
|
1395
|
+
|
|
1396
|
+
export declare const ListEventDataStoresRequestFilterSensitiveLog: (obj: ListEventDataStoresRequest) => any;
|
|
1397
|
+
|
|
1398
|
+
export declare const EventDataStoreFilterSensitiveLog: (obj: EventDataStore) => any;
|
|
1399
|
+
|
|
1400
|
+
export declare const ListEventDataStoresResponseFilterSensitiveLog: (obj: ListEventDataStoresResponse) => any;
|
|
1401
|
+
|
|
1402
|
+
export declare const ListPublicKeysRequestFilterSensitiveLog: (obj: ListPublicKeysRequest) => any;
|
|
1403
|
+
|
|
1404
|
+
export declare const PublicKeyFilterSensitiveLog: (obj: PublicKey) => any;
|
|
1405
|
+
|
|
1406
|
+
export declare const ListPublicKeysResponseFilterSensitiveLog: (obj: ListPublicKeysResponse) => any;
|
|
1407
|
+
|
|
1408
|
+
export declare const ListQueriesRequestFilterSensitiveLog: (obj: ListQueriesRequest) => any;
|
|
1409
|
+
|
|
1410
|
+
export declare const QueryFilterSensitiveLog: (obj: Query) => any;
|
|
1411
|
+
|
|
1412
|
+
export declare const ListQueriesResponseFilterSensitiveLog: (obj: ListQueriesResponse) => any;
|
|
1413
|
+
|
|
1414
|
+
export declare const ListTagsRequestFilterSensitiveLog: (obj: ListTagsRequest) => any;
|
|
1415
|
+
|
|
1416
|
+
export declare const ResourceTagFilterSensitiveLog: (obj: ResourceTag) => any;
|
|
1417
|
+
|
|
1418
|
+
export declare const ListTagsResponseFilterSensitiveLog: (obj: ListTagsResponse) => any;
|
|
1419
|
+
|
|
1420
|
+
export declare const ListTrailsRequestFilterSensitiveLog: (obj: ListTrailsRequest) => any;
|
|
1421
|
+
|
|
1422
|
+
export declare const TrailInfoFilterSensitiveLog: (obj: TrailInfo) => any;
|
|
1423
|
+
|
|
1424
|
+
export declare const ListTrailsResponseFilterSensitiveLog: (obj: ListTrailsResponse) => any;
|
|
1425
|
+
|
|
1426
|
+
export declare const LookupAttributeFilterSensitiveLog: (obj: LookupAttribute) => any;
|
|
1427
|
+
|
|
1428
|
+
export declare const LookupEventsRequestFilterSensitiveLog: (obj: LookupEventsRequest) => any;
|
|
1429
|
+
|
|
1430
|
+
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
1431
|
+
|
|
1432
|
+
export declare const EventFilterSensitiveLog: (obj: Event) => any;
|
|
1433
|
+
|
|
1434
|
+
export declare const LookupEventsResponseFilterSensitiveLog: (obj: LookupEventsResponse) => any;
|
|
1435
|
+
|
|
1436
|
+
export declare const PutEventSelectorsRequestFilterSensitiveLog: (obj: PutEventSelectorsRequest) => any;
|
|
1437
|
+
|
|
1438
|
+
export declare const PutEventSelectorsResponseFilterSensitiveLog: (obj: PutEventSelectorsResponse) => any;
|
|
1439
|
+
|
|
1440
|
+
export declare const PutInsightSelectorsRequestFilterSensitiveLog: (obj: PutInsightSelectorsRequest) => any;
|
|
1441
|
+
|
|
1442
|
+
export declare const PutInsightSelectorsResponseFilterSensitiveLog: (obj: PutInsightSelectorsResponse) => any;
|
|
1443
|
+
|
|
1444
|
+
export declare const RemoveTagsRequestFilterSensitiveLog: (obj: RemoveTagsRequest) => any;
|
|
1445
|
+
|
|
1446
|
+
export declare const RemoveTagsResponseFilterSensitiveLog: (obj: RemoveTagsResponse) => any;
|
|
1447
|
+
|
|
1448
|
+
export declare const RestoreEventDataStoreRequestFilterSensitiveLog: (obj: RestoreEventDataStoreRequest) => any;
|
|
1449
|
+
|
|
1450
|
+
export declare const RestoreEventDataStoreResponseFilterSensitiveLog: (obj: RestoreEventDataStoreResponse) => any;
|
|
1451
|
+
|
|
1452
|
+
export declare const StartLoggingRequestFilterSensitiveLog: (obj: StartLoggingRequest) => any;
|
|
1453
|
+
|
|
1454
|
+
export declare const StartLoggingResponseFilterSensitiveLog: (obj: StartLoggingResponse) => any;
|
|
1455
|
+
|
|
1456
|
+
export declare const StartQueryRequestFilterSensitiveLog: (obj: StartQueryRequest) => any;
|
|
1457
|
+
|
|
1458
|
+
export declare const StartQueryResponseFilterSensitiveLog: (obj: StartQueryResponse) => any;
|
|
1459
|
+
|
|
1460
|
+
export declare const StopLoggingRequestFilterSensitiveLog: (obj: StopLoggingRequest) => any;
|
|
1461
|
+
|
|
1462
|
+
export declare const StopLoggingResponseFilterSensitiveLog: (obj: StopLoggingResponse) => any;
|
|
1463
|
+
|
|
1464
|
+
export declare const UpdateEventDataStoreRequestFilterSensitiveLog: (obj: UpdateEventDataStoreRequest) => any;
|
|
1465
|
+
|
|
1466
|
+
export declare const UpdateEventDataStoreResponseFilterSensitiveLog: (obj: UpdateEventDataStoreResponse) => any;
|
|
1467
|
+
|
|
1468
|
+
export declare const UpdateTrailRequestFilterSensitiveLog: (obj: UpdateTrailRequest) => any;
|
|
1469
|
+
|
|
1470
|
+
export declare const UpdateTrailResponseFilterSensitiveLog: (obj: UpdateTrailResponse) => any;
|