@aws-sdk/client-cloudtrail 3.693.0 → 3.698.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.
Files changed (62) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/index.js +346 -44
  3. package/dist-es/CloudTrail.js +12 -0
  4. package/dist-es/commands/CreateDashboardCommand.js +22 -0
  5. package/dist-es/commands/DeleteDashboardCommand.js +22 -0
  6. package/dist-es/commands/GetDashboardCommand.js +22 -0
  7. package/dist-es/commands/ListDashboardsCommand.js +22 -0
  8. package/dist-es/commands/StartDashboardRefreshCommand.js +22 -0
  9. package/dist-es/commands/UpdateDashboardCommand.js +22 -0
  10. package/dist-es/commands/index.js +6 -0
  11. package/dist-es/models/models_0.js +58 -26
  12. package/dist-es/protocols/Aws_json1_1.js +160 -7
  13. package/dist-types/CloudTrail.d.ts +43 -0
  14. package/dist-types/CloudTrailClient.d.ts +8 -2
  15. package/dist-types/commands/AddTagsCommand.d.ts +4 -2
  16. package/dist-types/commands/CancelQueryCommand.d.ts +2 -0
  17. package/dist-types/commands/CreateChannelCommand.d.ts +1 -1
  18. package/dist-types/commands/CreateDashboardCommand.d.ts +189 -0
  19. package/dist-types/commands/CreateEventDataStoreCommand.d.ts +5 -1
  20. package/dist-types/commands/CreateTrailCommand.d.ts +6 -2
  21. package/dist-types/commands/DeleteDashboardCommand.d.ts +83 -0
  22. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -3
  23. package/dist-types/commands/DeleteTrailCommand.d.ts +2 -0
  24. package/dist-types/commands/DescribeQueryCommand.d.ts +7 -3
  25. package/dist-types/commands/DescribeTrailsCommand.d.ts +2 -0
  26. package/dist-types/commands/GenerateQueryCommand.d.ts +1 -0
  27. package/dist-types/commands/GetDashboardCommand.d.ts +106 -0
  28. package/dist-types/commands/GetEventSelectorsCommand.d.ts +2 -0
  29. package/dist-types/commands/GetInsightSelectorsCommand.d.ts +2 -0
  30. package/dist-types/commands/GetQueryResultsCommand.d.ts +6 -1
  31. package/dist-types/commands/GetResourcePolicyCommand.d.ts +11 -3
  32. package/dist-types/commands/GetTrailCommand.d.ts +2 -0
  33. package/dist-types/commands/GetTrailStatusCommand.d.ts +2 -0
  34. package/dist-types/commands/ListDashboardsCommand.d.ts +85 -0
  35. package/dist-types/commands/ListTagsCommand.d.ts +3 -1
  36. package/dist-types/commands/PutEventSelectorsCommand.d.ts +2 -0
  37. package/dist-types/commands/PutInsightSelectorsCommand.d.ts +7 -1
  38. package/dist-types/commands/PutResourcePolicyCommand.d.ts +17 -21
  39. package/dist-types/commands/RemoveTagsCommand.d.ts +3 -1
  40. package/dist-types/commands/StartDashboardRefreshCommand.d.ts +98 -0
  41. package/dist-types/commands/StartImportCommand.d.ts +5 -1
  42. package/dist-types/commands/StartLoggingCommand.d.ts +2 -0
  43. package/dist-types/commands/StartQueryCommand.d.ts +7 -1
  44. package/dist-types/commands/StopLoggingCommand.d.ts +2 -0
  45. package/dist-types/commands/UpdateDashboardCommand.d.ts +164 -0
  46. package/dist-types/commands/UpdateEventDataStoreCommand.d.ts +5 -1
  47. package/dist-types/commands/UpdateTrailCommand.d.ts +7 -1
  48. package/dist-types/commands/index.d.ts +6 -0
  49. package/dist-types/models/models_0.d.ts +823 -116
  50. package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
  51. package/dist-types/ts3.4/CloudTrail.d.ts +103 -0
  52. package/dist-types/ts3.4/CloudTrailClient.d.ts +36 -0
  53. package/dist-types/ts3.4/commands/CreateDashboardCommand.d.ts +50 -0
  54. package/dist-types/ts3.4/commands/DeleteDashboardCommand.d.ts +50 -0
  55. package/dist-types/ts3.4/commands/GetDashboardCommand.d.ts +47 -0
  56. package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +50 -0
  57. package/dist-types/ts3.4/commands/StartDashboardRefreshCommand.d.ts +51 -0
  58. package/dist-types/ts3.4/commands/UpdateDashboardCommand.d.ts +50 -0
  59. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +156 -19
  61. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
  62. package/package.json +35 -35
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudTrailClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudTrailClient";
8
+ import {
9
+ ListDashboardsRequest,
10
+ ListDashboardsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListDashboardsCommandInput extends ListDashboardsRequest {}
15
+ export interface ListDashboardsCommandOutput
16
+ extends ListDashboardsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListDashboardsCommand_base: {
19
+ new (
20
+ input: ListDashboardsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListDashboardsCommandInput,
23
+ ListDashboardsCommandOutput,
24
+ CloudTrailClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListDashboardsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListDashboardsCommandInput,
32
+ ListDashboardsCommandOutput,
33
+ CloudTrailClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListDashboardsCommand extends ListDashboardsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListDashboardsRequest;
43
+ output: ListDashboardsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListDashboardsCommandInput;
47
+ output: ListDashboardsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudTrailClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudTrailClient";
8
+ import {
9
+ StartDashboardRefreshRequest,
10
+ StartDashboardRefreshResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StartDashboardRefreshCommandInput
15
+ extends StartDashboardRefreshRequest {}
16
+ export interface StartDashboardRefreshCommandOutput
17
+ extends StartDashboardRefreshResponse,
18
+ __MetadataBearer {}
19
+ declare const StartDashboardRefreshCommand_base: {
20
+ new (
21
+ input: StartDashboardRefreshCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ StartDashboardRefreshCommandInput,
24
+ StartDashboardRefreshCommandOutput,
25
+ CloudTrailClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: StartDashboardRefreshCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ StartDashboardRefreshCommandInput,
33
+ StartDashboardRefreshCommandOutput,
34
+ CloudTrailClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class StartDashboardRefreshCommand extends StartDashboardRefreshCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StartDashboardRefreshRequest;
44
+ output: StartDashboardRefreshResponse;
45
+ };
46
+ sdk: {
47
+ input: StartDashboardRefreshCommandInput;
48
+ output: StartDashboardRefreshCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudTrailClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudTrailClient";
8
+ import {
9
+ UpdateDashboardRequest,
10
+ UpdateDashboardResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateDashboardCommandInput extends UpdateDashboardRequest {}
15
+ export interface UpdateDashboardCommandOutput
16
+ extends UpdateDashboardResponse,
17
+ __MetadataBearer {}
18
+ declare const UpdateDashboardCommand_base: {
19
+ new (
20
+ input: UpdateDashboardCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateDashboardCommandInput,
23
+ UpdateDashboardCommandOutput,
24
+ CloudTrailClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: UpdateDashboardCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateDashboardCommandInput,
32
+ UpdateDashboardCommandOutput,
33
+ CloudTrailClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateDashboardCommand extends UpdateDashboardCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateDashboardRequest;
43
+ output: UpdateDashboardResponse;
44
+ };
45
+ sdk: {
46
+ input: UpdateDashboardCommandInput;
47
+ output: UpdateDashboardCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -1,9 +1,11 @@
1
1
  export * from "./AddTagsCommand";
2
2
  export * from "./CancelQueryCommand";
3
3
  export * from "./CreateChannelCommand";
4
+ export * from "./CreateDashboardCommand";
4
5
  export * from "./CreateEventDataStoreCommand";
5
6
  export * from "./CreateTrailCommand";
6
7
  export * from "./DeleteChannelCommand";
8
+ export * from "./DeleteDashboardCommand";
7
9
  export * from "./DeleteEventDataStoreCommand";
8
10
  export * from "./DeleteResourcePolicyCommand";
9
11
  export * from "./DeleteTrailCommand";
@@ -14,6 +16,7 @@ export * from "./DisableFederationCommand";
14
16
  export * from "./EnableFederationCommand";
15
17
  export * from "./GenerateQueryCommand";
16
18
  export * from "./GetChannelCommand";
19
+ export * from "./GetDashboardCommand";
17
20
  export * from "./GetEventDataStoreCommand";
18
21
  export * from "./GetEventSelectorsCommand";
19
22
  export * from "./GetImportCommand";
@@ -23,6 +26,7 @@ export * from "./GetResourcePolicyCommand";
23
26
  export * from "./GetTrailCommand";
24
27
  export * from "./GetTrailStatusCommand";
25
28
  export * from "./ListChannelsCommand";
29
+ export * from "./ListDashboardsCommand";
26
30
  export * from "./ListEventDataStoresCommand";
27
31
  export * from "./ListImportFailuresCommand";
28
32
  export * from "./ListImportsCommand";
@@ -38,6 +42,7 @@ export * from "./PutResourcePolicyCommand";
38
42
  export * from "./RegisterOrganizationDelegatedAdminCommand";
39
43
  export * from "./RemoveTagsCommand";
40
44
  export * from "./RestoreEventDataStoreCommand";
45
+ export * from "./StartDashboardRefreshCommand";
41
46
  export * from "./StartEventDataStoreIngestionCommand";
42
47
  export * from "./StartImportCommand";
43
48
  export * from "./StartLoggingCommand";
@@ -46,5 +51,6 @@ export * from "./StopEventDataStoreIngestionCommand";
46
51
  export * from "./StopImportCommand";
47
52
  export * from "./StopLoggingCommand";
48
53
  export * from "./UpdateChannelCommand";
54
+ export * from "./UpdateDashboardCommand";
49
55
  export * from "./UpdateEventDataStoreCommand";
50
56
  export * from "./UpdateTrailCommand";
@@ -217,6 +217,7 @@ export type BillingMode = (typeof BillingMode)[keyof typeof BillingMode];
217
217
  export interface CancelQueryRequest {
218
218
  EventDataStore?: string | undefined;
219
219
  QueryId: string | undefined;
220
+ EventDataStoreOwnerAccountId?: string | undefined;
220
221
  }
221
222
  export declare const QueryStatus: {
222
223
  readonly CANCELLED: "CANCELLED";
@@ -230,6 +231,7 @@ export type QueryStatus = (typeof QueryStatus)[keyof typeof QueryStatus];
230
231
  export interface CancelQueryResponse {
231
232
  QueryId: string | undefined;
232
233
  QueryStatus: QueryStatus | undefined;
234
+ EventDataStoreOwnerAccountId?: string | undefined;
233
235
  }
234
236
  export declare class InactiveQueryException extends __BaseException {
235
237
  readonly name: "InactiveQueryException";
@@ -339,6 +341,86 @@ export declare class InvalidSourceException extends __BaseException {
339
341
  opts: __ExceptionOptionType<InvalidSourceException, __BaseException>
340
342
  );
341
343
  }
344
+ export declare const RefreshScheduleFrequencyUnit: {
345
+ readonly DAYS: "DAYS";
346
+ readonly HOURS: "HOURS";
347
+ };
348
+ export type RefreshScheduleFrequencyUnit =
349
+ (typeof RefreshScheduleFrequencyUnit)[keyof typeof RefreshScheduleFrequencyUnit];
350
+ export interface RefreshScheduleFrequency {
351
+ Unit?: RefreshScheduleFrequencyUnit | undefined;
352
+ Value?: number | undefined;
353
+ }
354
+ export declare const RefreshScheduleStatus: {
355
+ readonly DISABLED: "DISABLED";
356
+ readonly ENABLED: "ENABLED";
357
+ };
358
+ export type RefreshScheduleStatus =
359
+ (typeof RefreshScheduleStatus)[keyof typeof RefreshScheduleStatus];
360
+ export interface RefreshSchedule {
361
+ Frequency?: RefreshScheduleFrequency | undefined;
362
+ Status?: RefreshScheduleStatus | undefined;
363
+ TimeOfDay?: string | undefined;
364
+ }
365
+ export interface RequestWidget {
366
+ QueryStatement: string | undefined;
367
+ QueryParameters?: string[] | undefined;
368
+ ViewProperties: Record<string, string> | undefined;
369
+ }
370
+ export interface CreateDashboardRequest {
371
+ Name: string | undefined;
372
+ RefreshSchedule?: RefreshSchedule | undefined;
373
+ TagsList?: Tag[] | undefined;
374
+ TerminationProtectionEnabled?: boolean | undefined;
375
+ Widgets?: RequestWidget[] | undefined;
376
+ }
377
+ export declare const DashboardType: {
378
+ readonly CUSTOM: "CUSTOM";
379
+ readonly MANAGED: "MANAGED";
380
+ };
381
+ export type DashboardType = (typeof DashboardType)[keyof typeof DashboardType];
382
+ export interface Widget {
383
+ QueryAlias?: string | undefined;
384
+ QueryStatement?: string | undefined;
385
+ QueryParameters?: string[] | undefined;
386
+ ViewProperties?: Record<string, string> | undefined;
387
+ }
388
+ export interface CreateDashboardResponse {
389
+ DashboardArn?: string | undefined;
390
+ Name?: string | undefined;
391
+ Type?: DashboardType | undefined;
392
+ Widgets?: Widget[] | undefined;
393
+ TagsList?: Tag[] | undefined;
394
+ RefreshSchedule?: RefreshSchedule | undefined;
395
+ TerminationProtectionEnabled?: boolean | undefined;
396
+ }
397
+ export declare class InsufficientEncryptionPolicyException extends __BaseException {
398
+ readonly name: "InsufficientEncryptionPolicyException";
399
+ readonly $fault: "client";
400
+ Message?: string | undefined;
401
+ constructor(
402
+ opts: __ExceptionOptionType<
403
+ InsufficientEncryptionPolicyException,
404
+ __BaseException
405
+ >
406
+ );
407
+ }
408
+ export declare class InvalidQueryStatementException extends __BaseException {
409
+ readonly name: "InvalidQueryStatementException";
410
+ readonly $fault: "client";
411
+ Message?: string | undefined;
412
+ constructor(
413
+ opts: __ExceptionOptionType<InvalidQueryStatementException, __BaseException>
414
+ );
415
+ }
416
+ export declare class ServiceQuotaExceededException extends __BaseException {
417
+ readonly name: "ServiceQuotaExceededException";
418
+ readonly $fault: "client";
419
+ Message?: string | undefined;
420
+ constructor(
421
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
422
+ );
423
+ }
342
424
  export declare class CloudTrailAccessNotEnabledException extends __BaseException {
343
425
  readonly name: "CloudTrailAccessNotEnabledException";
344
426
  readonly $fault: "client";
@@ -420,17 +502,6 @@ export declare class InsufficientDependencyServiceAccessPermissionException exte
420
502
  >
421
503
  );
422
504
  }
423
- export declare class InsufficientEncryptionPolicyException extends __BaseException {
424
- readonly name: "InsufficientEncryptionPolicyException";
425
- readonly $fault: "client";
426
- Message?: string | undefined;
427
- constructor(
428
- opts: __ExceptionOptionType<
429
- InsufficientEncryptionPolicyException,
430
- __BaseException
431
- >
432
- );
433
- }
434
505
  export declare class InvalidEventSelectorsException extends __BaseException {
435
506
  readonly name: "InvalidEventSelectorsException";
436
507
  readonly $fault: "client";
@@ -665,6 +736,10 @@ export interface DeleteChannelRequest {
665
736
  Channel: string | undefined;
666
737
  }
667
738
  export interface DeleteChannelResponse {}
739
+ export interface DeleteDashboardRequest {
740
+ DashboardId: string | undefined;
741
+ }
742
+ export interface DeleteDashboardResponse {}
668
743
  export interface DeleteEventDataStoreRequest {
669
744
  EventDataStore: string | undefined;
670
745
  }
@@ -764,6 +839,8 @@ export interface DescribeQueryRequest {
764
839
  EventDataStore?: string | undefined;
765
840
  QueryId?: string | undefined;
766
841
  QueryAlias?: string | undefined;
842
+ RefreshId?: string | undefined;
843
+ EventDataStoreOwnerAccountId?: string | undefined;
767
844
  }
768
845
  export declare const DeliveryStatus: {
769
846
  readonly ACCESS_DENIED: "ACCESS_DENIED";
@@ -794,6 +871,7 @@ export interface DescribeQueryResponse {
794
871
  DeliveryS3Uri?: string | undefined;
795
872
  DeliveryStatus?: DeliveryStatus | undefined;
796
873
  Prompt?: string | undefined;
874
+ EventDataStoreOwnerAccountId?: string | undefined;
797
875
  }
798
876
  export interface DescribeTrailsRequest {
799
877
  trailNameList?: string[] | undefined;
@@ -862,6 +940,7 @@ export interface GenerateQueryRequest {
862
940
  export interface GenerateQueryResponse {
863
941
  QueryStatement?: string | undefined;
864
942
  QueryAlias?: string | undefined;
943
+ EventDataStoreOwnerAccountId?: string | undefined;
865
944
  }
866
945
  export declare class GenerateResponseException extends __BaseException {
867
946
  readonly name: "GenerateResponseException";
@@ -893,6 +972,30 @@ export interface GetChannelResponse {
893
972
  Destinations?: Destination[] | undefined;
894
973
  IngestionStatus?: IngestionStatus | undefined;
895
974
  }
975
+ export interface GetDashboardRequest {
976
+ DashboardId: string | undefined;
977
+ }
978
+ export declare const DashboardStatus: {
979
+ readonly CREATED: "CREATED";
980
+ readonly CREATING: "CREATING";
981
+ readonly DELETING: "DELETING";
982
+ readonly UPDATED: "UPDATED";
983
+ readonly UPDATING: "UPDATING";
984
+ };
985
+ export type DashboardStatus =
986
+ (typeof DashboardStatus)[keyof typeof DashboardStatus];
987
+ export interface GetDashboardResponse {
988
+ DashboardArn?: string | undefined;
989
+ Type?: DashboardType | undefined;
990
+ Status?: DashboardStatus | undefined;
991
+ Widgets?: Widget[] | undefined;
992
+ RefreshSchedule?: RefreshSchedule | undefined;
993
+ CreatedTimestamp?: Date | undefined;
994
+ UpdatedTimestamp?: Date | undefined;
995
+ LastRefreshId?: string | undefined;
996
+ LastRefreshFailureReason?: string | undefined;
997
+ TerminationProtectionEnabled?: boolean | undefined;
998
+ }
896
999
  export interface GetEventDataStoreRequest {
897
1000
  EventDataStore: string | undefined;
898
1001
  }
@@ -1017,6 +1120,7 @@ export interface GetQueryResultsRequest {
1017
1120
  QueryId: string | undefined;
1018
1121
  NextToken?: string | undefined;
1019
1122
  MaxQueryResults?: number | undefined;
1123
+ EventDataStoreOwnerAccountId?: string | undefined;
1020
1124
  }
1021
1125
  export interface QueryStatistics {
1022
1126
  ResultsCount?: number | undefined;
@@ -1052,6 +1156,7 @@ export interface GetResourcePolicyRequest {
1052
1156
  export interface GetResourcePolicyResponse {
1053
1157
  ResourceArn?: string | undefined;
1054
1158
  ResourcePolicy?: string | undefined;
1159
+ DelegatedAdminResourcePolicy?: string | undefined;
1055
1160
  }
1056
1161
  export interface GetTrailRequest {
1057
1162
  Name: string | undefined;
@@ -1089,6 +1194,20 @@ export interface ListChannelsResponse {
1089
1194
  Channels?: Channel[] | undefined;
1090
1195
  NextToken?: string | undefined;
1091
1196
  }
1197
+ export interface ListDashboardsRequest {
1198
+ NamePrefix?: string | undefined;
1199
+ Type?: DashboardType | undefined;
1200
+ NextToken?: string | undefined;
1201
+ MaxResults?: number | undefined;
1202
+ }
1203
+ export interface DashboardDetail {
1204
+ DashboardArn?: string | undefined;
1205
+ Type?: DashboardType | undefined;
1206
+ }
1207
+ export interface ListDashboardsResponse {
1208
+ Dashboards?: DashboardDetail[] | undefined;
1209
+ NextToken?: string | undefined;
1210
+ }
1092
1211
  export interface ListEventDataStoresRequest {
1093
1212
  NextToken?: string | undefined;
1094
1213
  MaxResults?: number | undefined;
@@ -1370,6 +1489,7 @@ export interface PutResourcePolicyRequest {
1370
1489
  export interface PutResourcePolicyResponse {
1371
1490
  ResourceArn?: string | undefined;
1372
1491
  ResourcePolicy?: string | undefined;
1492
+ DelegatedAdminResourcePolicy?: string | undefined;
1373
1493
  }
1374
1494
  export declare class ResourcePolicyNotValidException extends __BaseException {
1375
1495
  readonly name: "ResourcePolicyNotValidException";
@@ -1430,6 +1550,13 @@ export interface RestoreEventDataStoreResponse {
1430
1550
  KmsKeyId?: string | undefined;
1431
1551
  BillingMode?: BillingMode | undefined;
1432
1552
  }
1553
+ export interface StartDashboardRefreshRequest {
1554
+ DashboardId: string | undefined;
1555
+ QueryParameterValues?: Record<string, string> | undefined;
1556
+ }
1557
+ export interface StartDashboardRefreshResponse {
1558
+ RefreshId?: string | undefined;
1559
+ }
1433
1560
  export interface StartEventDataStoreIngestionRequest {
1434
1561
  EventDataStore: string | undefined;
1435
1562
  }
@@ -1463,14 +1590,6 @@ export interface StartLoggingRequest {
1463
1590
  Name: string | undefined;
1464
1591
  }
1465
1592
  export interface StartLoggingResponse {}
1466
- export declare class InvalidQueryStatementException extends __BaseException {
1467
- readonly name: "InvalidQueryStatementException";
1468
- readonly $fault: "client";
1469
- Message?: string | undefined;
1470
- constructor(
1471
- opts: __ExceptionOptionType<InvalidQueryStatementException, __BaseException>
1472
- );
1473
- }
1474
1593
  export declare class MaxConcurrentQueriesException extends __BaseException {
1475
1594
  readonly name: "MaxConcurrentQueriesException";
1476
1595
  readonly $fault: "client";
@@ -1484,9 +1603,11 @@ export interface StartQueryRequest {
1484
1603
  DeliveryS3Uri?: string | undefined;
1485
1604
  QueryAlias?: string | undefined;
1486
1605
  QueryParameters?: string[] | undefined;
1606
+ EventDataStoreOwnerAccountId?: string | undefined;
1487
1607
  }
1488
1608
  export interface StartQueryResponse {
1489
1609
  QueryId?: string | undefined;
1610
+ EventDataStoreOwnerAccountId?: string | undefined;
1490
1611
  }
1491
1612
  export interface StopEventDataStoreIngestionRequest {
1492
1613
  EventDataStore: string | undefined;
@@ -1521,6 +1642,22 @@ export interface UpdateChannelResponse {
1521
1642
  Source?: string | undefined;
1522
1643
  Destinations?: Destination[] | undefined;
1523
1644
  }
1645
+ export interface UpdateDashboardRequest {
1646
+ DashboardId: string | undefined;
1647
+ Widgets?: RequestWidget[] | undefined;
1648
+ RefreshSchedule?: RefreshSchedule | undefined;
1649
+ TerminationProtectionEnabled?: boolean | undefined;
1650
+ }
1651
+ export interface UpdateDashboardResponse {
1652
+ DashboardArn?: string | undefined;
1653
+ Name?: string | undefined;
1654
+ Type?: DashboardType | undefined;
1655
+ Widgets?: Widget[] | undefined;
1656
+ RefreshSchedule?: RefreshSchedule | undefined;
1657
+ TerminationProtectionEnabled?: boolean | undefined;
1658
+ CreatedTimestamp?: Date | undefined;
1659
+ UpdatedTimestamp?: Date | undefined;
1660
+ }
1524
1661
  export interface UpdateEventDataStoreRequest {
1525
1662
  EventDataStore: string | undefined;
1526
1663
  Name?: string | undefined;
@@ -15,6 +15,10 @@ import {
15
15
  CreateChannelCommandInput,
16
16
  CreateChannelCommandOutput,
17
17
  } from "../commands/CreateChannelCommand";
18
+ import {
19
+ CreateDashboardCommandInput,
20
+ CreateDashboardCommandOutput,
21
+ } from "../commands/CreateDashboardCommand";
18
22
  import {
19
23
  CreateEventDataStoreCommandInput,
20
24
  CreateEventDataStoreCommandOutput,
@@ -27,6 +31,10 @@ import {
27
31
  DeleteChannelCommandInput,
28
32
  DeleteChannelCommandOutput,
29
33
  } from "../commands/DeleteChannelCommand";
34
+ import {
35
+ DeleteDashboardCommandInput,
36
+ DeleteDashboardCommandOutput,
37
+ } from "../commands/DeleteDashboardCommand";
30
38
  import {
31
39
  DeleteEventDataStoreCommandInput,
32
40
  DeleteEventDataStoreCommandOutput,
@@ -67,6 +75,10 @@ import {
67
75
  GetChannelCommandInput,
68
76
  GetChannelCommandOutput,
69
77
  } from "../commands/GetChannelCommand";
78
+ import {
79
+ GetDashboardCommandInput,
80
+ GetDashboardCommandOutput,
81
+ } from "../commands/GetDashboardCommand";
70
82
  import {
71
83
  GetEventDataStoreCommandInput,
72
84
  GetEventDataStoreCommandOutput,
@@ -103,6 +115,10 @@ import {
103
115
  ListChannelsCommandInput,
104
116
  ListChannelsCommandOutput,
105
117
  } from "../commands/ListChannelsCommand";
118
+ import {
119
+ ListDashboardsCommandInput,
120
+ ListDashboardsCommandOutput,
121
+ } from "../commands/ListDashboardsCommand";
106
122
  import {
107
123
  ListEventDataStoresCommandInput,
108
124
  ListEventDataStoresCommandOutput,
@@ -163,6 +179,10 @@ import {
163
179
  RestoreEventDataStoreCommandInput,
164
180
  RestoreEventDataStoreCommandOutput,
165
181
  } from "../commands/RestoreEventDataStoreCommand";
182
+ import {
183
+ StartDashboardRefreshCommandInput,
184
+ StartDashboardRefreshCommandOutput,
185
+ } from "../commands/StartDashboardRefreshCommand";
166
186
  import {
167
187
  StartEventDataStoreIngestionCommandInput,
168
188
  StartEventDataStoreIngestionCommandOutput,
@@ -195,6 +215,10 @@ import {
195
215
  UpdateChannelCommandInput,
196
216
  UpdateChannelCommandOutput,
197
217
  } from "../commands/UpdateChannelCommand";
218
+ import {
219
+ UpdateDashboardCommandInput,
220
+ UpdateDashboardCommandOutput,
221
+ } from "../commands/UpdateDashboardCommand";
198
222
  import {
199
223
  UpdateEventDataStoreCommandInput,
200
224
  UpdateEventDataStoreCommandOutput,
@@ -215,6 +239,10 @@ export declare const se_CreateChannelCommand: (
215
239
  input: CreateChannelCommandInput,
216
240
  context: __SerdeContext
217
241
  ) => Promise<__HttpRequest>;
242
+ export declare const se_CreateDashboardCommand: (
243
+ input: CreateDashboardCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
218
246
  export declare const se_CreateEventDataStoreCommand: (
219
247
  input: CreateEventDataStoreCommandInput,
220
248
  context: __SerdeContext
@@ -227,6 +255,10 @@ export declare const se_DeleteChannelCommand: (
227
255
  input: DeleteChannelCommandInput,
228
256
  context: __SerdeContext
229
257
  ) => Promise<__HttpRequest>;
258
+ export declare const se_DeleteDashboardCommand: (
259
+ input: DeleteDashboardCommandInput,
260
+ context: __SerdeContext
261
+ ) => Promise<__HttpRequest>;
230
262
  export declare const se_DeleteEventDataStoreCommand: (
231
263
  input: DeleteEventDataStoreCommandInput,
232
264
  context: __SerdeContext
@@ -267,6 +299,10 @@ export declare const se_GetChannelCommand: (
267
299
  input: GetChannelCommandInput,
268
300
  context: __SerdeContext
269
301
  ) => Promise<__HttpRequest>;
302
+ export declare const se_GetDashboardCommand: (
303
+ input: GetDashboardCommandInput,
304
+ context: __SerdeContext
305
+ ) => Promise<__HttpRequest>;
270
306
  export declare const se_GetEventDataStoreCommand: (
271
307
  input: GetEventDataStoreCommandInput,
272
308
  context: __SerdeContext
@@ -303,6 +339,10 @@ export declare const se_ListChannelsCommand: (
303
339
  input: ListChannelsCommandInput,
304
340
  context: __SerdeContext
305
341
  ) => Promise<__HttpRequest>;
342
+ export declare const se_ListDashboardsCommand: (
343
+ input: ListDashboardsCommandInput,
344
+ context: __SerdeContext
345
+ ) => Promise<__HttpRequest>;
306
346
  export declare const se_ListEventDataStoresCommand: (
307
347
  input: ListEventDataStoresCommandInput,
308
348
  context: __SerdeContext
@@ -363,6 +403,10 @@ export declare const se_RestoreEventDataStoreCommand: (
363
403
  input: RestoreEventDataStoreCommandInput,
364
404
  context: __SerdeContext
365
405
  ) => Promise<__HttpRequest>;
406
+ export declare const se_StartDashboardRefreshCommand: (
407
+ input: StartDashboardRefreshCommandInput,
408
+ context: __SerdeContext
409
+ ) => Promise<__HttpRequest>;
366
410
  export declare const se_StartEventDataStoreIngestionCommand: (
367
411
  input: StartEventDataStoreIngestionCommandInput,
368
412
  context: __SerdeContext
@@ -395,6 +439,10 @@ export declare const se_UpdateChannelCommand: (
395
439
  input: UpdateChannelCommandInput,
396
440
  context: __SerdeContext
397
441
  ) => Promise<__HttpRequest>;
442
+ export declare const se_UpdateDashboardCommand: (
443
+ input: UpdateDashboardCommandInput,
444
+ context: __SerdeContext
445
+ ) => Promise<__HttpRequest>;
398
446
  export declare const se_UpdateEventDataStoreCommand: (
399
447
  input: UpdateEventDataStoreCommandInput,
400
448
  context: __SerdeContext
@@ -415,6 +463,10 @@ export declare const de_CreateChannelCommand: (
415
463
  output: __HttpResponse,
416
464
  context: __SerdeContext
417
465
  ) => Promise<CreateChannelCommandOutput>;
466
+ export declare const de_CreateDashboardCommand: (
467
+ output: __HttpResponse,
468
+ context: __SerdeContext
469
+ ) => Promise<CreateDashboardCommandOutput>;
418
470
  export declare const de_CreateEventDataStoreCommand: (
419
471
  output: __HttpResponse,
420
472
  context: __SerdeContext
@@ -427,6 +479,10 @@ export declare const de_DeleteChannelCommand: (
427
479
  output: __HttpResponse,
428
480
  context: __SerdeContext
429
481
  ) => Promise<DeleteChannelCommandOutput>;
482
+ export declare const de_DeleteDashboardCommand: (
483
+ output: __HttpResponse,
484
+ context: __SerdeContext
485
+ ) => Promise<DeleteDashboardCommandOutput>;
430
486
  export declare const de_DeleteEventDataStoreCommand: (
431
487
  output: __HttpResponse,
432
488
  context: __SerdeContext
@@ -467,6 +523,10 @@ export declare const de_GetChannelCommand: (
467
523
  output: __HttpResponse,
468
524
  context: __SerdeContext
469
525
  ) => Promise<GetChannelCommandOutput>;
526
+ export declare const de_GetDashboardCommand: (
527
+ output: __HttpResponse,
528
+ context: __SerdeContext
529
+ ) => Promise<GetDashboardCommandOutput>;
470
530
  export declare const de_GetEventDataStoreCommand: (
471
531
  output: __HttpResponse,
472
532
  context: __SerdeContext
@@ -503,6 +563,10 @@ export declare const de_ListChannelsCommand: (
503
563
  output: __HttpResponse,
504
564
  context: __SerdeContext
505
565
  ) => Promise<ListChannelsCommandOutput>;
566
+ export declare const de_ListDashboardsCommand: (
567
+ output: __HttpResponse,
568
+ context: __SerdeContext
569
+ ) => Promise<ListDashboardsCommandOutput>;
506
570
  export declare const de_ListEventDataStoresCommand: (
507
571
  output: __HttpResponse,
508
572
  context: __SerdeContext
@@ -563,6 +627,10 @@ export declare const de_RestoreEventDataStoreCommand: (
563
627
  output: __HttpResponse,
564
628
  context: __SerdeContext
565
629
  ) => Promise<RestoreEventDataStoreCommandOutput>;
630
+ export declare const de_StartDashboardRefreshCommand: (
631
+ output: __HttpResponse,
632
+ context: __SerdeContext
633
+ ) => Promise<StartDashboardRefreshCommandOutput>;
566
634
  export declare const de_StartEventDataStoreIngestionCommand: (
567
635
  output: __HttpResponse,
568
636
  context: __SerdeContext
@@ -595,6 +663,10 @@ export declare const de_UpdateChannelCommand: (
595
663
  output: __HttpResponse,
596
664
  context: __SerdeContext
597
665
  ) => Promise<UpdateChannelCommandOutput>;
666
+ export declare const de_UpdateDashboardCommand: (
667
+ output: __HttpResponse,
668
+ context: __SerdeContext
669
+ ) => Promise<UpdateDashboardCommandOutput>;
598
670
  export declare const de_UpdateEventDataStoreCommand: (
599
671
  output: __HttpResponse,
600
672
  context: __SerdeContext