@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
|
@@ -14,12 +14,6 @@ export interface Tag {
|
|
|
14
14
|
*/
|
|
15
15
|
Value?: string;
|
|
16
16
|
}
|
|
17
|
-
export declare namespace Tag {
|
|
18
|
-
/**
|
|
19
|
-
* @internal
|
|
20
|
-
*/
|
|
21
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
22
|
-
}
|
|
23
17
|
/**
|
|
24
18
|
* <p>Specifies the tags to add to a trail or event data store.</p>
|
|
25
19
|
*/
|
|
@@ -36,23 +30,11 @@ export interface AddTagsRequest {
|
|
|
36
30
|
*/
|
|
37
31
|
TagsList: Tag[] | undefined;
|
|
38
32
|
}
|
|
39
|
-
export declare namespace AddTagsRequest {
|
|
40
|
-
/**
|
|
41
|
-
* @internal
|
|
42
|
-
*/
|
|
43
|
-
const filterSensitiveLog: (obj: AddTagsRequest) => any;
|
|
44
|
-
}
|
|
45
33
|
/**
|
|
46
34
|
* <p>Returns the objects or data if successful. Otherwise, returns an error.</p>
|
|
47
35
|
*/
|
|
48
36
|
export interface AddTagsResponse {
|
|
49
37
|
}
|
|
50
|
-
export declare namespace AddTagsResponse {
|
|
51
|
-
/**
|
|
52
|
-
* @internal
|
|
53
|
-
*/
|
|
54
|
-
const filterSensitiveLog: (obj: AddTagsResponse) => any;
|
|
55
|
-
}
|
|
56
38
|
/**
|
|
57
39
|
* <p>This exception is thrown when an operation is called with a trail ARN that is not valid. The following is the format of a trail ARN.</p>
|
|
58
40
|
* <p>
|
|
@@ -524,12 +506,6 @@ export interface AdvancedFieldSelector {
|
|
|
524
506
|
*/
|
|
525
507
|
NotEndsWith?: string[];
|
|
526
508
|
}
|
|
527
|
-
export declare namespace AdvancedFieldSelector {
|
|
528
|
-
/**
|
|
529
|
-
* @internal
|
|
530
|
-
*/
|
|
531
|
-
const filterSensitiveLog: (obj: AdvancedFieldSelector) => any;
|
|
532
|
-
}
|
|
533
509
|
/**
|
|
534
510
|
* <p>Advanced event selectors let you create fine-grained selectors for the following CloudTrail
|
|
535
511
|
* event record fields. They help you control costs by logging only those events
|
|
@@ -579,12 +555,6 @@ export interface AdvancedEventSelector {
|
|
|
579
555
|
*/
|
|
580
556
|
FieldSelectors: AdvancedFieldSelector[] | undefined;
|
|
581
557
|
}
|
|
582
|
-
export declare namespace AdvancedEventSelector {
|
|
583
|
-
/**
|
|
584
|
-
* @internal
|
|
585
|
-
*/
|
|
586
|
-
const filterSensitiveLog: (obj: AdvancedEventSelector) => any;
|
|
587
|
-
}
|
|
588
558
|
export interface CancelQueryRequest {
|
|
589
559
|
/**
|
|
590
560
|
* <p>The ARN (or the ID suffix of the ARN) of an event data store on which the specified query is running.</p>
|
|
@@ -596,12 +566,6 @@ export interface CancelQueryRequest {
|
|
|
596
566
|
*/
|
|
597
567
|
QueryId: string | undefined;
|
|
598
568
|
}
|
|
599
|
-
export declare namespace CancelQueryRequest {
|
|
600
|
-
/**
|
|
601
|
-
* @internal
|
|
602
|
-
*/
|
|
603
|
-
const filterSensitiveLog: (obj: CancelQueryRequest) => any;
|
|
604
|
-
}
|
|
605
569
|
export declare enum QueryStatus {
|
|
606
570
|
CANCELLED = "CANCELLED",
|
|
607
571
|
FAILED = "FAILED",
|
|
@@ -621,12 +585,6 @@ export interface CancelQueryResponse {
|
|
|
621
585
|
*/
|
|
622
586
|
QueryStatus: QueryStatus | string | undefined;
|
|
623
587
|
}
|
|
624
|
-
export declare namespace CancelQueryResponse {
|
|
625
|
-
/**
|
|
626
|
-
* @internal
|
|
627
|
-
*/
|
|
628
|
-
const filterSensitiveLog: (obj: CancelQueryResponse) => any;
|
|
629
|
-
}
|
|
630
588
|
/**
|
|
631
589
|
* <p>The specified event data store ARN is not valid or does not map to an event data store in your account.</p>
|
|
632
590
|
*/
|
|
@@ -740,12 +698,6 @@ export interface CreateEventDataStoreRequest {
|
|
|
740
698
|
*/
|
|
741
699
|
TagsList?: Tag[];
|
|
742
700
|
}
|
|
743
|
-
export declare namespace CreateEventDataStoreRequest {
|
|
744
|
-
/**
|
|
745
|
-
* @internal
|
|
746
|
-
*/
|
|
747
|
-
const filterSensitiveLog: (obj: CreateEventDataStoreRequest) => any;
|
|
748
|
-
}
|
|
749
701
|
export declare enum EventDataStoreStatus {
|
|
750
702
|
CREATED = "CREATED",
|
|
751
703
|
ENABLED = "ENABLED",
|
|
@@ -798,12 +750,6 @@ export interface CreateEventDataStoreResponse {
|
|
|
798
750
|
*/
|
|
799
751
|
UpdatedTimestamp?: Date;
|
|
800
752
|
}
|
|
801
|
-
export declare namespace CreateEventDataStoreResponse {
|
|
802
|
-
/**
|
|
803
|
-
* @internal
|
|
804
|
-
*/
|
|
805
|
-
const filterSensitiveLog: (obj: CreateEventDataStoreResponse) => any;
|
|
806
|
-
}
|
|
807
753
|
/**
|
|
808
754
|
* <p>An event data store with that name already exists.</p>
|
|
809
755
|
*/
|
|
@@ -1018,12 +964,6 @@ export interface CreateTrailRequest {
|
|
|
1018
964
|
*/
|
|
1019
965
|
TagsList?: Tag[];
|
|
1020
966
|
}
|
|
1021
|
-
export declare namespace CreateTrailRequest {
|
|
1022
|
-
/**
|
|
1023
|
-
* @internal
|
|
1024
|
-
*/
|
|
1025
|
-
const filterSensitiveLog: (obj: CreateTrailRequest) => any;
|
|
1026
|
-
}
|
|
1027
967
|
/**
|
|
1028
968
|
* <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p>
|
|
1029
969
|
*/
|
|
@@ -1095,12 +1035,6 @@ export interface CreateTrailResponse {
|
|
|
1095
1035
|
*/
|
|
1096
1036
|
IsOrganizationTrail?: boolean;
|
|
1097
1037
|
}
|
|
1098
|
-
export declare namespace CreateTrailResponse {
|
|
1099
|
-
/**
|
|
1100
|
-
* @internal
|
|
1101
|
-
*/
|
|
1102
|
-
const filterSensitiveLog: (obj: CreateTrailResponse) => any;
|
|
1103
|
-
}
|
|
1104
1038
|
/**
|
|
1105
1039
|
* <p>This exception is thrown when the policy on the S3 bucket or KMS key is not sufficient.</p>
|
|
1106
1040
|
*/
|
|
@@ -1366,20 +1300,8 @@ export interface DeleteEventDataStoreRequest {
|
|
|
1366
1300
|
*/
|
|
1367
1301
|
EventDataStore: string | undefined;
|
|
1368
1302
|
}
|
|
1369
|
-
export declare namespace DeleteEventDataStoreRequest {
|
|
1370
|
-
/**
|
|
1371
|
-
* @internal
|
|
1372
|
-
*/
|
|
1373
|
-
const filterSensitiveLog: (obj: DeleteEventDataStoreRequest) => any;
|
|
1374
|
-
}
|
|
1375
1303
|
export interface DeleteEventDataStoreResponse {
|
|
1376
1304
|
}
|
|
1377
|
-
export declare namespace DeleteEventDataStoreResponse {
|
|
1378
|
-
/**
|
|
1379
|
-
* @internal
|
|
1380
|
-
*/
|
|
1381
|
-
const filterSensitiveLog: (obj: DeleteEventDataStoreResponse) => any;
|
|
1382
|
-
}
|
|
1383
1305
|
/**
|
|
1384
1306
|
* <p>The event data store cannot be deleted because termination protection is enabled for it.</p>
|
|
1385
1307
|
*/
|
|
@@ -1407,23 +1329,11 @@ export interface DeleteTrailRequest {
|
|
|
1407
1329
|
*/
|
|
1408
1330
|
Name: string | undefined;
|
|
1409
1331
|
}
|
|
1410
|
-
export declare namespace DeleteTrailRequest {
|
|
1411
|
-
/**
|
|
1412
|
-
* @internal
|
|
1413
|
-
*/
|
|
1414
|
-
const filterSensitiveLog: (obj: DeleteTrailRequest) => any;
|
|
1415
|
-
}
|
|
1416
1332
|
/**
|
|
1417
1333
|
* <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p>
|
|
1418
1334
|
*/
|
|
1419
1335
|
export interface DeleteTrailResponse {
|
|
1420
1336
|
}
|
|
1421
|
-
export declare namespace DeleteTrailResponse {
|
|
1422
|
-
/**
|
|
1423
|
-
* @internal
|
|
1424
|
-
*/
|
|
1425
|
-
const filterSensitiveLog: (obj: DeleteTrailResponse) => any;
|
|
1426
|
-
}
|
|
1427
1337
|
/**
|
|
1428
1338
|
* <p>This exception is thrown when an operation is called on a trail from a region other than the region in which the trail was created.</p>
|
|
1429
1339
|
*/
|
|
@@ -1464,12 +1374,6 @@ export interface DescribeQueryRequest {
|
|
|
1464
1374
|
*/
|
|
1465
1375
|
QueryId: string | undefined;
|
|
1466
1376
|
}
|
|
1467
|
-
export declare namespace DescribeQueryRequest {
|
|
1468
|
-
/**
|
|
1469
|
-
* @internal
|
|
1470
|
-
*/
|
|
1471
|
-
const filterSensitiveLog: (obj: DescribeQueryRequest) => any;
|
|
1472
|
-
}
|
|
1473
1377
|
/**
|
|
1474
1378
|
* <p>Gets metadata about a query, including the number of events that were matched, the total number of events scanned, the query run time
|
|
1475
1379
|
* in milliseconds, and the query's creation time.</p>
|
|
@@ -1497,12 +1401,6 @@ export interface QueryStatisticsForDescribeQuery {
|
|
|
1497
1401
|
*/
|
|
1498
1402
|
CreationTime?: Date;
|
|
1499
1403
|
}
|
|
1500
|
-
export declare namespace QueryStatisticsForDescribeQuery {
|
|
1501
|
-
/**
|
|
1502
|
-
* @internal
|
|
1503
|
-
*/
|
|
1504
|
-
const filterSensitiveLog: (obj: QueryStatisticsForDescribeQuery) => any;
|
|
1505
|
-
}
|
|
1506
1404
|
export interface DescribeQueryResponse {
|
|
1507
1405
|
/**
|
|
1508
1406
|
* <p>The ID of the query.</p>
|
|
@@ -1528,12 +1426,6 @@ export interface DescribeQueryResponse {
|
|
|
1528
1426
|
*/
|
|
1529
1427
|
ErrorMessage?: string;
|
|
1530
1428
|
}
|
|
1531
|
-
export declare namespace DescribeQueryResponse {
|
|
1532
|
-
/**
|
|
1533
|
-
* @internal
|
|
1534
|
-
*/
|
|
1535
|
-
const filterSensitiveLog: (obj: DescribeQueryResponse) => any;
|
|
1536
|
-
}
|
|
1537
1429
|
/**
|
|
1538
1430
|
* <p>Returns information about the trail.</p>
|
|
1539
1431
|
*/
|
|
@@ -1566,12 +1458,6 @@ export interface DescribeTrailsRequest {
|
|
|
1566
1458
|
*/
|
|
1567
1459
|
includeShadowTrails?: boolean;
|
|
1568
1460
|
}
|
|
1569
|
-
export declare namespace DescribeTrailsRequest {
|
|
1570
|
-
/**
|
|
1571
|
-
* @internal
|
|
1572
|
-
*/
|
|
1573
|
-
const filterSensitiveLog: (obj: DescribeTrailsRequest) => any;
|
|
1574
|
-
}
|
|
1575
1461
|
/**
|
|
1576
1462
|
* <p>The settings for a trail.</p>
|
|
1577
1463
|
*/
|
|
@@ -1658,12 +1544,6 @@ export interface Trail {
|
|
|
1658
1544
|
*/
|
|
1659
1545
|
IsOrganizationTrail?: boolean;
|
|
1660
1546
|
}
|
|
1661
|
-
export declare namespace Trail {
|
|
1662
|
-
/**
|
|
1663
|
-
* @internal
|
|
1664
|
-
*/
|
|
1665
|
-
const filterSensitiveLog: (obj: Trail) => any;
|
|
1666
|
-
}
|
|
1667
1547
|
/**
|
|
1668
1548
|
* <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p>
|
|
1669
1549
|
*/
|
|
@@ -1675,24 +1555,12 @@ export interface DescribeTrailsResponse {
|
|
|
1675
1555
|
*/
|
|
1676
1556
|
trailList?: Trail[];
|
|
1677
1557
|
}
|
|
1678
|
-
export declare namespace DescribeTrailsResponse {
|
|
1679
|
-
/**
|
|
1680
|
-
* @internal
|
|
1681
|
-
*/
|
|
1682
|
-
const filterSensitiveLog: (obj: DescribeTrailsResponse) => any;
|
|
1683
|
-
}
|
|
1684
1558
|
export interface GetEventDataStoreRequest {
|
|
1685
1559
|
/**
|
|
1686
1560
|
* <p>The ARN (or ID suffix of the ARN) of the event data store about which you want information.</p>
|
|
1687
1561
|
*/
|
|
1688
1562
|
EventDataStore: string | undefined;
|
|
1689
1563
|
}
|
|
1690
|
-
export declare namespace GetEventDataStoreRequest {
|
|
1691
|
-
/**
|
|
1692
|
-
* @internal
|
|
1693
|
-
*/
|
|
1694
|
-
const filterSensitiveLog: (obj: GetEventDataStoreRequest) => any;
|
|
1695
|
-
}
|
|
1696
1564
|
export interface GetEventDataStoreResponse {
|
|
1697
1565
|
/**
|
|
1698
1566
|
* <p>The event data store Amazon Resource Number (ARN).</p>
|
|
@@ -1735,12 +1603,6 @@ export interface GetEventDataStoreResponse {
|
|
|
1735
1603
|
*/
|
|
1736
1604
|
UpdatedTimestamp?: Date;
|
|
1737
1605
|
}
|
|
1738
|
-
export declare namespace GetEventDataStoreResponse {
|
|
1739
|
-
/**
|
|
1740
|
-
* @internal
|
|
1741
|
-
*/
|
|
1742
|
-
const filterSensitiveLog: (obj: GetEventDataStoreResponse) => any;
|
|
1743
|
-
}
|
|
1744
1606
|
export interface GetEventSelectorsRequest {
|
|
1745
1607
|
/**
|
|
1746
1608
|
* <p>Specifies the name of the trail or trail ARN. If you specify a trail name, the
|
|
@@ -1770,12 +1632,6 @@ export interface GetEventSelectorsRequest {
|
|
|
1770
1632
|
*/
|
|
1771
1633
|
TrailName: string | undefined;
|
|
1772
1634
|
}
|
|
1773
|
-
export declare namespace GetEventSelectorsRequest {
|
|
1774
|
-
/**
|
|
1775
|
-
* @internal
|
|
1776
|
-
*/
|
|
1777
|
-
const filterSensitiveLog: (obj: GetEventSelectorsRequest) => any;
|
|
1778
|
-
}
|
|
1779
1635
|
/**
|
|
1780
1636
|
* <p>The Amazon S3 buckets, Lambda functions, or Amazon DynamoDB tables that you specify
|
|
1781
1637
|
* in your event selectors for your trail to log data events. Data events provide information
|
|
@@ -1941,12 +1797,6 @@ export interface DataResource {
|
|
|
1941
1797
|
*/
|
|
1942
1798
|
Values?: string[];
|
|
1943
1799
|
}
|
|
1944
|
-
export declare namespace DataResource {
|
|
1945
|
-
/**
|
|
1946
|
-
* @internal
|
|
1947
|
-
*/
|
|
1948
|
-
const filterSensitiveLog: (obj: DataResource) => any;
|
|
1949
|
-
}
|
|
1950
1800
|
export declare enum ReadWriteType {
|
|
1951
1801
|
All = "All",
|
|
1952
1802
|
ReadOnly = "ReadOnly",
|
|
@@ -2000,12 +1850,6 @@ export interface EventSelector {
|
|
|
2000
1850
|
*/
|
|
2001
1851
|
ExcludeManagementEventSources?: string[];
|
|
2002
1852
|
}
|
|
2003
|
-
export declare namespace EventSelector {
|
|
2004
|
-
/**
|
|
2005
|
-
* @internal
|
|
2006
|
-
*/
|
|
2007
|
-
const filterSensitiveLog: (obj: EventSelector) => any;
|
|
2008
|
-
}
|
|
2009
1853
|
export interface GetEventSelectorsResponse {
|
|
2010
1854
|
/**
|
|
2011
1855
|
* <p>The specified trail ARN that has the event selectors.</p>
|
|
@@ -2022,12 +1866,6 @@ export interface GetEventSelectorsResponse {
|
|
|
2022
1866
|
*/
|
|
2023
1867
|
AdvancedEventSelectors?: AdvancedEventSelector[];
|
|
2024
1868
|
}
|
|
2025
|
-
export declare namespace GetEventSelectorsResponse {
|
|
2026
|
-
/**
|
|
2027
|
-
* @internal
|
|
2028
|
-
*/
|
|
2029
|
-
const filterSensitiveLog: (obj: GetEventSelectorsResponse) => any;
|
|
2030
|
-
}
|
|
2031
1869
|
export interface GetInsightSelectorsRequest {
|
|
2032
1870
|
/**
|
|
2033
1871
|
* <p>Specifies the name of the trail or trail ARN. If you specify a trail name, the
|
|
@@ -2057,12 +1895,6 @@ export interface GetInsightSelectorsRequest {
|
|
|
2057
1895
|
*/
|
|
2058
1896
|
TrailName: string | undefined;
|
|
2059
1897
|
}
|
|
2060
|
-
export declare namespace GetInsightSelectorsRequest {
|
|
2061
|
-
/**
|
|
2062
|
-
* @internal
|
|
2063
|
-
*/
|
|
2064
|
-
const filterSensitiveLog: (obj: GetInsightSelectorsRequest) => any;
|
|
2065
|
-
}
|
|
2066
1898
|
export declare enum InsightType {
|
|
2067
1899
|
ApiCallRateInsight = "ApiCallRateInsight",
|
|
2068
1900
|
ApiErrorRateInsight = "ApiErrorRateInsight"
|
|
@@ -2076,12 +1908,6 @@ export interface InsightSelector {
|
|
|
2076
1908
|
*/
|
|
2077
1909
|
InsightType?: InsightType | string;
|
|
2078
1910
|
}
|
|
2079
|
-
export declare namespace InsightSelector {
|
|
2080
|
-
/**
|
|
2081
|
-
* @internal
|
|
2082
|
-
*/
|
|
2083
|
-
const filterSensitiveLog: (obj: InsightSelector) => any;
|
|
2084
|
-
}
|
|
2085
1911
|
export interface GetInsightSelectorsResponse {
|
|
2086
1912
|
/**
|
|
2087
1913
|
* <p>The Amazon Resource Name (ARN) of a trail for which you want to get Insights selectors.</p>
|
|
@@ -2093,12 +1919,6 @@ export interface GetInsightSelectorsResponse {
|
|
|
2093
1919
|
*/
|
|
2094
1920
|
InsightSelectors?: InsightSelector[];
|
|
2095
1921
|
}
|
|
2096
|
-
export declare namespace GetInsightSelectorsResponse {
|
|
2097
|
-
/**
|
|
2098
|
-
* @internal
|
|
2099
|
-
*/
|
|
2100
|
-
const filterSensitiveLog: (obj: GetInsightSelectorsResponse) => any;
|
|
2101
|
-
}
|
|
2102
1922
|
/**
|
|
2103
1923
|
* <p>If you run <code>GetInsightSelectors</code> on a trail that does not have Insights events enabled, the operation throws the exception <code>InsightNotEnabledException</code>.</p>
|
|
2104
1924
|
*/
|
|
@@ -2132,12 +1952,6 @@ export interface GetQueryResultsRequest {
|
|
|
2132
1952
|
*/
|
|
2133
1953
|
MaxQueryResults?: number;
|
|
2134
1954
|
}
|
|
2135
|
-
export declare namespace GetQueryResultsRequest {
|
|
2136
|
-
/**
|
|
2137
|
-
* @internal
|
|
2138
|
-
*/
|
|
2139
|
-
const filterSensitiveLog: (obj: GetQueryResultsRequest) => any;
|
|
2140
|
-
}
|
|
2141
1955
|
/**
|
|
2142
1956
|
* <p>Metadata about a query, such as the number of results.</p>
|
|
2143
1957
|
*/
|
|
@@ -2156,12 +1970,6 @@ export interface QueryStatistics {
|
|
|
2156
1970
|
*/
|
|
2157
1971
|
BytesScanned?: number;
|
|
2158
1972
|
}
|
|
2159
|
-
export declare namespace QueryStatistics {
|
|
2160
|
-
/**
|
|
2161
|
-
* @internal
|
|
2162
|
-
*/
|
|
2163
|
-
const filterSensitiveLog: (obj: QueryStatistics) => any;
|
|
2164
|
-
}
|
|
2165
1973
|
export interface GetQueryResultsResponse {
|
|
2166
1974
|
/**
|
|
2167
1975
|
* <p>The status of the query. Values include <code>QUEUED</code>, <code>RUNNING</code>, <code>FINISHED</code>, <code>FAILED</code>,
|
|
@@ -2185,12 +1993,6 @@ export interface GetQueryResultsResponse {
|
|
|
2185
1993
|
*/
|
|
2186
1994
|
ErrorMessage?: string;
|
|
2187
1995
|
}
|
|
2188
|
-
export declare namespace GetQueryResultsResponse {
|
|
2189
|
-
/**
|
|
2190
|
-
* @internal
|
|
2191
|
-
*/
|
|
2192
|
-
const filterSensitiveLog: (obj: GetQueryResultsResponse) => any;
|
|
2193
|
-
}
|
|
2194
1996
|
/**
|
|
2195
1997
|
* <p>This exception is thrown if the limit specified is not valid.</p>
|
|
2196
1998
|
*/
|
|
@@ -2227,24 +2029,12 @@ export interface GetTrailRequest {
|
|
|
2227
2029
|
*/
|
|
2228
2030
|
Name: string | undefined;
|
|
2229
2031
|
}
|
|
2230
|
-
export declare namespace GetTrailRequest {
|
|
2231
|
-
/**
|
|
2232
|
-
* @internal
|
|
2233
|
-
*/
|
|
2234
|
-
const filterSensitiveLog: (obj: GetTrailRequest) => any;
|
|
2235
|
-
}
|
|
2236
2032
|
export interface GetTrailResponse {
|
|
2237
2033
|
/**
|
|
2238
2034
|
* <p>The settings for a trail.</p>
|
|
2239
2035
|
*/
|
|
2240
2036
|
Trail?: Trail;
|
|
2241
2037
|
}
|
|
2242
|
-
export declare namespace GetTrailResponse {
|
|
2243
|
-
/**
|
|
2244
|
-
* @internal
|
|
2245
|
-
*/
|
|
2246
|
-
const filterSensitiveLog: (obj: GetTrailResponse) => any;
|
|
2247
|
-
}
|
|
2248
2038
|
/**
|
|
2249
2039
|
* <p>The name of a trail about which you want the current status.</p>
|
|
2250
2040
|
*/
|
|
@@ -2258,12 +2048,6 @@ export interface GetTrailStatusRequest {
|
|
|
2258
2048
|
*/
|
|
2259
2049
|
Name: string | undefined;
|
|
2260
2050
|
}
|
|
2261
|
-
export declare namespace GetTrailStatusRequest {
|
|
2262
|
-
/**
|
|
2263
|
-
* @internal
|
|
2264
|
-
*/
|
|
2265
|
-
const filterSensitiveLog: (obj: GetTrailStatusRequest) => any;
|
|
2266
|
-
}
|
|
2267
2051
|
/**
|
|
2268
2052
|
* <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p>
|
|
2269
2053
|
*/
|
|
@@ -2355,12 +2139,6 @@ export interface GetTrailStatusResponse {
|
|
|
2355
2139
|
*/
|
|
2356
2140
|
TimeLoggingStopped?: string;
|
|
2357
2141
|
}
|
|
2358
|
-
export declare namespace GetTrailStatusResponse {
|
|
2359
|
-
/**
|
|
2360
|
-
* @internal
|
|
2361
|
-
*/
|
|
2362
|
-
const filterSensitiveLog: (obj: GetTrailStatusResponse) => any;
|
|
2363
|
-
}
|
|
2364
2142
|
export interface ListEventDataStoresRequest {
|
|
2365
2143
|
/**
|
|
2366
2144
|
* <p>A token you can use to get the next page of event data store results.</p>
|
|
@@ -2371,12 +2149,6 @@ export interface ListEventDataStoresRequest {
|
|
|
2371
2149
|
*/
|
|
2372
2150
|
MaxResults?: number;
|
|
2373
2151
|
}
|
|
2374
|
-
export declare namespace ListEventDataStoresRequest {
|
|
2375
|
-
/**
|
|
2376
|
-
* @internal
|
|
2377
|
-
*/
|
|
2378
|
-
const filterSensitiveLog: (obj: ListEventDataStoresRequest) => any;
|
|
2379
|
-
}
|
|
2380
2152
|
/**
|
|
2381
2153
|
* <p>A storage lake of event data against which you can run complex SQL-based queries. An event data store can include events
|
|
2382
2154
|
* that you have logged on your account from the last 90 to 2555 days
|
|
@@ -2441,12 +2213,6 @@ export interface EventDataStore {
|
|
|
2441
2213
|
*/
|
|
2442
2214
|
UpdatedTimestamp?: Date;
|
|
2443
2215
|
}
|
|
2444
|
-
export declare namespace EventDataStore {
|
|
2445
|
-
/**
|
|
2446
|
-
* @internal
|
|
2447
|
-
*/
|
|
2448
|
-
const filterSensitiveLog: (obj: EventDataStore) => any;
|
|
2449
|
-
}
|
|
2450
2216
|
export interface ListEventDataStoresResponse {
|
|
2451
2217
|
/**
|
|
2452
2218
|
* <p>Contains information about event data stores in the account, in the current region.</p>
|
|
@@ -2457,12 +2223,6 @@ export interface ListEventDataStoresResponse {
|
|
|
2457
2223
|
*/
|
|
2458
2224
|
NextToken?: string;
|
|
2459
2225
|
}
|
|
2460
|
-
export declare namespace ListEventDataStoresResponse {
|
|
2461
|
-
/**
|
|
2462
|
-
* @internal
|
|
2463
|
-
*/
|
|
2464
|
-
const filterSensitiveLog: (obj: ListEventDataStoresResponse) => any;
|
|
2465
|
-
}
|
|
2466
2226
|
/**
|
|
2467
2227
|
* <p>Occurs if the timestamp values are not valid. Either the start time occurs after the end time, or the time range is outside the range of possible values.</p>
|
|
2468
2228
|
*/
|
|
@@ -2512,12 +2272,6 @@ export interface ListPublicKeysRequest {
|
|
|
2512
2272
|
*/
|
|
2513
2273
|
NextToken?: string;
|
|
2514
2274
|
}
|
|
2515
|
-
export declare namespace ListPublicKeysRequest {
|
|
2516
|
-
/**
|
|
2517
|
-
* @internal
|
|
2518
|
-
*/
|
|
2519
|
-
const filterSensitiveLog: (obj: ListPublicKeysRequest) => any;
|
|
2520
|
-
}
|
|
2521
2275
|
/**
|
|
2522
2276
|
* <p>Contains information about a returned public key.</p>
|
|
2523
2277
|
*/
|
|
@@ -2539,12 +2293,6 @@ export interface PublicKey {
|
|
|
2539
2293
|
*/
|
|
2540
2294
|
Fingerprint?: string;
|
|
2541
2295
|
}
|
|
2542
|
-
export declare namespace PublicKey {
|
|
2543
|
-
/**
|
|
2544
|
-
* @internal
|
|
2545
|
-
*/
|
|
2546
|
-
const filterSensitiveLog: (obj: PublicKey) => any;
|
|
2547
|
-
}
|
|
2548
2296
|
/**
|
|
2549
2297
|
* <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p>
|
|
2550
2298
|
*/
|
|
@@ -2561,12 +2309,6 @@ export interface ListPublicKeysResponse {
|
|
|
2561
2309
|
*/
|
|
2562
2310
|
NextToken?: string;
|
|
2563
2311
|
}
|
|
2564
|
-
export declare namespace ListPublicKeysResponse {
|
|
2565
|
-
/**
|
|
2566
|
-
* @internal
|
|
2567
|
-
*/
|
|
2568
|
-
const filterSensitiveLog: (obj: ListPublicKeysResponse) => any;
|
|
2569
|
-
}
|
|
2570
2312
|
/**
|
|
2571
2313
|
* <p>A date range for the query was specified that is not valid. Be sure that the start time is chronologically
|
|
2572
2314
|
* before the end time. For more information
|
|
@@ -2629,12 +2371,6 @@ export interface ListQueriesRequest {
|
|
|
2629
2371
|
*/
|
|
2630
2372
|
QueryStatus?: QueryStatus | string;
|
|
2631
2373
|
}
|
|
2632
|
-
export declare namespace ListQueriesRequest {
|
|
2633
|
-
/**
|
|
2634
|
-
* @internal
|
|
2635
|
-
*/
|
|
2636
|
-
const filterSensitiveLog: (obj: ListQueriesRequest) => any;
|
|
2637
|
-
}
|
|
2638
2374
|
/**
|
|
2639
2375
|
* <p>A SQL string of criteria about events that you want to collect in an event data store.</p>
|
|
2640
2376
|
*/
|
|
@@ -2653,12 +2389,6 @@ export interface Query {
|
|
|
2653
2389
|
*/
|
|
2654
2390
|
CreationTime?: Date;
|
|
2655
2391
|
}
|
|
2656
|
-
export declare namespace Query {
|
|
2657
|
-
/**
|
|
2658
|
-
* @internal
|
|
2659
|
-
*/
|
|
2660
|
-
const filterSensitiveLog: (obj: Query) => any;
|
|
2661
|
-
}
|
|
2662
2392
|
export interface ListQueriesResponse {
|
|
2663
2393
|
/**
|
|
2664
2394
|
* <p>Lists matching query results, and shows query ID, status, and creation time of each query.</p>
|
|
@@ -2669,12 +2399,6 @@ export interface ListQueriesResponse {
|
|
|
2669
2399
|
*/
|
|
2670
2400
|
NextToken?: string;
|
|
2671
2401
|
}
|
|
2672
|
-
export declare namespace ListQueriesResponse {
|
|
2673
|
-
/**
|
|
2674
|
-
* @internal
|
|
2675
|
-
*/
|
|
2676
|
-
const filterSensitiveLog: (obj: ListQueriesResponse) => any;
|
|
2677
|
-
}
|
|
2678
2402
|
/**
|
|
2679
2403
|
* <p>Specifies a list of tags to return.</p>
|
|
2680
2404
|
*/
|
|
@@ -2689,12 +2413,6 @@ export interface ListTagsRequest {
|
|
|
2689
2413
|
*/
|
|
2690
2414
|
NextToken?: string;
|
|
2691
2415
|
}
|
|
2692
|
-
export declare namespace ListTagsRequest {
|
|
2693
|
-
/**
|
|
2694
|
-
* @internal
|
|
2695
|
-
*/
|
|
2696
|
-
const filterSensitiveLog: (obj: ListTagsRequest) => any;
|
|
2697
|
-
}
|
|
2698
2416
|
/**
|
|
2699
2417
|
* <p>A resource tag.</p>
|
|
2700
2418
|
*/
|
|
@@ -2708,12 +2426,6 @@ export interface ResourceTag {
|
|
|
2708
2426
|
*/
|
|
2709
2427
|
TagsList?: Tag[];
|
|
2710
2428
|
}
|
|
2711
|
-
export declare namespace ResourceTag {
|
|
2712
|
-
/**
|
|
2713
|
-
* @internal
|
|
2714
|
-
*/
|
|
2715
|
-
const filterSensitiveLog: (obj: ResourceTag) => any;
|
|
2716
|
-
}
|
|
2717
2429
|
/**
|
|
2718
2430
|
* <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p>
|
|
2719
2431
|
*/
|
|
@@ -2727,12 +2439,6 @@ export interface ListTagsResponse {
|
|
|
2727
2439
|
*/
|
|
2728
2440
|
NextToken?: string;
|
|
2729
2441
|
}
|
|
2730
|
-
export declare namespace ListTagsResponse {
|
|
2731
|
-
/**
|
|
2732
|
-
* @internal
|
|
2733
|
-
*/
|
|
2734
|
-
const filterSensitiveLog: (obj: ListTagsResponse) => any;
|
|
2735
|
-
}
|
|
2736
2442
|
export interface ListTrailsRequest {
|
|
2737
2443
|
/**
|
|
2738
2444
|
* <p>The token to use to get the next page of results after a previous API call. This token must be passed
|
|
@@ -2742,12 +2448,6 @@ export interface ListTrailsRequest {
|
|
|
2742
2448
|
*/
|
|
2743
2449
|
NextToken?: string;
|
|
2744
2450
|
}
|
|
2745
|
-
export declare namespace ListTrailsRequest {
|
|
2746
|
-
/**
|
|
2747
|
-
* @internal
|
|
2748
|
-
*/
|
|
2749
|
-
const filterSensitiveLog: (obj: ListTrailsRequest) => any;
|
|
2750
|
-
}
|
|
2751
2451
|
/**
|
|
2752
2452
|
* <p>Information about a CloudTrail trail, including the trail's name, home region, and Amazon Resource Name (ARN).</p>
|
|
2753
2453
|
*/
|
|
@@ -2765,12 +2465,6 @@ export interface TrailInfo {
|
|
|
2765
2465
|
*/
|
|
2766
2466
|
HomeRegion?: string;
|
|
2767
2467
|
}
|
|
2768
|
-
export declare namespace TrailInfo {
|
|
2769
|
-
/**
|
|
2770
|
-
* @internal
|
|
2771
|
-
*/
|
|
2772
|
-
const filterSensitiveLog: (obj: TrailInfo) => any;
|
|
2773
|
-
}
|
|
2774
2468
|
export interface ListTrailsResponse {
|
|
2775
2469
|
/**
|
|
2776
2470
|
* <p>Returns the name, ARN, and home region of trails in the current account.</p>
|
|
@@ -2784,12 +2478,6 @@ export interface ListTrailsResponse {
|
|
|
2784
2478
|
*/
|
|
2785
2479
|
NextToken?: string;
|
|
2786
2480
|
}
|
|
2787
|
-
export declare namespace ListTrailsResponse {
|
|
2788
|
-
/**
|
|
2789
|
-
* @internal
|
|
2790
|
-
*/
|
|
2791
|
-
const filterSensitiveLog: (obj: ListTrailsResponse) => any;
|
|
2792
|
-
}
|
|
2793
2481
|
/**
|
|
2794
2482
|
* <p>Occurs if an event category that is not valid is specified as a value of <code>EventCategory</code>.</p>
|
|
2795
2483
|
*/
|
|
@@ -2846,12 +2534,6 @@ export interface LookupAttribute {
|
|
|
2846
2534
|
*/
|
|
2847
2535
|
AttributeValue: string | undefined;
|
|
2848
2536
|
}
|
|
2849
|
-
export declare namespace LookupAttribute {
|
|
2850
|
-
/**
|
|
2851
|
-
* @internal
|
|
2852
|
-
*/
|
|
2853
|
-
const filterSensitiveLog: (obj: LookupAttribute) => any;
|
|
2854
|
-
}
|
|
2855
2537
|
/**
|
|
2856
2538
|
* <p>Contains a request for LookupEvents.</p>
|
|
2857
2539
|
*/
|
|
@@ -2883,12 +2565,6 @@ export interface LookupEventsRequest {
|
|
|
2883
2565
|
*/
|
|
2884
2566
|
NextToken?: string;
|
|
2885
2567
|
}
|
|
2886
|
-
export declare namespace LookupEventsRequest {
|
|
2887
|
-
/**
|
|
2888
|
-
* @internal
|
|
2889
|
-
*/
|
|
2890
|
-
const filterSensitiveLog: (obj: LookupEventsRequest) => any;
|
|
2891
|
-
}
|
|
2892
2568
|
/**
|
|
2893
2569
|
* <p>Specifies the type and name of a resource referenced by an event.</p>
|
|
2894
2570
|
*/
|
|
@@ -2905,12 +2581,6 @@ export interface Resource {
|
|
|
2905
2581
|
*/
|
|
2906
2582
|
ResourceName?: string;
|
|
2907
2583
|
}
|
|
2908
|
-
export declare namespace Resource {
|
|
2909
|
-
/**
|
|
2910
|
-
* @internal
|
|
2911
|
-
*/
|
|
2912
|
-
const filterSensitiveLog: (obj: Resource) => any;
|
|
2913
|
-
}
|
|
2914
2584
|
/**
|
|
2915
2585
|
* <p>Contains information about an event that was returned by a lookup request. The result includes a representation of a CloudTrail event.</p>
|
|
2916
2586
|
*/
|
|
@@ -2953,12 +2623,6 @@ export interface Event {
|
|
|
2953
2623
|
*/
|
|
2954
2624
|
CloudTrailEvent?: string;
|
|
2955
2625
|
}
|
|
2956
|
-
export declare namespace Event {
|
|
2957
|
-
/**
|
|
2958
|
-
* @internal
|
|
2959
|
-
*/
|
|
2960
|
-
const filterSensitiveLog: (obj: Event) => any;
|
|
2961
|
-
}
|
|
2962
2626
|
/**
|
|
2963
2627
|
* <p>Contains a response to a LookupEvents action.</p>
|
|
2964
2628
|
*/
|
|
@@ -2975,12 +2639,6 @@ export interface LookupEventsResponse {
|
|
|
2975
2639
|
*/
|
|
2976
2640
|
NextToken?: string;
|
|
2977
2641
|
}
|
|
2978
|
-
export declare namespace LookupEventsResponse {
|
|
2979
|
-
/**
|
|
2980
|
-
* @internal
|
|
2981
|
-
*/
|
|
2982
|
-
const filterSensitiveLog: (obj: LookupEventsResponse) => any;
|
|
2983
|
-
}
|
|
2984
2642
|
/**
|
|
2985
2643
|
* <p>This exception is thrown when the <code>PutEventSelectors</code> operation is called with a number of event
|
|
2986
2644
|
* selectors, advanced event selectors, or data resources that is not valid. The combination of event selectors or advanced event selectors and
|
|
@@ -3065,12 +2723,6 @@ export interface PutEventSelectorsRequest {
|
|
|
3065
2723
|
*/
|
|
3066
2724
|
AdvancedEventSelectors?: AdvancedEventSelector[];
|
|
3067
2725
|
}
|
|
3068
|
-
export declare namespace PutEventSelectorsRequest {
|
|
3069
|
-
/**
|
|
3070
|
-
* @internal
|
|
3071
|
-
*/
|
|
3072
|
-
const filterSensitiveLog: (obj: PutEventSelectorsRequest) => any;
|
|
3073
|
-
}
|
|
3074
2726
|
export interface PutEventSelectorsResponse {
|
|
3075
2727
|
/**
|
|
3076
2728
|
* <p>Specifies the ARN of the trail that was updated with event selectors. The following is the format of a trail ARN.</p>
|
|
@@ -3088,12 +2740,6 @@ export interface PutEventSelectorsResponse {
|
|
|
3088
2740
|
*/
|
|
3089
2741
|
AdvancedEventSelectors?: AdvancedEventSelector[];
|
|
3090
2742
|
}
|
|
3091
|
-
export declare namespace PutEventSelectorsResponse {
|
|
3092
|
-
/**
|
|
3093
|
-
* @internal
|
|
3094
|
-
*/
|
|
3095
|
-
const filterSensitiveLog: (obj: PutEventSelectorsResponse) => any;
|
|
3096
|
-
}
|
|
3097
2743
|
/**
|
|
3098
2744
|
* <p>The formatting or syntax of the <code>InsightSelectors</code> JSON statement in your <code>PutInsightSelectors</code> or <code>GetInsightSelectors</code> request
|
|
3099
2745
|
* is not valid, or the specified insight type in the <code>InsightSelectors</code> statement is not a valid insight type.</p>
|
|
@@ -3120,12 +2766,6 @@ export interface PutInsightSelectorsRequest {
|
|
|
3120
2766
|
*/
|
|
3121
2767
|
InsightSelectors: InsightSelector[] | undefined;
|
|
3122
2768
|
}
|
|
3123
|
-
export declare namespace PutInsightSelectorsRequest {
|
|
3124
|
-
/**
|
|
3125
|
-
* @internal
|
|
3126
|
-
*/
|
|
3127
|
-
const filterSensitiveLog: (obj: PutInsightSelectorsRequest) => any;
|
|
3128
|
-
}
|
|
3129
2769
|
export interface PutInsightSelectorsResponse {
|
|
3130
2770
|
/**
|
|
3131
2771
|
* <p>The Amazon Resource Name (ARN) of a trail for which you want to change or add Insights selectors.</p>
|
|
@@ -3137,12 +2777,6 @@ export interface PutInsightSelectorsResponse {
|
|
|
3137
2777
|
*/
|
|
3138
2778
|
InsightSelectors?: InsightSelector[];
|
|
3139
2779
|
}
|
|
3140
|
-
export declare namespace PutInsightSelectorsResponse {
|
|
3141
|
-
/**
|
|
3142
|
-
* @internal
|
|
3143
|
-
*/
|
|
3144
|
-
const filterSensitiveLog: (obj: PutInsightSelectorsResponse) => any;
|
|
3145
|
-
}
|
|
3146
2780
|
/**
|
|
3147
2781
|
* <p>Specifies the tags to remove from a trail or event data store.</p>
|
|
3148
2782
|
*/
|
|
@@ -3161,23 +2795,11 @@ export interface RemoveTagsRequest {
|
|
|
3161
2795
|
*/
|
|
3162
2796
|
TagsList: Tag[] | undefined;
|
|
3163
2797
|
}
|
|
3164
|
-
export declare namespace RemoveTagsRequest {
|
|
3165
|
-
/**
|
|
3166
|
-
* @internal
|
|
3167
|
-
*/
|
|
3168
|
-
const filterSensitiveLog: (obj: RemoveTagsRequest) => any;
|
|
3169
|
-
}
|
|
3170
2798
|
/**
|
|
3171
2799
|
* <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p>
|
|
3172
2800
|
*/
|
|
3173
2801
|
export interface RemoveTagsResponse {
|
|
3174
2802
|
}
|
|
3175
|
-
export declare namespace RemoveTagsResponse {
|
|
3176
|
-
/**
|
|
3177
|
-
* @internal
|
|
3178
|
-
*/
|
|
3179
|
-
const filterSensitiveLog: (obj: RemoveTagsResponse) => any;
|
|
3180
|
-
}
|
|
3181
2803
|
/**
|
|
3182
2804
|
* <p>The event data store is not in a status that supports the operation.</p>
|
|
3183
2805
|
*/
|
|
@@ -3199,12 +2821,6 @@ export interface RestoreEventDataStoreRequest {
|
|
|
3199
2821
|
*/
|
|
3200
2822
|
EventDataStore: string | undefined;
|
|
3201
2823
|
}
|
|
3202
|
-
export declare namespace RestoreEventDataStoreRequest {
|
|
3203
|
-
/**
|
|
3204
|
-
* @internal
|
|
3205
|
-
*/
|
|
3206
|
-
const filterSensitiveLog: (obj: RestoreEventDataStoreRequest) => any;
|
|
3207
|
-
}
|
|
3208
2824
|
export interface RestoreEventDataStoreResponse {
|
|
3209
2825
|
/**
|
|
3210
2826
|
* <p>The event data store ARN.</p>
|
|
@@ -3249,12 +2865,6 @@ export interface RestoreEventDataStoreResponse {
|
|
|
3249
2865
|
*/
|
|
3250
2866
|
UpdatedTimestamp?: Date;
|
|
3251
2867
|
}
|
|
3252
|
-
export declare namespace RestoreEventDataStoreResponse {
|
|
3253
|
-
/**
|
|
3254
|
-
* @internal
|
|
3255
|
-
*/
|
|
3256
|
-
const filterSensitiveLog: (obj: RestoreEventDataStoreResponse) => any;
|
|
3257
|
-
}
|
|
3258
2868
|
/**
|
|
3259
2869
|
* <p>The request to CloudTrail to start logging Amazon Web Services API calls for an account.</p>
|
|
3260
2870
|
*/
|
|
@@ -3268,23 +2878,11 @@ export interface StartLoggingRequest {
|
|
|
3268
2878
|
*/
|
|
3269
2879
|
Name: string | undefined;
|
|
3270
2880
|
}
|
|
3271
|
-
export declare namespace StartLoggingRequest {
|
|
3272
|
-
/**
|
|
3273
|
-
* @internal
|
|
3274
|
-
*/
|
|
3275
|
-
const filterSensitiveLog: (obj: StartLoggingRequest) => any;
|
|
3276
|
-
}
|
|
3277
2881
|
/**
|
|
3278
2882
|
* <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p>
|
|
3279
2883
|
*/
|
|
3280
2884
|
export interface StartLoggingResponse {
|
|
3281
2885
|
}
|
|
3282
|
-
export declare namespace StartLoggingResponse {
|
|
3283
|
-
/**
|
|
3284
|
-
* @internal
|
|
3285
|
-
*/
|
|
3286
|
-
const filterSensitiveLog: (obj: StartLoggingResponse) => any;
|
|
3287
|
-
}
|
|
3288
2886
|
/**
|
|
3289
2887
|
* <p>The query that was submitted has validation errors, or uses incorrect syntax or unsupported keywords. For more information
|
|
3290
2888
|
* about writing a query, see <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/query-create-edit-query.html">Create
|
|
@@ -3324,24 +2922,12 @@ export interface StartQueryRequest {
|
|
|
3324
2922
|
*/
|
|
3325
2923
|
QueryStatement: string | undefined;
|
|
3326
2924
|
}
|
|
3327
|
-
export declare namespace StartQueryRequest {
|
|
3328
|
-
/**
|
|
3329
|
-
* @internal
|
|
3330
|
-
*/
|
|
3331
|
-
const filterSensitiveLog: (obj: StartQueryRequest) => any;
|
|
3332
|
-
}
|
|
3333
2925
|
export interface StartQueryResponse {
|
|
3334
2926
|
/**
|
|
3335
2927
|
* <p>The ID of the started query.</p>
|
|
3336
2928
|
*/
|
|
3337
2929
|
QueryId?: string;
|
|
3338
2930
|
}
|
|
3339
|
-
export declare namespace StartQueryResponse {
|
|
3340
|
-
/**
|
|
3341
|
-
* @internal
|
|
3342
|
-
*/
|
|
3343
|
-
const filterSensitiveLog: (obj: StartQueryResponse) => any;
|
|
3344
|
-
}
|
|
3345
2931
|
/**
|
|
3346
2932
|
* <p>Passes the request to CloudTrail to stop logging Amazon Web Services API calls for the specified account.</p>
|
|
3347
2933
|
*/
|
|
@@ -3355,23 +2941,11 @@ export interface StopLoggingRequest {
|
|
|
3355
2941
|
*/
|
|
3356
2942
|
Name: string | undefined;
|
|
3357
2943
|
}
|
|
3358
|
-
export declare namespace StopLoggingRequest {
|
|
3359
|
-
/**
|
|
3360
|
-
* @internal
|
|
3361
|
-
*/
|
|
3362
|
-
const filterSensitiveLog: (obj: StopLoggingRequest) => any;
|
|
3363
|
-
}
|
|
3364
2944
|
/**
|
|
3365
2945
|
* <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p>
|
|
3366
2946
|
*/
|
|
3367
2947
|
export interface StopLoggingResponse {
|
|
3368
2948
|
}
|
|
3369
|
-
export declare namespace StopLoggingResponse {
|
|
3370
|
-
/**
|
|
3371
|
-
* @internal
|
|
3372
|
-
*/
|
|
3373
|
-
const filterSensitiveLog: (obj: StopLoggingResponse) => any;
|
|
3374
|
-
}
|
|
3375
2949
|
export interface UpdateEventDataStoreRequest {
|
|
3376
2950
|
/**
|
|
3377
2951
|
* <p>The ARN (or the ID suffix of the ARN) of the event data store that you want to update.</p>
|
|
@@ -3402,12 +2976,6 @@ export interface UpdateEventDataStoreRequest {
|
|
|
3402
2976
|
*/
|
|
3403
2977
|
TerminationProtectionEnabled?: boolean;
|
|
3404
2978
|
}
|
|
3405
|
-
export declare namespace UpdateEventDataStoreRequest {
|
|
3406
|
-
/**
|
|
3407
|
-
* @internal
|
|
3408
|
-
*/
|
|
3409
|
-
const filterSensitiveLog: (obj: UpdateEventDataStoreRequest) => any;
|
|
3410
|
-
}
|
|
3411
2979
|
export interface UpdateEventDataStoreResponse {
|
|
3412
2980
|
/**
|
|
3413
2981
|
* <p>The ARN of the event data store.</p>
|
|
@@ -3450,12 +3018,6 @@ export interface UpdateEventDataStoreResponse {
|
|
|
3450
3018
|
*/
|
|
3451
3019
|
UpdatedTimestamp?: Date;
|
|
3452
3020
|
}
|
|
3453
|
-
export declare namespace UpdateEventDataStoreResponse {
|
|
3454
|
-
/**
|
|
3455
|
-
* @internal
|
|
3456
|
-
*/
|
|
3457
|
-
const filterSensitiveLog: (obj: UpdateEventDataStoreResponse) => any;
|
|
3458
|
-
}
|
|
3459
3021
|
/**
|
|
3460
3022
|
* <p>Specifies settings to update for the trail.</p>
|
|
3461
3023
|
*/
|
|
@@ -3562,12 +3124,6 @@ export interface UpdateTrailRequest {
|
|
|
3562
3124
|
*/
|
|
3563
3125
|
IsOrganizationTrail?: boolean;
|
|
3564
3126
|
}
|
|
3565
|
-
export declare namespace UpdateTrailRequest {
|
|
3566
|
-
/**
|
|
3567
|
-
* @internal
|
|
3568
|
-
*/
|
|
3569
|
-
const filterSensitiveLog: (obj: UpdateTrailRequest) => any;
|
|
3570
|
-
}
|
|
3571
3127
|
/**
|
|
3572
3128
|
* <p>Returns the objects or data listed below if successful. Otherwise, returns an error.</p>
|
|
3573
3129
|
*/
|
|
@@ -3640,9 +3196,303 @@ export interface UpdateTrailResponse {
|
|
|
3640
3196
|
*/
|
|
3641
3197
|
IsOrganizationTrail?: boolean;
|
|
3642
3198
|
}
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3199
|
+
/**
|
|
3200
|
+
* @internal
|
|
3201
|
+
*/
|
|
3202
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
3203
|
+
/**
|
|
3204
|
+
* @internal
|
|
3205
|
+
*/
|
|
3206
|
+
export declare const AddTagsRequestFilterSensitiveLog: (obj: AddTagsRequest) => any;
|
|
3207
|
+
/**
|
|
3208
|
+
* @internal
|
|
3209
|
+
*/
|
|
3210
|
+
export declare const AddTagsResponseFilterSensitiveLog: (obj: AddTagsResponse) => any;
|
|
3211
|
+
/**
|
|
3212
|
+
* @internal
|
|
3213
|
+
*/
|
|
3214
|
+
export declare const AdvancedFieldSelectorFilterSensitiveLog: (obj: AdvancedFieldSelector) => any;
|
|
3215
|
+
/**
|
|
3216
|
+
* @internal
|
|
3217
|
+
*/
|
|
3218
|
+
export declare const AdvancedEventSelectorFilterSensitiveLog: (obj: AdvancedEventSelector) => any;
|
|
3219
|
+
/**
|
|
3220
|
+
* @internal
|
|
3221
|
+
*/
|
|
3222
|
+
export declare const CancelQueryRequestFilterSensitiveLog: (obj: CancelQueryRequest) => any;
|
|
3223
|
+
/**
|
|
3224
|
+
* @internal
|
|
3225
|
+
*/
|
|
3226
|
+
export declare const CancelQueryResponseFilterSensitiveLog: (obj: CancelQueryResponse) => any;
|
|
3227
|
+
/**
|
|
3228
|
+
* @internal
|
|
3229
|
+
*/
|
|
3230
|
+
export declare const CreateEventDataStoreRequestFilterSensitiveLog: (obj: CreateEventDataStoreRequest) => any;
|
|
3231
|
+
/**
|
|
3232
|
+
* @internal
|
|
3233
|
+
*/
|
|
3234
|
+
export declare const CreateEventDataStoreResponseFilterSensitiveLog: (obj: CreateEventDataStoreResponse) => any;
|
|
3235
|
+
/**
|
|
3236
|
+
* @internal
|
|
3237
|
+
*/
|
|
3238
|
+
export declare const CreateTrailRequestFilterSensitiveLog: (obj: CreateTrailRequest) => any;
|
|
3239
|
+
/**
|
|
3240
|
+
* @internal
|
|
3241
|
+
*/
|
|
3242
|
+
export declare const CreateTrailResponseFilterSensitiveLog: (obj: CreateTrailResponse) => any;
|
|
3243
|
+
/**
|
|
3244
|
+
* @internal
|
|
3245
|
+
*/
|
|
3246
|
+
export declare const DeleteEventDataStoreRequestFilterSensitiveLog: (obj: DeleteEventDataStoreRequest) => any;
|
|
3247
|
+
/**
|
|
3248
|
+
* @internal
|
|
3249
|
+
*/
|
|
3250
|
+
export declare const DeleteEventDataStoreResponseFilterSensitiveLog: (obj: DeleteEventDataStoreResponse) => any;
|
|
3251
|
+
/**
|
|
3252
|
+
* @internal
|
|
3253
|
+
*/
|
|
3254
|
+
export declare const DeleteTrailRequestFilterSensitiveLog: (obj: DeleteTrailRequest) => any;
|
|
3255
|
+
/**
|
|
3256
|
+
* @internal
|
|
3257
|
+
*/
|
|
3258
|
+
export declare const DeleteTrailResponseFilterSensitiveLog: (obj: DeleteTrailResponse) => any;
|
|
3259
|
+
/**
|
|
3260
|
+
* @internal
|
|
3261
|
+
*/
|
|
3262
|
+
export declare const DescribeQueryRequestFilterSensitiveLog: (obj: DescribeQueryRequest) => any;
|
|
3263
|
+
/**
|
|
3264
|
+
* @internal
|
|
3265
|
+
*/
|
|
3266
|
+
export declare const QueryStatisticsForDescribeQueryFilterSensitiveLog: (obj: QueryStatisticsForDescribeQuery) => any;
|
|
3267
|
+
/**
|
|
3268
|
+
* @internal
|
|
3269
|
+
*/
|
|
3270
|
+
export declare const DescribeQueryResponseFilterSensitiveLog: (obj: DescribeQueryResponse) => any;
|
|
3271
|
+
/**
|
|
3272
|
+
* @internal
|
|
3273
|
+
*/
|
|
3274
|
+
export declare const DescribeTrailsRequestFilterSensitiveLog: (obj: DescribeTrailsRequest) => any;
|
|
3275
|
+
/**
|
|
3276
|
+
* @internal
|
|
3277
|
+
*/
|
|
3278
|
+
export declare const TrailFilterSensitiveLog: (obj: Trail) => any;
|
|
3279
|
+
/**
|
|
3280
|
+
* @internal
|
|
3281
|
+
*/
|
|
3282
|
+
export declare const DescribeTrailsResponseFilterSensitiveLog: (obj: DescribeTrailsResponse) => any;
|
|
3283
|
+
/**
|
|
3284
|
+
* @internal
|
|
3285
|
+
*/
|
|
3286
|
+
export declare const GetEventDataStoreRequestFilterSensitiveLog: (obj: GetEventDataStoreRequest) => any;
|
|
3287
|
+
/**
|
|
3288
|
+
* @internal
|
|
3289
|
+
*/
|
|
3290
|
+
export declare const GetEventDataStoreResponseFilterSensitiveLog: (obj: GetEventDataStoreResponse) => any;
|
|
3291
|
+
/**
|
|
3292
|
+
* @internal
|
|
3293
|
+
*/
|
|
3294
|
+
export declare const GetEventSelectorsRequestFilterSensitiveLog: (obj: GetEventSelectorsRequest) => any;
|
|
3295
|
+
/**
|
|
3296
|
+
* @internal
|
|
3297
|
+
*/
|
|
3298
|
+
export declare const DataResourceFilterSensitiveLog: (obj: DataResource) => any;
|
|
3299
|
+
/**
|
|
3300
|
+
* @internal
|
|
3301
|
+
*/
|
|
3302
|
+
export declare const EventSelectorFilterSensitiveLog: (obj: EventSelector) => any;
|
|
3303
|
+
/**
|
|
3304
|
+
* @internal
|
|
3305
|
+
*/
|
|
3306
|
+
export declare const GetEventSelectorsResponseFilterSensitiveLog: (obj: GetEventSelectorsResponse) => any;
|
|
3307
|
+
/**
|
|
3308
|
+
* @internal
|
|
3309
|
+
*/
|
|
3310
|
+
export declare const GetInsightSelectorsRequestFilterSensitiveLog: (obj: GetInsightSelectorsRequest) => any;
|
|
3311
|
+
/**
|
|
3312
|
+
* @internal
|
|
3313
|
+
*/
|
|
3314
|
+
export declare const InsightSelectorFilterSensitiveLog: (obj: InsightSelector) => any;
|
|
3315
|
+
/**
|
|
3316
|
+
* @internal
|
|
3317
|
+
*/
|
|
3318
|
+
export declare const GetInsightSelectorsResponseFilterSensitiveLog: (obj: GetInsightSelectorsResponse) => any;
|
|
3319
|
+
/**
|
|
3320
|
+
* @internal
|
|
3321
|
+
*/
|
|
3322
|
+
export declare const GetQueryResultsRequestFilterSensitiveLog: (obj: GetQueryResultsRequest) => any;
|
|
3323
|
+
/**
|
|
3324
|
+
* @internal
|
|
3325
|
+
*/
|
|
3326
|
+
export declare const QueryStatisticsFilterSensitiveLog: (obj: QueryStatistics) => any;
|
|
3327
|
+
/**
|
|
3328
|
+
* @internal
|
|
3329
|
+
*/
|
|
3330
|
+
export declare const GetQueryResultsResponseFilterSensitiveLog: (obj: GetQueryResultsResponse) => any;
|
|
3331
|
+
/**
|
|
3332
|
+
* @internal
|
|
3333
|
+
*/
|
|
3334
|
+
export declare const GetTrailRequestFilterSensitiveLog: (obj: GetTrailRequest) => any;
|
|
3335
|
+
/**
|
|
3336
|
+
* @internal
|
|
3337
|
+
*/
|
|
3338
|
+
export declare const GetTrailResponseFilterSensitiveLog: (obj: GetTrailResponse) => any;
|
|
3339
|
+
/**
|
|
3340
|
+
* @internal
|
|
3341
|
+
*/
|
|
3342
|
+
export declare const GetTrailStatusRequestFilterSensitiveLog: (obj: GetTrailStatusRequest) => any;
|
|
3343
|
+
/**
|
|
3344
|
+
* @internal
|
|
3345
|
+
*/
|
|
3346
|
+
export declare const GetTrailStatusResponseFilterSensitiveLog: (obj: GetTrailStatusResponse) => any;
|
|
3347
|
+
/**
|
|
3348
|
+
* @internal
|
|
3349
|
+
*/
|
|
3350
|
+
export declare const ListEventDataStoresRequestFilterSensitiveLog: (obj: ListEventDataStoresRequest) => any;
|
|
3351
|
+
/**
|
|
3352
|
+
* @internal
|
|
3353
|
+
*/
|
|
3354
|
+
export declare const EventDataStoreFilterSensitiveLog: (obj: EventDataStore) => any;
|
|
3355
|
+
/**
|
|
3356
|
+
* @internal
|
|
3357
|
+
*/
|
|
3358
|
+
export declare const ListEventDataStoresResponseFilterSensitiveLog: (obj: ListEventDataStoresResponse) => any;
|
|
3359
|
+
/**
|
|
3360
|
+
* @internal
|
|
3361
|
+
*/
|
|
3362
|
+
export declare const ListPublicKeysRequestFilterSensitiveLog: (obj: ListPublicKeysRequest) => any;
|
|
3363
|
+
/**
|
|
3364
|
+
* @internal
|
|
3365
|
+
*/
|
|
3366
|
+
export declare const PublicKeyFilterSensitiveLog: (obj: PublicKey) => any;
|
|
3367
|
+
/**
|
|
3368
|
+
* @internal
|
|
3369
|
+
*/
|
|
3370
|
+
export declare const ListPublicKeysResponseFilterSensitiveLog: (obj: ListPublicKeysResponse) => any;
|
|
3371
|
+
/**
|
|
3372
|
+
* @internal
|
|
3373
|
+
*/
|
|
3374
|
+
export declare const ListQueriesRequestFilterSensitiveLog: (obj: ListQueriesRequest) => any;
|
|
3375
|
+
/**
|
|
3376
|
+
* @internal
|
|
3377
|
+
*/
|
|
3378
|
+
export declare const QueryFilterSensitiveLog: (obj: Query) => any;
|
|
3379
|
+
/**
|
|
3380
|
+
* @internal
|
|
3381
|
+
*/
|
|
3382
|
+
export declare const ListQueriesResponseFilterSensitiveLog: (obj: ListQueriesResponse) => any;
|
|
3383
|
+
/**
|
|
3384
|
+
* @internal
|
|
3385
|
+
*/
|
|
3386
|
+
export declare const ListTagsRequestFilterSensitiveLog: (obj: ListTagsRequest) => any;
|
|
3387
|
+
/**
|
|
3388
|
+
* @internal
|
|
3389
|
+
*/
|
|
3390
|
+
export declare const ResourceTagFilterSensitiveLog: (obj: ResourceTag) => any;
|
|
3391
|
+
/**
|
|
3392
|
+
* @internal
|
|
3393
|
+
*/
|
|
3394
|
+
export declare const ListTagsResponseFilterSensitiveLog: (obj: ListTagsResponse) => any;
|
|
3395
|
+
/**
|
|
3396
|
+
* @internal
|
|
3397
|
+
*/
|
|
3398
|
+
export declare const ListTrailsRequestFilterSensitiveLog: (obj: ListTrailsRequest) => any;
|
|
3399
|
+
/**
|
|
3400
|
+
* @internal
|
|
3401
|
+
*/
|
|
3402
|
+
export declare const TrailInfoFilterSensitiveLog: (obj: TrailInfo) => any;
|
|
3403
|
+
/**
|
|
3404
|
+
* @internal
|
|
3405
|
+
*/
|
|
3406
|
+
export declare const ListTrailsResponseFilterSensitiveLog: (obj: ListTrailsResponse) => any;
|
|
3407
|
+
/**
|
|
3408
|
+
* @internal
|
|
3409
|
+
*/
|
|
3410
|
+
export declare const LookupAttributeFilterSensitiveLog: (obj: LookupAttribute) => any;
|
|
3411
|
+
/**
|
|
3412
|
+
* @internal
|
|
3413
|
+
*/
|
|
3414
|
+
export declare const LookupEventsRequestFilterSensitiveLog: (obj: LookupEventsRequest) => any;
|
|
3415
|
+
/**
|
|
3416
|
+
* @internal
|
|
3417
|
+
*/
|
|
3418
|
+
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
3419
|
+
/**
|
|
3420
|
+
* @internal
|
|
3421
|
+
*/
|
|
3422
|
+
export declare const EventFilterSensitiveLog: (obj: Event) => any;
|
|
3423
|
+
/**
|
|
3424
|
+
* @internal
|
|
3425
|
+
*/
|
|
3426
|
+
export declare const LookupEventsResponseFilterSensitiveLog: (obj: LookupEventsResponse) => any;
|
|
3427
|
+
/**
|
|
3428
|
+
* @internal
|
|
3429
|
+
*/
|
|
3430
|
+
export declare const PutEventSelectorsRequestFilterSensitiveLog: (obj: PutEventSelectorsRequest) => any;
|
|
3431
|
+
/**
|
|
3432
|
+
* @internal
|
|
3433
|
+
*/
|
|
3434
|
+
export declare const PutEventSelectorsResponseFilterSensitiveLog: (obj: PutEventSelectorsResponse) => any;
|
|
3435
|
+
/**
|
|
3436
|
+
* @internal
|
|
3437
|
+
*/
|
|
3438
|
+
export declare const PutInsightSelectorsRequestFilterSensitiveLog: (obj: PutInsightSelectorsRequest) => any;
|
|
3439
|
+
/**
|
|
3440
|
+
* @internal
|
|
3441
|
+
*/
|
|
3442
|
+
export declare const PutInsightSelectorsResponseFilterSensitiveLog: (obj: PutInsightSelectorsResponse) => any;
|
|
3443
|
+
/**
|
|
3444
|
+
* @internal
|
|
3445
|
+
*/
|
|
3446
|
+
export declare const RemoveTagsRequestFilterSensitiveLog: (obj: RemoveTagsRequest) => any;
|
|
3447
|
+
/**
|
|
3448
|
+
* @internal
|
|
3449
|
+
*/
|
|
3450
|
+
export declare const RemoveTagsResponseFilterSensitiveLog: (obj: RemoveTagsResponse) => any;
|
|
3451
|
+
/**
|
|
3452
|
+
* @internal
|
|
3453
|
+
*/
|
|
3454
|
+
export declare const RestoreEventDataStoreRequestFilterSensitiveLog: (obj: RestoreEventDataStoreRequest) => any;
|
|
3455
|
+
/**
|
|
3456
|
+
* @internal
|
|
3457
|
+
*/
|
|
3458
|
+
export declare const RestoreEventDataStoreResponseFilterSensitiveLog: (obj: RestoreEventDataStoreResponse) => any;
|
|
3459
|
+
/**
|
|
3460
|
+
* @internal
|
|
3461
|
+
*/
|
|
3462
|
+
export declare const StartLoggingRequestFilterSensitiveLog: (obj: StartLoggingRequest) => any;
|
|
3463
|
+
/**
|
|
3464
|
+
* @internal
|
|
3465
|
+
*/
|
|
3466
|
+
export declare const StartLoggingResponseFilterSensitiveLog: (obj: StartLoggingResponse) => any;
|
|
3467
|
+
/**
|
|
3468
|
+
* @internal
|
|
3469
|
+
*/
|
|
3470
|
+
export declare const StartQueryRequestFilterSensitiveLog: (obj: StartQueryRequest) => any;
|
|
3471
|
+
/**
|
|
3472
|
+
* @internal
|
|
3473
|
+
*/
|
|
3474
|
+
export declare const StartQueryResponseFilterSensitiveLog: (obj: StartQueryResponse) => any;
|
|
3475
|
+
/**
|
|
3476
|
+
* @internal
|
|
3477
|
+
*/
|
|
3478
|
+
export declare const StopLoggingRequestFilterSensitiveLog: (obj: StopLoggingRequest) => any;
|
|
3479
|
+
/**
|
|
3480
|
+
* @internal
|
|
3481
|
+
*/
|
|
3482
|
+
export declare const StopLoggingResponseFilterSensitiveLog: (obj: StopLoggingResponse) => any;
|
|
3483
|
+
/**
|
|
3484
|
+
* @internal
|
|
3485
|
+
*/
|
|
3486
|
+
export declare const UpdateEventDataStoreRequestFilterSensitiveLog: (obj: UpdateEventDataStoreRequest) => any;
|
|
3487
|
+
/**
|
|
3488
|
+
* @internal
|
|
3489
|
+
*/
|
|
3490
|
+
export declare const UpdateEventDataStoreResponseFilterSensitiveLog: (obj: UpdateEventDataStoreResponse) => any;
|
|
3491
|
+
/**
|
|
3492
|
+
* @internal
|
|
3493
|
+
*/
|
|
3494
|
+
export declare const UpdateTrailRequestFilterSensitiveLog: (obj: UpdateTrailRequest) => any;
|
|
3495
|
+
/**
|
|
3496
|
+
* @internal
|
|
3497
|
+
*/
|
|
3498
|
+
export declare const UpdateTrailResponseFilterSensitiveLog: (obj: UpdateTrailResponse) => any;
|