You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-forecast): Introduced a new field in Auto Predictor as Time Alignment Boundary. It helps in aligning the timestamps generated during Forecast exports
Copy file name to clipboardExpand all lines: clients/client-forecast/src/Forecast.ts
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2247,7 +2247,8 @@ export class Forecast extends ForecastClient {
2247
2247
/**
2248
2248
* <p>Returns a list of the monitoring evaluation results and predictor events collected by
2249
2249
* the monitor resource during different windows of time.</p>
2250
-
* <p>For information about monitoring see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring-results.html">Viewing Monitoring Results</a>. For more information about retrieving monitoring results see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring-results.html">Viewing Monitoring Results</a>.</p>
2250
+
* <p>For information about monitoring see <a>predictor-monitoring</a>. For
2251
+
* more information about retrieving monitoring results see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring-results.html">Viewing Monitoring Results</a>.</p>
* <p>Returns a list of the monitoring evaluation results and predictor events collected by
27
27
* the monitor resource during different windows of time.</p>
28
-
* <p>For information about monitoring see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring-results.html">Viewing Monitoring Results</a>. For more information about retrieving monitoring results see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring-results.html">Viewing Monitoring Results</a>.</p>
28
+
* <p>For information about monitoring see <a>predictor-monitoring</a>. For
29
+
* more information about retrieving monitoring results see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring-results.html">Viewing Monitoring Results</a>.</p>
29
30
* @example
30
31
* Use a bare-bones client and the command you need to make an API call.
Copy file name to clipboardExpand all lines: clients/client-forecast/src/models/models_0.ts
+89Lines changed: 89 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -506,6 +506,74 @@ export namespace Tag {
506
506
});
507
507
}
508
508
509
+
exportenumDayOfWeek{
510
+
FRIDAY="FRIDAY",
511
+
MONDAY="MONDAY",
512
+
SATURDAY="SATURDAY",
513
+
SUNDAY="SUNDAY",
514
+
THURSDAY="THURSDAY",
515
+
TUESDAY="TUESDAY",
516
+
WEDNESDAY="WEDNESDAY",
517
+
}
518
+
519
+
exportenumMonth{
520
+
APRIL="APRIL",
521
+
AUGUST="AUGUST",
522
+
DECEMBER="DECEMBER",
523
+
FEBRUARY="FEBRUARY",
524
+
JANUARY="JANUARY",
525
+
JULY="JULY",
526
+
JUNE="JUNE",
527
+
MARCH="MARCH",
528
+
MAY="MAY",
529
+
NOVEMBER="NOVEMBER",
530
+
OCTOBER="OCTOBER",
531
+
SEPTEMBER="SEPTEMBER",
532
+
}
533
+
534
+
/**
535
+
* <p>The time boundary Forecast uses to align and aggregate your data to match your forecast frequency. Provide the unit of time and the time boundary as a key value pair. If you
536
+
* don't provide a time boundary, Forecast uses a set of <a href="https://docs.aws.amazon.com/forecast/latest/dg/data-aggregation.html#default-time-boundaries">Default Time Boundaries</a>.
537
+
* </p>
538
+
*
539
+
* <p>For more information about aggregation,
540
+
* see <a href="https://docs.aws.amazon.com/forecast/latest/dg/data-aggregation.html">Data Aggregation for Different Forecast Frequencies</a>.
541
+
* For more information setting a custom time boundary,
542
+
* see <a href="https://docs.aws.amazon.com/forecast/latest/dg/data-aggregation.html#specifying-time-boundary">Specifying a Time Boundary</a>.
543
+
*
544
+
* </p>
545
+
*/
546
+
exportinterfaceTimeAlignmentBoundary{
547
+
/**
548
+
* <p>The month to use for time alignment during aggregation. The month must be in uppercase.</p>
549
+
*/
550
+
Month?: Month|string;
551
+
552
+
/**
553
+
* <p>The day of the month to use for time alignment during aggregation.</p>
554
+
*/
555
+
DayOfMonth?: number;
556
+
557
+
/**
558
+
* <p>The day of week to use for time alignment during aggregation. The day must be in uppercase.</p>
559
+
*/
560
+
DayOfWeek?: DayOfWeek|string;
561
+
562
+
/**
563
+
* <p>The hour of day to use for time alignment during aggregation.</p>
* For more information, see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring.html">Predictor Monitoring</a>.</p>
628
696
*/
629
697
MonitorConfig?: MonitorConfig;
698
+
699
+
/**
700
+
* <p>The time boundary Forecast uses to align and aggregate any data that doesn't align with your forecast frequency. Provide the unit of time and the time boundary as a key value pair.
701
+
* For more information on specifying a time boundary, see <a href="https://docs.aws.amazon.com/forecast/latest/dg/data-aggregation.html#specifying-time-boundary">Specifying a Time Boundary</a>.
702
+
* If you
703
+
* don't provide a time boundary, Forecast uses a set of <a href="https://docs.aws.amazon.com/forecast/latest/dg/data-aggregation.html#default-time-boundaries">Default Time Boundaries</a>.</p>
0 commit comments