@@ -10,6 +10,11 @@ import {
10
10
CreateChannelCommandInput ,
11
11
CreateChannelCommandOutput ,
12
12
} from "./commands/CreateChannelCommand" ;
13
+ import {
14
+ CreateDashboardCommand ,
15
+ CreateDashboardCommandInput ,
16
+ CreateDashboardCommandOutput ,
17
+ } from "./commands/CreateDashboardCommand" ;
13
18
import {
14
19
CreateEventDataStoreCommand ,
15
20
CreateEventDataStoreCommandInput ,
@@ -21,6 +26,11 @@ import {
21
26
DeleteChannelCommandInput ,
22
27
DeleteChannelCommandOutput ,
23
28
} from "./commands/DeleteChannelCommand" ;
29
+ import {
30
+ DeleteDashboardCommand ,
31
+ DeleteDashboardCommandInput ,
32
+ DeleteDashboardCommandOutput ,
33
+ } from "./commands/DeleteDashboardCommand" ;
24
34
import {
25
35
DeleteEventDataStoreCommand ,
26
36
DeleteEventDataStoreCommandInput ,
@@ -63,6 +73,11 @@ import {
63
73
GenerateQueryCommandOutput ,
64
74
} from "./commands/GenerateQueryCommand" ;
65
75
import { GetChannelCommand , GetChannelCommandInput , GetChannelCommandOutput } from "./commands/GetChannelCommand" ;
76
+ import {
77
+ GetDashboardCommand ,
78
+ GetDashboardCommandInput ,
79
+ GetDashboardCommandOutput ,
80
+ } from "./commands/GetDashboardCommand" ;
66
81
import {
67
82
GetEventDataStoreCommand ,
68
83
GetEventDataStoreCommandInput ,
@@ -100,6 +115,11 @@ import {
100
115
ListChannelsCommandInput ,
101
116
ListChannelsCommandOutput ,
102
117
} from "./commands/ListChannelsCommand" ;
118
+ import {
119
+ ListDashboardsCommand ,
120
+ ListDashboardsCommandInput ,
121
+ ListDashboardsCommandOutput ,
122
+ } from "./commands/ListDashboardsCommand" ;
103
123
import {
104
124
ListEventDataStoresCommand ,
105
125
ListEventDataStoresCommandInput ,
@@ -155,6 +175,11 @@ import {
155
175
RestoreEventDataStoreCommandInput ,
156
176
RestoreEventDataStoreCommandOutput ,
157
177
} from "./commands/RestoreEventDataStoreCommand" ;
178
+ import {
179
+ StartDashboardRefreshCommand ,
180
+ StartDashboardRefreshCommandInput ,
181
+ StartDashboardRefreshCommandOutput ,
182
+ } from "./commands/StartDashboardRefreshCommand" ;
158
183
import {
159
184
StartEventDataStoreIngestionCommand ,
160
185
StartEventDataStoreIngestionCommandInput ,
@@ -179,6 +204,11 @@ import {
179
204
UpdateChannelCommandInput ,
180
205
UpdateChannelCommandOutput ,
181
206
} from "./commands/UpdateChannelCommand" ;
207
+ import {
208
+ UpdateDashboardCommand ,
209
+ UpdateDashboardCommandInput ,
210
+ UpdateDashboardCommandOutput ,
211
+ } from "./commands/UpdateDashboardCommand" ;
182
212
import {
183
213
UpdateEventDataStoreCommand ,
184
214
UpdateEventDataStoreCommandInput ,
@@ -190,9 +220,11 @@ const commands = {
190
220
AddTagsCommand,
191
221
CancelQueryCommand,
192
222
CreateChannelCommand,
223
+ CreateDashboardCommand,
193
224
CreateEventDataStoreCommand,
194
225
CreateTrailCommand,
195
226
DeleteChannelCommand,
227
+ DeleteDashboardCommand,
196
228
DeleteEventDataStoreCommand,
197
229
DeleteResourcePolicyCommand,
198
230
DeleteTrailCommand,
@@ -203,6 +235,7 @@ const commands = {
203
235
EnableFederationCommand,
204
236
GenerateQueryCommand,
205
237
GetChannelCommand,
238
+ GetDashboardCommand,
206
239
GetEventDataStoreCommand,
207
240
GetEventSelectorsCommand,
208
241
GetImportCommand,
@@ -212,6 +245,7 @@ const commands = {
212
245
GetTrailCommand,
213
246
GetTrailStatusCommand,
214
247
ListChannelsCommand,
248
+ ListDashboardsCommand,
215
249
ListEventDataStoresCommand,
216
250
ListImportFailuresCommand,
217
251
ListImportsCommand,
@@ -227,6 +261,7 @@ const commands = {
227
261
RegisterOrganizationDelegatedAdminCommand,
228
262
RemoveTagsCommand,
229
263
RestoreEventDataStoreCommand,
264
+ StartDashboardRefreshCommand,
230
265
StartEventDataStoreIngestionCommand,
231
266
StartImportCommand,
232
267
StartLoggingCommand,
@@ -235,6 +270,7 @@ const commands = {
235
270
StopImportCommand,
236
271
StopLoggingCommand,
237
272
UpdateChannelCommand,
273
+ UpdateDashboardCommand,
238
274
UpdateEventDataStoreCommand,
239
275
UpdateTrailCommand,
240
276
} ;
@@ -273,6 +309,20 @@ export interface CloudTrail {
273
309
cb : ( err : any , data ?: CreateChannelCommandOutput ) => void
274
310
) : void ;
275
311
312
+ /**
313
+ * @see {@link CreateDashboardCommand }
314
+ */
315
+ createDashboard (
316
+ args : CreateDashboardCommandInput ,
317
+ options ?: __HttpHandlerOptions
318
+ ) : Promise < CreateDashboardCommandOutput > ;
319
+ createDashboard ( args : CreateDashboardCommandInput , cb : ( err : any , data ?: CreateDashboardCommandOutput ) => void ) : void ;
320
+ createDashboard (
321
+ args : CreateDashboardCommandInput ,
322
+ options : __HttpHandlerOptions ,
323
+ cb : ( err : any , data ?: CreateDashboardCommandOutput ) => void
324
+ ) : void ;
325
+
276
326
/**
277
327
* @see {@link CreateEventDataStoreCommand }
278
328
*/
@@ -312,6 +362,20 @@ export interface CloudTrail {
312
362
cb : ( err : any , data ?: DeleteChannelCommandOutput ) => void
313
363
) : void ;
314
364
365
+ /**
366
+ * @see {@link DeleteDashboardCommand }
367
+ */
368
+ deleteDashboard (
369
+ args : DeleteDashboardCommandInput ,
370
+ options ?: __HttpHandlerOptions
371
+ ) : Promise < DeleteDashboardCommandOutput > ;
372
+ deleteDashboard ( args : DeleteDashboardCommandInput , cb : ( err : any , data ?: DeleteDashboardCommandOutput ) => void ) : void ;
373
+ deleteDashboard (
374
+ args : DeleteDashboardCommandInput ,
375
+ options : __HttpHandlerOptions ,
376
+ cb : ( err : any , data ?: DeleteDashboardCommandOutput ) => void
377
+ ) : void ;
378
+
315
379
/**
316
380
* @see {@link DeleteEventDataStoreCommand }
317
381
*/
@@ -457,6 +521,17 @@ export interface CloudTrail {
457
521
cb : ( err : any , data ?: GetChannelCommandOutput ) => void
458
522
) : void ;
459
523
524
+ /**
525
+ * @see {@link GetDashboardCommand }
526
+ */
527
+ getDashboard ( args : GetDashboardCommandInput , options ?: __HttpHandlerOptions ) : Promise < GetDashboardCommandOutput > ;
528
+ getDashboard ( args : GetDashboardCommandInput , cb : ( err : any , data ?: GetDashboardCommandOutput ) => void ) : void ;
529
+ getDashboard (
530
+ args : GetDashboardCommandInput ,
531
+ options : __HttpHandlerOptions ,
532
+ cb : ( err : any , data ?: GetDashboardCommandOutput ) => void
533
+ ) : void ;
534
+
460
535
/**
461
536
* @see {@link GetEventDataStoreCommand }
462
537
*/
@@ -588,6 +663,21 @@ export interface CloudTrail {
588
663
cb : ( err : any , data ?: ListChannelsCommandOutput ) => void
589
664
) : void ;
590
665
666
+ /**
667
+ * @see {@link ListDashboardsCommand }
668
+ */
669
+ listDashboards ( ) : Promise < ListDashboardsCommandOutput > ;
670
+ listDashboards (
671
+ args : ListDashboardsCommandInput ,
672
+ options ?: __HttpHandlerOptions
673
+ ) : Promise < ListDashboardsCommandOutput > ;
674
+ listDashboards ( args : ListDashboardsCommandInput , cb : ( err : any , data ?: ListDashboardsCommandOutput ) => void ) : void ;
675
+ listDashboards (
676
+ args : ListDashboardsCommandInput ,
677
+ options : __HttpHandlerOptions ,
678
+ cb : ( err : any , data ?: ListDashboardsCommandOutput ) => void
679
+ ) : void ;
680
+
591
681
/**
592
682
* @see {@link ListEventDataStoresCommand }
593
683
*/
@@ -809,6 +899,23 @@ export interface CloudTrail {
809
899
cb : ( err : any , data ?: RestoreEventDataStoreCommandOutput ) => void
810
900
) : void ;
811
901
902
+ /**
903
+ * @see {@link StartDashboardRefreshCommand }
904
+ */
905
+ startDashboardRefresh (
906
+ args : StartDashboardRefreshCommandInput ,
907
+ options ?: __HttpHandlerOptions
908
+ ) : Promise < StartDashboardRefreshCommandOutput > ;
909
+ startDashboardRefresh (
910
+ args : StartDashboardRefreshCommandInput ,
911
+ cb : ( err : any , data ?: StartDashboardRefreshCommandOutput ) => void
912
+ ) : void ;
913
+ startDashboardRefresh (
914
+ args : StartDashboardRefreshCommandInput ,
915
+ options : __HttpHandlerOptions ,
916
+ cb : ( err : any , data ?: StartDashboardRefreshCommandOutput ) => void
917
+ ) : void ;
918
+
812
919
/**
813
920
* @see {@link StartEventDataStoreIngestionCommand }
814
921
*/
@@ -911,6 +1018,20 @@ export interface CloudTrail {
911
1018
cb : ( err : any , data ?: UpdateChannelCommandOutput ) => void
912
1019
) : void ;
913
1020
1021
+ /**
1022
+ * @see {@link UpdateDashboardCommand }
1023
+ */
1024
+ updateDashboard (
1025
+ args : UpdateDashboardCommandInput ,
1026
+ options ?: __HttpHandlerOptions
1027
+ ) : Promise < UpdateDashboardCommandOutput > ;
1028
+ updateDashboard ( args : UpdateDashboardCommandInput , cb : ( err : any , data ?: UpdateDashboardCommandOutput ) => void ) : void ;
1029
+ updateDashboard (
1030
+ args : UpdateDashboardCommandInput ,
1031
+ options : __HttpHandlerOptions ,
1032
+ cb : ( err : any , data ?: UpdateDashboardCommandOutput ) => void
1033
+ ) : void ;
1034
+
914
1035
/**
915
1036
* @see {@link UpdateEventDataStoreCommand }
916
1037
*/
0 commit comments