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
* <p>A single time zone for every item in your dataset. This option is ideal for datasets
481
+
* with all timestamps within a single time zone, or if all timestamps are normalized to a
482
+
* single time zone. </p>
483
+
* <p>Refer to the <a href="http://joda-time.sourceforge.net/timezones.html">Joda-Time
484
+
* API</a> for a complete list of valid time zone names.</p>
485
+
*/
479
486
TimeZone?: string;
487
+
488
+
/**
489
+
* <p>Automatically derive time zone information from the geolocation attribute. This option
490
+
* is ideal for datasets that contain timestamps in multiple time zones and those
491
+
* timestamps are expressed in local time.</p>
492
+
*/
480
493
UseGeolocationForTimeZone?: boolean;
494
+
495
+
/**
496
+
* <p>The format of the geolocation attribute. The geolocation attribute can be formatted in
497
+
* one of two ways:</p>
498
+
* <ul>
499
+
* <li>
500
+
* <p>
501
+
* <code>LAT_LONG</code> - the latitude and longitude in decimal format (Example: 47.61_-122.33).</p>
502
+
* </li>
503
+
* <li>
504
+
* <p>
505
+
* <code>CC_POSTALCODE</code> (US Only) - the country code (US), followed by the 5-digit ZIP code (Example: US_98121).</p>
506
+
* </li>
507
+
* </ul>
508
+
*/
481
509
GeolocationFormat?: string;
510
+
482
511
/**
483
512
* <p>The optional metadata that you apply to the dataset import job to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
484
513
* <p>The following basic restrictions apply to tags:</p>
* <p>Describes a supplementary feature of a dataset group. This object is part of the <a>InputDataConfig</a> object.</p>
1113
-
* <p>The only supported feature is Holidays. If you use the calendar, all data in the
1114
-
* datasets should belong to the same country as the calendar. For the holiday calendar data, see
1115
-
* the <a href="http://jollyday.sourceforge.net/data.html">Jollyday</a> website.</p>
1141
+
* <p>Describes a supplementary feature of a dataset group. This object is part of the <a>InputDataConfig</a> object. Forecast supports the Weather Index and Holidays built-in
1142
+
* featurizations.</p>
1143
+
* <p>
1144
+
* <b>Weather Index</b>
1145
+
* </p>
1146
+
* <p>The Amazon Forecast Weather Index is a built-in featurization that incorporates historical and
1147
+
* projected weather information into your model. The Weather Index supplements your datasets
1148
+
* with over two years of historical weather data and up to 14 days of projected weather data.
1149
+
* For more information, see <a href="https://docs.aws.amazon.com/forecast/latest/dg/weather.html">Amazon Forecast Weather Index</a>.</p>
1150
+
* <p>
1151
+
* <b>Holidays</b>
1152
+
* </p>
1153
+
* <p>Holidays is a built-in featurization that incorporates a feature-engineered dataset of
1154
+
* national holiday information into your model. It provides native support for the holiday
1155
+
* calendars of 66 countries. To view the holiday calendars, refer to the <a href="http://jollyday.sourceforge.net/data.html">Jollyday</a> library. For more
1156
+
* information, see <a href="https://docs.aws.amazon.com/forecast/latest/dg/holidays.html">Holidays Featurization</a>.</p>
1116
1157
*/
1117
1158
exportinterfaceSupplementaryFeature{
1118
1159
/**
1119
-
* <p>The name of the feature. This must be "holiday".</p>
1160
+
* <p>The name of the feature. Valid values: <code>"holiday"</code> and <code>"weather"</code>.</p>
1120
1161
*/
1121
1162
Name: string|undefined;
1122
1163
1123
1164
/**
1124
-
* <p>One of the following 2 letter country codes:</p>
1165
+
* <p>
1166
+
* <b>Weather Index</b>
1167
+
* </p>
1168
+
* <p>To enable the Weather Index, set the value to <code>"true"</code>
1169
+
* </p>
1170
+
* <p>
1171
+
* <b>Holidays</b>
1172
+
* </p>
1173
+
* <p>To enable Holidays, specify a country with one of the following two-letter country
Copy file name to clipboardExpand all lines: clients/client-forecastquery/models/models_0.ts
-2
Original file line number
Diff line number
Diff line change
@@ -132,8 +132,6 @@ export interface Forecast {
132
132
* <p>p90</p>
133
133
* </li>
134
134
* </ul>
135
-
* <p>The default setting is <code>["0.1", "0.5", "0.9"]</code>. Use the optional <code>ForecastTypes</code> parameter of the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateForecast.html">CreateForecast</a> operation to change the values. The values will vary depending on how this is set, with a minimum of <code>1</code> and a maximum of <code>5.</code>
0 commit comments