@aws-sdk/client-bcm-dashboards 3.1027.0 → 3.1029.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 (50) hide show
  1. package/README.md +42 -0
  2. package/dist-cjs/index.js +108 -0
  3. package/dist-cjs/models/errors.js +14 -1
  4. package/dist-cjs/schemas/schemas_0.js +172 -3
  5. package/dist-es/BCMDashboards.js +14 -0
  6. package/dist-es/commands/CreateScheduledReportCommand.js +16 -0
  7. package/dist-es/commands/DeleteScheduledReportCommand.js +16 -0
  8. package/dist-es/commands/ExecuteScheduledReportCommand.js +16 -0
  9. package/dist-es/commands/GetScheduledReportCommand.js +16 -0
  10. package/dist-es/commands/ListScheduledReportsCommand.js +16 -0
  11. package/dist-es/commands/UpdateScheduledReportCommand.js +16 -0
  12. package/dist-es/commands/index.js +6 -0
  13. package/dist-es/models/enums.js +17 -0
  14. package/dist-es/models/errors.js +12 -0
  15. package/dist-es/pagination/ListScheduledReportsPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/schemas/schemas_0.js +171 -2
  18. package/dist-types/BCMDashboards.d.ts +50 -0
  19. package/dist-types/BCMDashboardsClient.d.ts +8 -2
  20. package/dist-types/commands/CreateDashboardCommand.d.ts +1 -1
  21. package/dist-types/commands/CreateScheduledReportCommand.d.ts +126 -0
  22. package/dist-types/commands/DeleteScheduledReportCommand.d.ts +89 -0
  23. package/dist-types/commands/ExecuteScheduledReportCommand.d.ts +101 -0
  24. package/dist-types/commands/GetScheduledReportCommand.d.ts +127 -0
  25. package/dist-types/commands/ListScheduledReportsCommand.d.ts +107 -0
  26. package/dist-types/commands/UpdateDashboardCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateScheduledReportCommand.d.ts +120 -0
  28. package/dist-types/commands/index.d.ts +6 -0
  29. package/dist-types/models/enums.d.ts +41 -0
  30. package/dist-types/models/errors.d.ts +13 -1
  31. package/dist-types/models/models_0.d.ts +422 -6
  32. package/dist-types/pagination/ListScheduledReportsPaginator.d.ts +7 -0
  33. package/dist-types/pagination/index.d.ts +1 -0
  34. package/dist-types/schemas/schemas_0.d.ts +25 -0
  35. package/dist-types/ts3.4/BCMDashboards.d.ts +110 -0
  36. package/dist-types/ts3.4/BCMDashboardsClient.d.ts +38 -2
  37. package/dist-types/ts3.4/commands/CreateScheduledReportCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/DeleteScheduledReportCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/ExecuteScheduledReportCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/GetScheduledReportCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/ListScheduledReportsCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/UpdateScheduledReportCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  44. package/dist-types/ts3.4/models/enums.d.ts +21 -0
  45. package/dist-types/ts3.4/models/errors.d.ts +5 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +104 -1
  47. package/dist-types/ts3.4/pagination/ListScheduledReportsPaginator.d.ts +11 -0
  48. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  49. package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
  50. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import type { DashboardType, DateTimeType, Dimension, Granularity, GroupDefinitionType, MatchOption, MetricName, VisualType } from "./enums";
1
+ import type { DashboardType, DateTimeType, Dimension, Granularity, GroupDefinitionType, HealthStatusCode, MatchOption, MetricName, ScheduleState, StatusReason, VisualType } from "./enums";
2
2
  /**
3
3
  * <p>A key-value pair that can be attached to a dashboard for organization and management purposes.</p>
4
4
  * @public
@@ -198,6 +198,119 @@ export interface CreateDashboardResponse {
198
198
  */
199
199
  arn: string | undefined;
200
200
  }
201
+ /**
202
+ * <p>Defines the active time period for execution of the scheduled report.</p>
203
+ * @public
204
+ */
205
+ export interface SchedulePeriod {
206
+ /**
207
+ * <p>The start time of the schedule period. If not specified, defaults to the time of the create or update request. The start time cannot be more than 5 minutes before the time of the request.</p>
208
+ * @public
209
+ */
210
+ startTime?: Date | undefined;
211
+ /**
212
+ * <p>The end time of the schedule period. If not specified, defaults to 3 years from the time of the create or update request. The maximum allowed value is 3 years from the current time. Setting an end time beyond this limit returns a <code>ValidationException</code>.</p>
213
+ * @public
214
+ */
215
+ endTime?: Date | undefined;
216
+ }
217
+ /**
218
+ * <p>Defines the schedule for a scheduled report, including the cron expression, time zone, active period, and the schedule state.</p>
219
+ * @public
220
+ */
221
+ export interface ScheduleConfig {
222
+ /**
223
+ * <p>The schedule expression that specifies when to trigger the scheduled report run. This value must be a cron expression consisting of six fields separated by white spaces: <code>cron(minutes hours day_of_month month day_of_week year)</code>.</p>
224
+ * @public
225
+ */
226
+ scheduleExpression?: string | undefined;
227
+ /**
228
+ * <p>The time zone for the schedule expression, for example, <code>UTC</code>.</p>
229
+ * @public
230
+ */
231
+ scheduleExpressionTimeZone?: string | undefined;
232
+ /**
233
+ * <p>The time period during which the schedule is active.</p>
234
+ * @public
235
+ */
236
+ schedulePeriod?: SchedulePeriod | undefined;
237
+ /**
238
+ * <p>The state of the schedule. <code>ENABLED</code> means the scheduled report runs according to its schedule expression. <code>DISABLED</code> means the scheduled report is paused and will not run until re-enabled.</p>
239
+ * @public
240
+ */
241
+ state?: ScheduleState | undefined;
242
+ }
243
+ /**
244
+ * <p>Defines the configuration for creating a new scheduled report, including the dashboard, schedule, execution role, and optional widget settings.</p>
245
+ * @public
246
+ */
247
+ export interface ScheduledReportInput {
248
+ /**
249
+ * <p>The name of the scheduled report.</p>
250
+ * @public
251
+ */
252
+ name: string | undefined;
253
+ /**
254
+ * <p>The ARN of the dashboard to generate the scheduled report from.</p>
255
+ * @public
256
+ */
257
+ dashboardArn: string | undefined;
258
+ /**
259
+ * <p>The ARN of the IAM role that the scheduled report uses to execute. Amazon Web Services Billing and Cost Management Dashboards will assume this IAM role while executing the scheduled report.</p>
260
+ * @public
261
+ */
262
+ scheduledReportExecutionRoleArn: string | undefined;
263
+ /**
264
+ * <p>The schedule configuration that defines when and how often the report is generated. If the schedule state is not specified, it defaults to <code>ENABLED</code>.</p>
265
+ * @public
266
+ */
267
+ scheduleConfig: ScheduleConfig | undefined;
268
+ /**
269
+ * <p>A description of the scheduled report's purpose or contents.</p>
270
+ * @public
271
+ */
272
+ description?: string | undefined;
273
+ /**
274
+ * <p>The list of widget identifiers to include in the scheduled report. If not specified, all widgets in the dashboard are included.</p>
275
+ * @public
276
+ */
277
+ widgetIds?: string[] | undefined;
278
+ /**
279
+ * <p>The date range override to apply to widgets in the scheduled report.</p>
280
+ * @public
281
+ */
282
+ widgetDateRangeOverride?: DateTimeRange | undefined;
283
+ }
284
+ /**
285
+ * @public
286
+ */
287
+ export interface CreateScheduledReportRequest {
288
+ /**
289
+ * <p>The configuration for the scheduled report, including the dashboard to report on, the schedule, and the execution role that the service will use to generate the dashboard snapshot.</p>
290
+ * @public
291
+ */
292
+ scheduledReport: ScheduledReportInput | undefined;
293
+ /**
294
+ * <p>The tags to apply to the scheduled report resource for organization and management.</p>
295
+ * @public
296
+ */
297
+ resourceTags?: ResourceTag[] | undefined;
298
+ /**
299
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
300
+ * @public
301
+ */
302
+ clientToken?: string | undefined;
303
+ }
304
+ /**
305
+ * @public
306
+ */
307
+ export interface CreateScheduledReportResponse {
308
+ /**
309
+ * <p>The ARN of the newly created scheduled report.</p>
310
+ * @public
311
+ */
312
+ arn: string | undefined;
313
+ }
201
314
  /**
202
315
  * @public
203
316
  */
@@ -218,6 +331,82 @@ export interface DeleteDashboardResponse {
218
331
  */
219
332
  arn: string | undefined;
220
333
  }
334
+ /**
335
+ * @public
336
+ */
337
+ export interface DeleteScheduledReportRequest {
338
+ /**
339
+ * <p>The ARN of the scheduled report to delete.</p>
340
+ * @public
341
+ */
342
+ arn: string | undefined;
343
+ }
344
+ /**
345
+ * @public
346
+ */
347
+ export interface DeleteScheduledReportResponse {
348
+ /**
349
+ * <p>The ARN of the scheduled report that was deleted.</p>
350
+ * @public
351
+ */
352
+ arn: string | undefined;
353
+ }
354
+ /**
355
+ * @public
356
+ */
357
+ export interface ExecuteScheduledReportRequest {
358
+ /**
359
+ * <p>The ARN of the scheduled report to execute.</p>
360
+ * @public
361
+ */
362
+ arn: string | undefined;
363
+ /**
364
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
365
+ * @public
366
+ */
367
+ clientToken?: string | undefined;
368
+ /**
369
+ * <p>When set to <code>true</code>, validates the scheduled report configuration without triggering an actual execution.</p>
370
+ * @public
371
+ */
372
+ dryRun?: boolean | undefined;
373
+ }
374
+ /**
375
+ * <p>Contains the health status information for a scheduled report, including the status code and any reasons for an unhealthy state.</p>
376
+ * @public
377
+ */
378
+ export interface HealthStatus {
379
+ /**
380
+ * <p>The health status code. <code>HEALTHY</code> indicates the scheduled report is configured properly and has all required permissions to execute. <code>UNHEALTHY</code> indicates the scheduled report is unable to deliver the notification to the default Amazon EventBridge EventBus in your account and your action is needed. The reason for the unhealthy state is captured in the health status reasons.</p>
381
+ * @public
382
+ */
383
+ statusCode: HealthStatusCode | undefined;
384
+ /**
385
+ * <p>The timestamp when the health status was last refreshed.</p>
386
+ * @public
387
+ */
388
+ lastRefreshedAt?: Date | undefined;
389
+ /**
390
+ * <p>The list of reasons for the current health status. Only present when the status is <code>UNHEALTHY</code>.</p>
391
+ * @public
392
+ */
393
+ statusReasons?: StatusReason[] | undefined;
394
+ }
395
+ /**
396
+ * @public
397
+ */
398
+ export interface ExecuteScheduledReportResponse {
399
+ /**
400
+ * <p>The health status of the scheduled report after the execution request.</p>
401
+ * @public
402
+ */
403
+ healthStatus?: HealthStatus | undefined;
404
+ /**
405
+ * <p>Indicates whether the execution was successfully triggered.</p>
406
+ * @public
407
+ */
408
+ executionTriggered?: boolean | undefined;
409
+ }
221
410
  /**
222
411
  * @public
223
412
  */
@@ -253,6 +442,92 @@ export interface GetResourcePolicyResponse {
253
442
  */
254
443
  policyDocument: string | undefined;
255
444
  }
445
+ /**
446
+ * @public
447
+ */
448
+ export interface GetScheduledReportRequest {
449
+ /**
450
+ * <p>The ARN of the scheduled report to retrieve.</p>
451
+ * @public
452
+ */
453
+ arn: string | undefined;
454
+ }
455
+ /**
456
+ * <p>Contains the full configuration and metadata of a scheduled report.</p>
457
+ * @public
458
+ */
459
+ export interface ScheduledReport {
460
+ /**
461
+ * <p>The ARN of the scheduled report.</p>
462
+ * @public
463
+ */
464
+ arn?: string | undefined;
465
+ /**
466
+ * <p>The name of the scheduled report.</p>
467
+ * @public
468
+ */
469
+ name: string | undefined;
470
+ /**
471
+ * <p>The ARN of the dashboard associated with the scheduled report.</p>
472
+ * @public
473
+ */
474
+ dashboardArn: string | undefined;
475
+ /**
476
+ * <p>The ARN of the IAM role that the scheduled report uses to execute. Amazon Web Services Billing and Cost Management Dashboards will assume this IAM role while executing the scheduled report.</p>
477
+ * @public
478
+ */
479
+ scheduledReportExecutionRoleArn: string | undefined;
480
+ /**
481
+ * <p>The schedule configuration that defines when and how often the report is generated.</p>
482
+ * @public
483
+ */
484
+ scheduleConfig: ScheduleConfig | undefined;
485
+ /**
486
+ * <p>A description of the scheduled report's purpose or contents.</p>
487
+ * @public
488
+ */
489
+ description?: string | undefined;
490
+ /**
491
+ * <p>The list of widget identifiers included in the scheduled report.</p>
492
+ * @public
493
+ */
494
+ widgetIds?: string[] | undefined;
495
+ /**
496
+ * <p>The date range override applied to widgets in the scheduled report.</p>
497
+ * @public
498
+ */
499
+ widgetDateRangeOverride?: DateTimeRange | undefined;
500
+ /**
501
+ * <p>The timestamp when the scheduled report was created.</p>
502
+ * @public
503
+ */
504
+ createdAt?: Date | undefined;
505
+ /**
506
+ * <p>The timestamp when the scheduled report was last modified.</p>
507
+ * @public
508
+ */
509
+ updatedAt?: Date | undefined;
510
+ /**
511
+ * <p>The timestamp of the most recent execution of the scheduled report.</p>
512
+ * @public
513
+ */
514
+ lastExecutionAt?: Date | undefined;
515
+ /**
516
+ * <p>The health status of the scheduled report at last refresh time.</p>
517
+ * @public
518
+ */
519
+ healthStatus?: HealthStatus | undefined;
520
+ }
521
+ /**
522
+ * @public
523
+ */
524
+ export interface GetScheduledReportResponse {
525
+ /**
526
+ * <p>The scheduled report configuration and metadata.</p>
527
+ * @public
528
+ */
529
+ scheduledReport: ScheduledReport | undefined;
530
+ }
256
531
  /**
257
532
  * @public
258
533
  */
@@ -319,6 +594,82 @@ export interface ListDashboardsResponse {
319
594
  */
320
595
  nextToken?: string | undefined;
321
596
  }
597
+ /**
598
+ * @public
599
+ */
600
+ export interface ListScheduledReportsRequest {
601
+ /**
602
+ * <p>The token for the next page of results. Use the value returned in the previous response.</p>
603
+ * @public
604
+ */
605
+ nextToken?: string | undefined;
606
+ /**
607
+ * <p>The maximum number of results to return in a single call. Valid range is 1 to 100. The default value is 50.</p>
608
+ * @public
609
+ */
610
+ maxResults?: number | undefined;
611
+ }
612
+ /**
613
+ * <p>Contains summary information for a scheduled report.</p>
614
+ * @public
615
+ */
616
+ export interface ScheduledReportSummary {
617
+ /**
618
+ * <p>The ARN of the scheduled report.</p>
619
+ * @public
620
+ */
621
+ arn: string | undefined;
622
+ /**
623
+ * <p>The name of the scheduled report.</p>
624
+ * @public
625
+ */
626
+ name: string | undefined;
627
+ /**
628
+ * <p>The ARN of the dashboard associated with the scheduled report.</p>
629
+ * @public
630
+ */
631
+ dashboardArn: string | undefined;
632
+ /**
633
+ * <p>The schedule expression that defines when the report runs.</p>
634
+ * @public
635
+ */
636
+ scheduleExpression: string | undefined;
637
+ /**
638
+ * <p>The state of the schedule: <code>ENABLED</code> or <code>DISABLED</code>.</p>
639
+ * @public
640
+ */
641
+ state: ScheduleState | undefined;
642
+ /**
643
+ * <p>The health status of the scheduled report as of its last refresh time.</p>
644
+ * @public
645
+ */
646
+ healthStatus: HealthStatus | undefined;
647
+ /**
648
+ * <p>The time zone for the schedule expression, for example, <code>UTC</code>.</p>
649
+ * @public
650
+ */
651
+ scheduleExpressionTimeZone?: string | undefined;
652
+ /**
653
+ * <p>The list of widget identifiers included in the scheduled report.</p>
654
+ * @public
655
+ */
656
+ widgetIds?: string[] | undefined;
657
+ }
658
+ /**
659
+ * @public
660
+ */
661
+ export interface ListScheduledReportsResponse {
662
+ /**
663
+ * <p>An array of scheduled report summaries, containing basic information about each scheduled report.</p>
664
+ * @public
665
+ */
666
+ scheduledReports: ScheduledReportSummary[] | undefined;
667
+ /**
668
+ * <p>The token to use to retrieve the next page of results. Not returned if there are no more results to retrieve.</p>
669
+ * @public
670
+ */
671
+ nextToken?: string | undefined;
672
+ }
322
673
  /**
323
674
  * @public
324
675
  */
@@ -389,6 +740,71 @@ export interface UpdateDashboardResponse {
389
740
  */
390
741
  arn: string | undefined;
391
742
  }
743
+ /**
744
+ * @public
745
+ */
746
+ export interface UpdateScheduledReportRequest {
747
+ /**
748
+ * <p>The ARN of the scheduled report to update.</p>
749
+ * @public
750
+ */
751
+ arn: string | undefined;
752
+ /**
753
+ * <p>The new name for the scheduled report.</p>
754
+ * @public
755
+ */
756
+ name?: string | undefined;
757
+ /**
758
+ * <p>The new description for the scheduled report.</p>
759
+ * @public
760
+ */
761
+ description?: string | undefined;
762
+ /**
763
+ * <p>The ARN of the dashboard to associate with the scheduled report.</p>
764
+ * @public
765
+ */
766
+ dashboardArn?: string | undefined;
767
+ /**
768
+ * <p>The ARN of the IAM role that the scheduled report uses to execute. Amazon Web Services Billing and Cost Management Dashboards will assume this IAM role while executing the scheduled report.</p>
769
+ * @public
770
+ */
771
+ scheduledReportExecutionRoleArn?: string | undefined;
772
+ /**
773
+ * <p>The updated schedule configuration for the report.</p>
774
+ * @public
775
+ */
776
+ scheduleConfig?: ScheduleConfig | undefined;
777
+ /**
778
+ * <p>The list of widget identifiers to include in the scheduled report. If not specified, all widgets in the dashboard are included.</p>
779
+ * @public
780
+ */
781
+ widgetIds?: string[] | undefined;
782
+ /**
783
+ * <p>The date range override to apply to widgets in the scheduled report.</p>
784
+ * @public
785
+ */
786
+ widgetDateRangeOverride?: DateTimeRange | undefined;
787
+ /**
788
+ * Set to true to clear existing widgetIds.
789
+ * @public
790
+ */
791
+ clearWidgetIds?: boolean | undefined;
792
+ /**
793
+ * Set to true to clear existing widgetDateRangeOverride.
794
+ * @public
795
+ */
796
+ clearWidgetDateRangeOverride?: boolean | undefined;
797
+ }
798
+ /**
799
+ * @public
800
+ */
801
+ export interface UpdateScheduledReportResponse {
802
+ /**
803
+ * <p>The ARN of the updated scheduled report.</p>
804
+ * @public
805
+ */
806
+ arn: string | undefined;
807
+ }
392
808
  /**
393
809
  * <p>Defines complex filtering conditions using logical operators (<code>AND</code>, <code>OR</code>, <code>NOT</code>) and various filter types.</p>
394
810
  * @public
@@ -555,7 +971,7 @@ export interface SavingsPlansUtilizationQuery {
555
971
  */
556
972
  timeRange: DateTimeRange | undefined;
557
973
  /**
558
- * <p>The time granularity of the retrieved data: HOURLY, DAILY, or MONTHLY.</p>
974
+ * <p>The time granularity of the retrieved data: <code>HOURLY</code>, <code>DAILY</code>, or <code>MONTHLY</code>.</p>
559
975
  * @public
560
976
  */
561
977
  granularity?: Granularity | undefined;
@@ -680,7 +1096,7 @@ export interface WidgetConfig {
680
1096
  */
681
1097
  export interface Widget {
682
1098
  /**
683
- * The unique identifier for the widget.
1099
+ * <p>The unique identifier for the widget.</p>
684
1100
  * @public
685
1101
  */
686
1102
  id?: string | undefined;
@@ -790,12 +1206,12 @@ export interface UpdateDashboardRequest {
790
1206
  */
791
1207
  arn: string | undefined;
792
1208
  /**
793
- * <p>The new name for the dashboard. If not specified, the existing name is retained.</p>
1209
+ * <p>The new name for the dashboard.</p>
794
1210
  * @public
795
1211
  */
796
- name?: string | undefined;
1212
+ name: string | undefined;
797
1213
  /**
798
- * <p>The new description for the dashboard. If not specified, the existing description is retained.</p>
1214
+ * <p>The new description for the dashboard.</p>
799
1215
  * @public
800
1216
  */
801
1217
  description?: string | undefined;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListScheduledReportsCommandInput, ListScheduledReportsCommandOutput } from "../commands/ListScheduledReportsCommand";
3
+ import type { BCMDashboardsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListScheduledReports: (config: BCMDashboardsPaginationConfiguration, input: ListScheduledReportsCommandInput, ...rest: any[]) => Paginator<ListScheduledReportsCommandOutput>;
@@ -1,2 +1,3 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListDashboardsPaginator";
3
+ export * from "./ListScheduledReportsPaginator";
@@ -2,6 +2,7 @@ import { TypeRegistry } from "@smithy/core/schema";
2
2
  import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
3
3
  export declare var BCMDashboardsServiceException$: StaticErrorSchema;
4
4
  export declare var AccessDeniedException$: StaticErrorSchema;
5
+ export declare var ConflictException$: StaticErrorSchema;
5
6
  export declare var InternalServerException$: StaticErrorSchema;
6
7
  export declare var ResourceNotFoundException$: StaticErrorSchema;
7
8
  export declare var ServiceQuotaExceededException$: StaticErrorSchema;
@@ -17,21 +18,32 @@ export declare var CostAndUsageQuery$: StaticStructureSchema;
17
18
  export declare var CostCategoryValues$: StaticStructureSchema;
18
19
  export declare var CreateDashboardRequest$: StaticStructureSchema;
19
20
  export declare var CreateDashboardResponse$: StaticStructureSchema;
21
+ export declare var CreateScheduledReportRequest$: StaticStructureSchema;
22
+ export declare var CreateScheduledReportResponse$: StaticStructureSchema;
20
23
  export declare var DashboardReference$: StaticStructureSchema;
21
24
  export declare var DateTimeRange$: StaticStructureSchema;
22
25
  export declare var DateTimeValue$: StaticStructureSchema;
23
26
  export declare var DeleteDashboardRequest$: StaticStructureSchema;
24
27
  export declare var DeleteDashboardResponse$: StaticStructureSchema;
28
+ export declare var DeleteScheduledReportRequest$: StaticStructureSchema;
29
+ export declare var DeleteScheduledReportResponse$: StaticStructureSchema;
25
30
  export declare var DimensionValues$: StaticStructureSchema;
31
+ export declare var ExecuteScheduledReportRequest$: StaticStructureSchema;
32
+ export declare var ExecuteScheduledReportResponse$: StaticStructureSchema;
26
33
  export declare var Expression$: StaticStructureSchema;
27
34
  export declare var GetDashboardRequest$: StaticStructureSchema;
28
35
  export declare var GetDashboardResponse$: StaticStructureSchema;
29
36
  export declare var GetResourcePolicyRequest$: StaticStructureSchema;
30
37
  export declare var GetResourcePolicyResponse$: StaticStructureSchema;
38
+ export declare var GetScheduledReportRequest$: StaticStructureSchema;
39
+ export declare var GetScheduledReportResponse$: StaticStructureSchema;
31
40
  export declare var GraphDisplayConfig$: StaticStructureSchema;
32
41
  export declare var GroupDefinition$: StaticStructureSchema;
42
+ export declare var HealthStatus$: StaticStructureSchema;
33
43
  export declare var ListDashboardsRequest$: StaticStructureSchema;
34
44
  export declare var ListDashboardsResponse$: StaticStructureSchema;
45
+ export declare var ListScheduledReportsRequest$: StaticStructureSchema;
46
+ export declare var ListScheduledReportsResponse$: StaticStructureSchema;
35
47
  export declare var ListTagsForResourceRequest$: StaticStructureSchema;
36
48
  export declare var ListTagsForResourceResponse$: StaticStructureSchema;
37
49
  export declare var ReservationCoverageQuery$: StaticStructureSchema;
@@ -39,6 +51,11 @@ export declare var ReservationUtilizationQuery$: StaticStructureSchema;
39
51
  export declare var ResourceTag$: StaticStructureSchema;
40
52
  export declare var SavingsPlansCoverageQuery$: StaticStructureSchema;
41
53
  export declare var SavingsPlansUtilizationQuery$: StaticStructureSchema;
54
+ export declare var ScheduleConfig$: StaticStructureSchema;
55
+ export declare var ScheduledReport$: StaticStructureSchema;
56
+ export declare var ScheduledReportInput$: StaticStructureSchema;
57
+ export declare var ScheduledReportSummary$: StaticStructureSchema;
58
+ export declare var SchedulePeriod$: StaticStructureSchema;
42
59
  export declare var TableDisplayConfigStruct$: StaticStructureSchema;
43
60
  export declare var TagResourceRequest$: StaticStructureSchema;
44
61
  export declare var TagResourceResponse$: StaticStructureSchema;
@@ -47,16 +64,24 @@ export declare var UntagResourceRequest$: StaticStructureSchema;
47
64
  export declare var UntagResourceResponse$: StaticStructureSchema;
48
65
  export declare var UpdateDashboardRequest$: StaticStructureSchema;
49
66
  export declare var UpdateDashboardResponse$: StaticStructureSchema;
67
+ export declare var UpdateScheduledReportRequest$: StaticStructureSchema;
68
+ export declare var UpdateScheduledReportResponse$: StaticStructureSchema;
50
69
  export declare var Widget$: StaticStructureSchema;
51
70
  export declare var WidgetConfig$: StaticStructureSchema;
52
71
  export declare var DisplayConfig$: StaticUnionSchema;
53
72
  export declare var QueryParameters$: StaticUnionSchema;
54
73
  export declare var CreateDashboard$: StaticOperationSchema;
74
+ export declare var CreateScheduledReport$: StaticOperationSchema;
55
75
  export declare var DeleteDashboard$: StaticOperationSchema;
76
+ export declare var DeleteScheduledReport$: StaticOperationSchema;
77
+ export declare var ExecuteScheduledReport$: StaticOperationSchema;
56
78
  export declare var GetDashboard$: StaticOperationSchema;
57
79
  export declare var GetResourcePolicy$: StaticOperationSchema;
80
+ export declare var GetScheduledReport$: StaticOperationSchema;
58
81
  export declare var ListDashboards$: StaticOperationSchema;
82
+ export declare var ListScheduledReports$: StaticOperationSchema;
59
83
  export declare var ListTagsForResource$: StaticOperationSchema;
60
84
  export declare var TagResource$: StaticOperationSchema;
61
85
  export declare var UntagResource$: StaticOperationSchema;
62
86
  export declare var UpdateDashboard$: StaticOperationSchema;
87
+ export declare var UpdateScheduledReport$: StaticOperationSchema;