aws-sdk-forecastservice 1.13.0 → 1.14.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a587c818057139037dfbbb41e988fce192d956badf1483f4dccbeb8464d6524
|
4
|
+
data.tar.gz: ad879ef3c6543efaa39c67a9237aadfe860f1aac3c648b639910fa769099eb89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b261917324858dd9620e203d5dd1ad29b963027644579968eac75128979014f92afac9939846f3debe157d714ddd5f86a404e58c0802cda55c57f58a99d0ba98
|
7
|
+
data.tar.gz: 41687118db951b177e18ddaf9e452af0a8ac63303c85aece33a3f8a3d813b6a083a77360a4a8777c50814e3e9bd552ddb57f753ced39fdc2c55411903198e2a1
|
@@ -459,7 +459,7 @@ module Aws::ForecastService
|
|
459
459
|
# attributes: [
|
460
460
|
# {
|
461
461
|
# attribute_name: "Name",
|
462
|
-
# attribute_type: "string", # accepts string, integer, float, timestamp
|
462
|
+
# attribute_type: "string", # accepts string, integer, float, timestamp, geolocation
|
463
463
|
# },
|
464
464
|
# ],
|
465
465
|
# },
|
@@ -652,6 +652,34 @@ module Aws::ForecastService
|
|
652
652
|
# If the format isn't specified, Amazon Forecast expects the format to
|
653
653
|
# be "yyyy-MM-dd HH:mm:ss".
|
654
654
|
#
|
655
|
+
# @option params [String] :time_zone
|
656
|
+
# A single time zone for every item in your dataset. This option is
|
657
|
+
# ideal for datasets with all timestamps within a single time zone, or
|
658
|
+
# if all timestamps are normalized to a single time zone.
|
659
|
+
#
|
660
|
+
# Refer to the [Joda-Time API][1] for a complete list of valid time zone
|
661
|
+
# names.
|
662
|
+
#
|
663
|
+
#
|
664
|
+
#
|
665
|
+
# [1]: http://joda-time.sourceforge.net/timezones.html
|
666
|
+
#
|
667
|
+
# @option params [Boolean] :use_geolocation_for_time_zone
|
668
|
+
# Automatically derive time zone information from the geolocation
|
669
|
+
# attribute. This option is ideal for datasets that contain timestamps
|
670
|
+
# in multiple time zones and those timestamps are expressed in local
|
671
|
+
# time.
|
672
|
+
#
|
673
|
+
# @option params [String] :geolocation_format
|
674
|
+
# The format of the geolocation attribute. The geolocation attribute can
|
675
|
+
# be formatted in one of two ways:
|
676
|
+
#
|
677
|
+
# * `LAT_LONG` - the latitude and longitude in decimal format (Example:
|
678
|
+
# 47.61\_-122.33).
|
679
|
+
#
|
680
|
+
# * `CC_POSTALCODE` (US Only) - the country code (US), followed by the
|
681
|
+
# 5-digit ZIP code (Example: US\_98121).
|
682
|
+
#
|
655
683
|
# @option params [Array<Types::Tag>] :tags
|
656
684
|
# The optional metadata that you apply to the dataset import job to help
|
657
685
|
# you categorize and organize them. Each tag consists of a key and an
|
@@ -701,6 +729,9 @@ module Aws::ForecastService
|
|
701
729
|
# },
|
702
730
|
# },
|
703
731
|
# timestamp_format: "TimestampFormat",
|
732
|
+
# time_zone: "TimeZone",
|
733
|
+
# use_geolocation_for_time_zone: false,
|
734
|
+
# geolocation_format: "GeolocationFormat",
|
704
735
|
# tags: [
|
705
736
|
# {
|
706
737
|
# key: "TagKey", # required
|
@@ -1231,13 +1262,26 @@ module Aws::ForecastService
|
|
1231
1262
|
end
|
1232
1263
|
|
1233
1264
|
# Exports backtest forecasts and accuracy metrics generated by the
|
1234
|
-
# CreatePredictor operation. Two CSV files are
|
1235
|
-
# S3 bucket.
|
1265
|
+
# CreatePredictor operation. Two folders containing CSV files are
|
1266
|
+
# exported to your specified S3 bucket.
|
1236
1267
|
#
|
1237
|
-
#
|
1238
|
-
#
|
1239
|
-
#
|
1240
|
-
#
|
1268
|
+
# The export file names will match the following conventions:
|
1269
|
+
#
|
1270
|
+
# `<ExportJobName>_<ExportTimestamp>_<PartNumber>.csv`
|
1271
|
+
#
|
1272
|
+
# The <ExportTimestamp> component is in Java SimpleDate format
|
1273
|
+
# (yyyy-MM-ddTHH-mm-ssZ).
|
1274
|
+
#
|
1275
|
+
# You must specify a DataDestination object that includes an Amazon S3
|
1276
|
+
# bucket and an AWS Identity and Access Management (IAM) role that
|
1277
|
+
# Amazon Forecast can assume to access the Amazon S3 bucket. For more
|
1278
|
+
# information, see aws-forecast-iam-roles.
|
1279
|
+
#
|
1280
|
+
# <note markdown="1"> The `Status` of the export job must be `ACTIVE` before you can access
|
1281
|
+
# the export in your Amazon S3 bucket. To get the status, use the
|
1282
|
+
# DescribePredictorBacktestExportJob operation.
|
1283
|
+
#
|
1284
|
+
# </note>
|
1241
1285
|
#
|
1242
1286
|
# @option params [required, String] :predictor_backtest_export_job_name
|
1243
1287
|
# The name for the backtest export job.
|
@@ -1247,9 +1291,9 @@ module Aws::ForecastService
|
|
1247
1291
|
# export.
|
1248
1292
|
#
|
1249
1293
|
# @option params [required, Types::DataDestination] :destination
|
1250
|
-
# The destination for an export job, an AWS Identity
|
1251
|
-
# Management (IAM) role that allows Amazon Forecast to access
|
1252
|
-
# location and
|
1294
|
+
# The destination for an export job. Provide an S3 path, an AWS Identity
|
1295
|
+
# and Access Management (IAM) role that allows Amazon Forecast to access
|
1296
|
+
# the location, and an AWS Key Management Service (KMS) key (optional).
|
1253
1297
|
#
|
1254
1298
|
# @option params [Array<Types::Tag>] :tags
|
1255
1299
|
# Optional metadata to help you categorize and organize your backtests.
|
@@ -1544,7 +1588,7 @@ module Aws::ForecastService
|
|
1544
1588
|
# resp.data_frequency #=> String
|
1545
1589
|
# resp.schema.attributes #=> Array
|
1546
1590
|
# resp.schema.attributes[0].attribute_name #=> String
|
1547
|
-
# resp.schema.attributes[0].attribute_type #=> String, one of "string", "integer", "float", "timestamp"
|
1591
|
+
# resp.schema.attributes[0].attribute_type #=> String, one of "string", "integer", "float", "timestamp", "geolocation"
|
1548
1592
|
# resp.encryption_config.role_arn #=> String
|
1549
1593
|
# resp.encryption_config.kms_key_arn #=> String
|
1550
1594
|
# resp.status #=> String
|
@@ -1642,6 +1686,9 @@ module Aws::ForecastService
|
|
1642
1686
|
# * {Types::DescribeDatasetImportJobResponse#dataset_import_job_arn #dataset_import_job_arn} => String
|
1643
1687
|
# * {Types::DescribeDatasetImportJobResponse#dataset_arn #dataset_arn} => String
|
1644
1688
|
# * {Types::DescribeDatasetImportJobResponse#timestamp_format #timestamp_format} => String
|
1689
|
+
# * {Types::DescribeDatasetImportJobResponse#time_zone #time_zone} => String
|
1690
|
+
# * {Types::DescribeDatasetImportJobResponse#use_geolocation_for_time_zone #use_geolocation_for_time_zone} => Boolean
|
1691
|
+
# * {Types::DescribeDatasetImportJobResponse#geolocation_format #geolocation_format} => String
|
1645
1692
|
# * {Types::DescribeDatasetImportJobResponse#data_source #data_source} => Types::DataSource
|
1646
1693
|
# * {Types::DescribeDatasetImportJobResponse#field_statistics #field_statistics} => Hash<String,Types::Statistics>
|
1647
1694
|
# * {Types::DescribeDatasetImportJobResponse#data_size #data_size} => Float
|
@@ -1662,6 +1709,9 @@ module Aws::ForecastService
|
|
1662
1709
|
# resp.dataset_import_job_arn #=> String
|
1663
1710
|
# resp.dataset_arn #=> String
|
1664
1711
|
# resp.timestamp_format #=> String
|
1712
|
+
# resp.time_zone #=> String
|
1713
|
+
# resp.use_geolocation_for_time_zone #=> Boolean
|
1714
|
+
# resp.geolocation_format #=> String
|
1665
1715
|
# resp.data_source.s3_config.path #=> String
|
1666
1716
|
# resp.data_source.s3_config.role_arn #=> String
|
1667
1717
|
# resp.data_source.s3_config.kms_key_arn #=> String
|
@@ -2726,7 +2776,7 @@ module Aws::ForecastService
|
|
2726
2776
|
params: params,
|
2727
2777
|
config: config)
|
2728
2778
|
context[:gem_name] = 'aws-sdk-forecastservice'
|
2729
|
-
context[:gem_version] = '1.
|
2779
|
+
context[:gem_version] = '1.14.0'
|
2730
2780
|
Seahorse::Client::Request.new(handlers, context)
|
2731
2781
|
end
|
2732
2782
|
|
@@ -93,6 +93,7 @@ module Aws::ForecastService
|
|
93
93
|
ForecastTypes = Shapes::ListShape.new(name: 'ForecastTypes')
|
94
94
|
Forecasts = Shapes::ListShape.new(name: 'Forecasts')
|
95
95
|
Frequency = Shapes::StringShape.new(name: 'Frequency')
|
96
|
+
GeolocationFormat = Shapes::StringShape.new(name: 'GeolocationFormat')
|
96
97
|
GetAccuracyMetricsRequest = Shapes::StructureShape.new(name: 'GetAccuracyMetricsRequest')
|
97
98
|
GetAccuracyMetricsResponse = Shapes::StructureShape.new(name: 'GetAccuracyMetricsResponse')
|
98
99
|
HyperParameterTuningJobConfig = Shapes::StructureShape.new(name: 'HyperParameterTuningJobConfig')
|
@@ -160,6 +161,7 @@ module Aws::ForecastService
|
|
160
161
|
TestWindowDetails = Shapes::ListShape.new(name: 'TestWindowDetails')
|
161
162
|
TestWindowSummary = Shapes::StructureShape.new(name: 'TestWindowSummary')
|
162
163
|
TestWindows = Shapes::ListShape.new(name: 'TestWindows')
|
164
|
+
TimeZone = Shapes::StringShape.new(name: 'TimeZone')
|
163
165
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
164
166
|
TimestampFormat = Shapes::StringShape.new(name: 'TimestampFormat')
|
165
167
|
TrainingParameters = Shapes::MapShape.new(name: 'TrainingParameters')
|
@@ -167,6 +169,7 @@ module Aws::ForecastService
|
|
167
169
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
168
170
|
UpdateDatasetGroupRequest = Shapes::StructureShape.new(name: 'UpdateDatasetGroupRequest')
|
169
171
|
UpdateDatasetGroupResponse = Shapes::StructureShape.new(name: 'UpdateDatasetGroupResponse')
|
172
|
+
UseGeolocationForTimeZone = Shapes::BooleanShape.new(name: 'UseGeolocationForTimeZone')
|
170
173
|
Value = Shapes::StringShape.new(name: 'Value')
|
171
174
|
Values = Shapes::ListShape.new(name: 'Values')
|
172
175
|
WeightedQuantileLoss = Shapes::StructureShape.new(name: 'WeightedQuantileLoss')
|
@@ -202,6 +205,9 @@ module Aws::ForecastService
|
|
202
205
|
CreateDatasetImportJobRequest.add_member(:dataset_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "DatasetArn"))
|
203
206
|
CreateDatasetImportJobRequest.add_member(:data_source, Shapes::ShapeRef.new(shape: DataSource, required: true, location_name: "DataSource"))
|
204
207
|
CreateDatasetImportJobRequest.add_member(:timestamp_format, Shapes::ShapeRef.new(shape: TimestampFormat, location_name: "TimestampFormat"))
|
208
|
+
CreateDatasetImportJobRequest.add_member(:time_zone, Shapes::ShapeRef.new(shape: TimeZone, location_name: "TimeZone"))
|
209
|
+
CreateDatasetImportJobRequest.add_member(:use_geolocation_for_time_zone, Shapes::ShapeRef.new(shape: UseGeolocationForTimeZone, location_name: "UseGeolocationForTimeZone"))
|
210
|
+
CreateDatasetImportJobRequest.add_member(:geolocation_format, Shapes::ShapeRef.new(shape: GeolocationFormat, location_name: "GeolocationFormat"))
|
205
211
|
CreateDatasetImportJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
206
212
|
CreateDatasetImportJobRequest.struct_class = Types::CreateDatasetImportJobRequest
|
207
213
|
|
@@ -340,6 +346,9 @@ module Aws::ForecastService
|
|
340
346
|
DescribeDatasetImportJobResponse.add_member(:dataset_import_job_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DatasetImportJobArn"))
|
341
347
|
DescribeDatasetImportJobResponse.add_member(:dataset_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "DatasetArn"))
|
342
348
|
DescribeDatasetImportJobResponse.add_member(:timestamp_format, Shapes::ShapeRef.new(shape: TimestampFormat, location_name: "TimestampFormat"))
|
349
|
+
DescribeDatasetImportJobResponse.add_member(:time_zone, Shapes::ShapeRef.new(shape: TimeZone, location_name: "TimeZone"))
|
350
|
+
DescribeDatasetImportJobResponse.add_member(:use_geolocation_for_time_zone, Shapes::ShapeRef.new(shape: UseGeolocationForTimeZone, location_name: "UseGeolocationForTimeZone"))
|
351
|
+
DescribeDatasetImportJobResponse.add_member(:geolocation_format, Shapes::ShapeRef.new(shape: GeolocationFormat, location_name: "GeolocationFormat"))
|
343
352
|
DescribeDatasetImportJobResponse.add_member(:data_source, Shapes::ShapeRef.new(shape: DataSource, location_name: "DataSource"))
|
344
353
|
DescribeDatasetImportJobResponse.add_member(:field_statistics, Shapes::ShapeRef.new(shape: FieldStatistics, location_name: "FieldStatistics"))
|
345
354
|
DescribeDatasetImportJobResponse.add_member(:data_size, Shapes::ShapeRef.new(shape: Double, location_name: "DataSize"))
|
@@ -219,6 +219,9 @@ module Aws::ForecastService
|
|
219
219
|
# },
|
220
220
|
# },
|
221
221
|
# timestamp_format: "TimestampFormat",
|
222
|
+
# time_zone: "TimeZone",
|
223
|
+
# use_geolocation_for_time_zone: false,
|
224
|
+
# geolocation_format: "GeolocationFormat",
|
222
225
|
# tags: [
|
223
226
|
# {
|
224
227
|
# key: "TagKey", # required
|
@@ -270,6 +273,37 @@ module Aws::ForecastService
|
|
270
273
|
# to be "yyyy-MM-dd HH:mm:ss".
|
271
274
|
# @return [String]
|
272
275
|
#
|
276
|
+
# @!attribute [rw] time_zone
|
277
|
+
# A single time zone for every item in your dataset. This option is
|
278
|
+
# ideal for datasets with all timestamps within a single time zone, or
|
279
|
+
# if all timestamps are normalized to a single time zone.
|
280
|
+
#
|
281
|
+
# Refer to the [Joda-Time API][1] for a complete list of valid time
|
282
|
+
# zone names.
|
283
|
+
#
|
284
|
+
#
|
285
|
+
#
|
286
|
+
# [1]: http://joda-time.sourceforge.net/timezones.html
|
287
|
+
# @return [String]
|
288
|
+
#
|
289
|
+
# @!attribute [rw] use_geolocation_for_time_zone
|
290
|
+
# Automatically derive time zone information from the geolocation
|
291
|
+
# attribute. This option is ideal for datasets that contain timestamps
|
292
|
+
# in multiple time zones and those timestamps are expressed in local
|
293
|
+
# time.
|
294
|
+
# @return [Boolean]
|
295
|
+
#
|
296
|
+
# @!attribute [rw] geolocation_format
|
297
|
+
# The format of the geolocation attribute. The geolocation attribute
|
298
|
+
# can be formatted in one of two ways:
|
299
|
+
#
|
300
|
+
# * `LAT_LONG` - the latitude and longitude in decimal format
|
301
|
+
# (Example: 47.61\_-122.33).
|
302
|
+
#
|
303
|
+
# * `CC_POSTALCODE` (US Only) - the country code (US), followed by the
|
304
|
+
# 5-digit ZIP code (Example: US\_98121).
|
305
|
+
# @return [String]
|
306
|
+
#
|
273
307
|
# @!attribute [rw] tags
|
274
308
|
# The optional metadata that you apply to the dataset import job to
|
275
309
|
# help you categorize and organize them. Each tag consists of a key
|
@@ -310,6 +344,9 @@ module Aws::ForecastService
|
|
310
344
|
:dataset_arn,
|
311
345
|
:data_source,
|
312
346
|
:timestamp_format,
|
347
|
+
:time_zone,
|
348
|
+
:use_geolocation_for_time_zone,
|
349
|
+
:geolocation_format,
|
313
350
|
:tags)
|
314
351
|
SENSITIVE = []
|
315
352
|
include Aws::Structure
|
@@ -339,7 +376,7 @@ module Aws::ForecastService
|
|
339
376
|
# attributes: [
|
340
377
|
# {
|
341
378
|
# attribute_name: "Name",
|
342
|
-
# attribute_type: "string", # accepts string, integer, float, timestamp
|
379
|
+
# attribute_type: "string", # accepts string, integer, float, timestamp, geolocation
|
343
380
|
# },
|
344
381
|
# ],
|
345
382
|
# },
|
@@ -676,9 +713,10 @@ module Aws::ForecastService
|
|
676
713
|
# @return [String]
|
677
714
|
#
|
678
715
|
# @!attribute [rw] destination
|
679
|
-
# The destination for an export job
|
680
|
-
# Management (IAM) role that allows Amazon
|
681
|
-
# location and
|
716
|
+
# The destination for an export job. Provide an S3 path, an AWS
|
717
|
+
# Identity and Access Management (IAM) role that allows Amazon
|
718
|
+
# Forecast to access the location, and an AWS Key Management Service
|
719
|
+
# (KMS) key (optional).
|
682
720
|
# @return [Types::DataDestination]
|
683
721
|
#
|
684
722
|
# @!attribute [rw] tags
|
@@ -1003,9 +1041,9 @@ module Aws::ForecastService
|
|
1003
1041
|
include Aws::Structure
|
1004
1042
|
end
|
1005
1043
|
|
1006
|
-
# The destination for an export job, an AWS Identity
|
1007
|
-
# Management (IAM) role that allows Amazon Forecast to access
|
1008
|
-
# location and
|
1044
|
+
# The destination for an export job. Provide an S3 path, an AWS Identity
|
1045
|
+
# and Access Management (IAM) role that allows Amazon Forecast to access
|
1046
|
+
# the location, and an AWS Key Management Service (KMS) key (optional).
|
1009
1047
|
#
|
1010
1048
|
# @note When making an API call, you may pass DataDestination
|
1011
1049
|
# data as a hash:
|
@@ -1472,6 +1510,20 @@ module Aws::ForecastService
|
|
1472
1510
|
# optionally, for: Y, M, W, and D
|
1473
1511
|
# @return [String]
|
1474
1512
|
#
|
1513
|
+
# @!attribute [rw] time_zone
|
1514
|
+
# The single time zone applied to every item in the dataset
|
1515
|
+
# @return [String]
|
1516
|
+
#
|
1517
|
+
# @!attribute [rw] use_geolocation_for_time_zone
|
1518
|
+
# Whether `TimeZone` is automatically derived from the geolocation
|
1519
|
+
# attribute.
|
1520
|
+
# @return [Boolean]
|
1521
|
+
#
|
1522
|
+
# @!attribute [rw] geolocation_format
|
1523
|
+
# The format of the geolocation attribute. Valid Values:`"LAT_LONG"`
|
1524
|
+
# and `"CC_POSTALCODE"`.
|
1525
|
+
# @return [String]
|
1526
|
+
#
|
1475
1527
|
# @!attribute [rw] data_source
|
1476
1528
|
# The location of the training data to import and an AWS Identity and
|
1477
1529
|
# Access Management (IAM) role that Amazon Forecast can assume to
|
@@ -1529,6 +1581,9 @@ module Aws::ForecastService
|
|
1529
1581
|
:dataset_import_job_arn,
|
1530
1582
|
:dataset_arn,
|
1531
1583
|
:timestamp_format,
|
1584
|
+
:time_zone,
|
1585
|
+
:use_geolocation_for_time_zone,
|
1586
|
+
:geolocation_format,
|
1532
1587
|
:data_source,
|
1533
1588
|
:field_statistics,
|
1534
1589
|
:data_size,
|
@@ -1845,9 +1900,10 @@ module Aws::ForecastService
|
|
1845
1900
|
# @return [String]
|
1846
1901
|
#
|
1847
1902
|
# @!attribute [rw] destination
|
1848
|
-
# The destination for an export job
|
1849
|
-
# Management (IAM) role that allows Amazon
|
1850
|
-
# location and
|
1903
|
+
# The destination for an export job. Provide an S3 path, an AWS
|
1904
|
+
# Identity and Access Management (IAM) role that allows Amazon
|
1905
|
+
# Forecast to access the location, and an AWS Key Management Service
|
1906
|
+
# (KMS) key (optional).
|
1851
1907
|
# @return [Types::DataDestination]
|
1852
1908
|
#
|
1853
1909
|
# @!attribute [rw] message
|
@@ -3409,9 +3465,10 @@ module Aws::ForecastService
|
|
3409
3465
|
# @return [String]
|
3410
3466
|
#
|
3411
3467
|
# @!attribute [rw] destination
|
3412
|
-
# The destination for an export job
|
3413
|
-
# Management (IAM) role that allows Amazon
|
3414
|
-
# location and
|
3468
|
+
# The destination for an export job. Provide an S3 path, an AWS
|
3469
|
+
# Identity and Access Management (IAM) role that allows Amazon
|
3470
|
+
# Forecast to access the location, and an AWS Key Management Service
|
3471
|
+
# (KMS) key (optional).
|
3415
3472
|
# @return [Types::DataDestination]
|
3416
3473
|
#
|
3417
3474
|
# @!attribute [rw] status
|
@@ -3663,7 +3720,7 @@ module Aws::ForecastService
|
|
3663
3720
|
# attributes: [
|
3664
3721
|
# {
|
3665
3722
|
# attribute_name: "Name",
|
3666
|
-
# attribute_type: "string", # accepts string, integer, float, timestamp
|
3723
|
+
# attribute_type: "string", # accepts string, integer, float, timestamp, geolocation
|
3667
3724
|
# },
|
3668
3725
|
# ],
|
3669
3726
|
# }
|
@@ -3690,7 +3747,7 @@ module Aws::ForecastService
|
|
3690
3747
|
#
|
3691
3748
|
# {
|
3692
3749
|
# attribute_name: "Name",
|
3693
|
-
# attribute_type: "string", # accepts string, integer, float, timestamp
|
3750
|
+
# attribute_type: "string", # accepts string, integer, float, timestamp, geolocation
|
3694
3751
|
# }
|
3695
3752
|
#
|
3696
3753
|
# @!attribute [rw] attribute_name
|
@@ -3761,16 +3818,30 @@ module Aws::ForecastService
|
|
3761
3818
|
end
|
3762
3819
|
|
3763
3820
|
# Describes a supplementary feature of a dataset group. This object is
|
3764
|
-
# part of the InputDataConfig object.
|
3821
|
+
# part of the InputDataConfig object. Forecast supports the Weather
|
3822
|
+
# Index and Holidays built-in featurizations.
|
3823
|
+
#
|
3824
|
+
# **Weather Index**
|
3765
3825
|
#
|
3766
|
-
# The
|
3767
|
-
#
|
3768
|
-
#
|
3769
|
-
#
|
3826
|
+
# The Amazon Forecast Weather Index is a built-in featurization that
|
3827
|
+
# incorporates historical and projected weather information into your
|
3828
|
+
# model. The Weather Index supplements your datasets with over two years
|
3829
|
+
# of historical weather data and up to 14 days of projected weather
|
3830
|
+
# data. For more information, see [Amazon Forecast Weather Index][1].
|
3770
3831
|
#
|
3832
|
+
# **Holidays**
|
3771
3833
|
#
|
3834
|
+
# Holidays is a built-in featurization that incorporates a
|
3835
|
+
# feature-engineered dataset of national holiday information into your
|
3836
|
+
# model. It provides native support for the holiday calendars of 66
|
3837
|
+
# countries. To view the holiday calendars, refer to the [Jollyday][2]
|
3838
|
+
# library. For more information, see [Holidays Featurization][3].
|
3772
3839
|
#
|
3773
|
-
#
|
3840
|
+
#
|
3841
|
+
#
|
3842
|
+
# [1]: https://docs.aws.amazon.com/forecast/latest/dg/weather.html
|
3843
|
+
# [2]: http://jollyday.sourceforge.net/data.html
|
3844
|
+
# [3]: https://docs.aws.amazon.com/forecast/latest/dg/holidays.html
|
3774
3845
|
#
|
3775
3846
|
# @note When making an API call, you may pass SupplementaryFeature
|
3776
3847
|
# data as a hash:
|
@@ -3781,11 +3852,18 @@ module Aws::ForecastService
|
|
3781
3852
|
# }
|
3782
3853
|
#
|
3783
3854
|
# @!attribute [rw] name
|
3784
|
-
# The name of the feature.
|
3855
|
+
# The name of the feature. Valid values: `"holiday"` and `"weather"`.
|
3785
3856
|
# @return [String]
|
3786
3857
|
#
|
3787
3858
|
# @!attribute [rw] value
|
3788
|
-
#
|
3859
|
+
# **Weather Index**
|
3860
|
+
#
|
3861
|
+
# To enable the Weather Index, set the value to `"true"`
|
3862
|
+
#
|
3863
|
+
# **Holidays**
|
3864
|
+
#
|
3865
|
+
# To enable Holidays, specify a country with one of the following
|
3866
|
+
# two-letter country codes:
|
3789
3867
|
#
|
3790
3868
|
# * "AL" - ALBANIA
|
3791
3869
|
#
|
@@ -3984,7 +4062,7 @@ module Aws::ForecastService
|
|
3984
4062
|
class Tag < Struct.new(
|
3985
4063
|
:key,
|
3986
4064
|
:value)
|
3987
|
-
SENSITIVE = []
|
4065
|
+
SENSITIVE = [:key, :value]
|
3988
4066
|
include Aws::Structure
|
3989
4067
|
end
|
3990
4068
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-forecastservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|