aws-sdk-forecastservice 1.29.0 → 1.30.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b908eb35305d5b21217717404be18d6fab6d53272b5713155e79e55221d7f190
4
- data.tar.gz: 403c094521cbab12dd16240cbc8b9cb80d249141a6e422086f74975a70ebde3d
3
+ metadata.gz: d747c955882f1a585b75a7dee80a2163d0cc471d0f5bfea338a7ec4569ad93f1
4
+ data.tar.gz: 4f206a2b0725c26aba07175f106930f25a943bcfccba672c704bc8b8735fce90
5
5
  SHA512:
6
- metadata.gz: 80e24cc488444d8c499e87e2be98346251441cf3334dd78ef16237398ac725801973a524eb810c8d54877ee2d5376aace14e32c59bfddb23a2833df58fa15c4b
7
- data.tar.gz: 3fa98416af0d006ae2b840a960bd0d8cae91df973ffd78db0a9a646979d7ffb95a8d0e4bd5b8ac63cafd3a743767290d4bd11b680745cdf6cda969ffb630beeb
6
+ metadata.gz: 03bae8eaeea46e55bb52be52177b0c9be5867b59b1741cbdd05482b11eaf329ff7fc280371fb7c660019f5871c8cdeef87ed6b03a84304d94f25061d5ab85c79
7
+ data.tar.gz: a4ee843fdf9a0104d29f4fa18733bb9c0c78a779f63a5f93a157d40c951191194d39b2a508a4d66b6e708e621cd68cb6fc97282320a0bf7f93585156944e16a8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2021-12-20)
5
+ ------------------
6
+
7
+ * Feature - Adds ForecastDimensions field to the DescribeAutoPredictorResponse
8
+
4
9
  1.29.0 (2021-11-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.29.0
1
+ 1.30.0
@@ -444,6 +444,7 @@ module Aws::ForecastService
444
444
  # The accuracy metric used to optimize the predictor.
445
445
  #
446
446
  # @option params [Boolean] :explain_predictor
447
+ # Create an Explainability resource for the predictor.
447
448
  #
448
449
  # @option params [Array<Types::Tag>] :tags
449
450
  # Optional metadata to help you categorize and organize your predictors.
@@ -1001,7 +1002,7 @@ module Aws::ForecastService
1001
1002
  #
1002
1003
  # **CreateExplainability with a Forecast ARN**
1003
1004
  #
1004
- # <note markdown="1"> You can specify a maximum of 50 time series and 1500 time points.
1005
+ # <note markdown="1"> You can specify a maximum of 50 time series and 500 time points.
1005
1006
  #
1006
1007
  # </note>
1007
1008
  #
@@ -1043,14 +1044,12 @@ module Aws::ForecastService
1043
1044
  # and time points for the Explainability.
1044
1045
  #
1045
1046
  # @option params [Types::DataSource] :data_source
1046
- # The source of your training data, an AWS Identity and Access
1047
- # Management (IAM) role that allows Amazon Forecast to access the data
1048
- # and, optionally, an AWS Key Management Service (KMS) key. This object
1049
- # is submitted in the CreateDatasetImportJob request.
1047
+ # The source of your data, an AWS Identity and Access Management (IAM)
1048
+ # role that allows Amazon Forecast to access the data and, optionally,
1049
+ # an AWS Key Management Service (KMS) key.
1050
1050
  #
1051
1051
  # @option params [Types::Schema] :schema
1052
- # Defines the fields of a dataset. You specify this object in the
1053
- # CreateDataset request.
1052
+ # Defines the fields of a dataset.
1054
1053
  #
1055
1054
  # @option params [Boolean] :enable_visualization
1056
1055
  # Create an Expainability visualization that is viewable within the AWS
@@ -1060,10 +1059,16 @@ module Aws::ForecastService
1060
1059
  # If `TimePointGranularity` is set to `SPECIFIC`, define the first point
1061
1060
  # for the Explainability.
1062
1061
  #
1062
+ # Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example:
1063
+ # 2015-01-01T20:00:00)
1064
+ #
1063
1065
  # @option params [String] :end_date_time
1064
1066
  # If `TimePointGranularity` is set to `SPECIFIC`, define the last time
1065
1067
  # point for the Explainability.
1066
1068
  #
1069
+ # Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example:
1070
+ # 2015-01-01T20:00:00)
1071
+ #
1067
1072
  # @option params [Array<Types::Tag>] :tags
1068
1073
  # Optional metadata to help you categorize and organize your resources.
1069
1074
  # Each tag consists of a key and an optional value, both of which you
@@ -1769,8 +1774,8 @@ module Aws::ForecastService
1769
1774
  end
1770
1775
 
1771
1776
  # Exports backtest forecasts and accuracy metrics generated by the
1772
- # CreatePredictor operation. Two folders containing CSV files are
1773
- # exported to your specified S3 bucket.
1777
+ # CreateAutoPredictor or CreatePredictor operations. Two folders
1778
+ # containing CSV files are exported to your specified S3 bucket.
1774
1779
  #
1775
1780
  # The export file names will match the following conventions:
1776
1781
  #
@@ -1978,7 +1983,7 @@ module Aws::ForecastService
1978
1983
  req.send_request(options)
1979
1984
  end
1980
1985
 
1981
- # Deletes an Explainability export job.
1986
+ # Deletes an Explainability export.
1982
1987
  #
1983
1988
  # @option params [required, String] :explainability_export_arn
1984
1989
  # The Amazon Resource Name (ARN) of the Explainability export to delete.
@@ -2053,10 +2058,10 @@ module Aws::ForecastService
2053
2058
  req.send_request(options)
2054
2059
  end
2055
2060
 
2056
- # Deletes a predictor created using the CreatePredictor operation. You
2057
- # can delete only predictor that have a status of `ACTIVE` or
2058
- # `CREATE_FAILED`. To get the status, use the DescribePredictor
2059
- # operation.
2061
+ # Deletes a predictor created using the DescribePredictor or
2062
+ # CreatePredictor operations. You can delete only predictor that have a
2063
+ # status of `ACTIVE` or `CREATE_FAILED`. To get the status, use the
2064
+ # DescribePredictor operation.
2060
2065
  #
2061
2066
  # @option params [required, String] :predictor_arn
2062
2067
  # The Amazon Resource Name (ARN) of the predictor to delete.
@@ -2160,6 +2165,7 @@ module Aws::ForecastService
2160
2165
  # * {Types::DescribeAutoPredictorResponse#forecast_horizon #forecast_horizon} => Integer
2161
2166
  # * {Types::DescribeAutoPredictorResponse#forecast_types #forecast_types} => Array&lt;String&gt;
2162
2167
  # * {Types::DescribeAutoPredictorResponse#forecast_frequency #forecast_frequency} => String
2168
+ # * {Types::DescribeAutoPredictorResponse#forecast_dimensions #forecast_dimensions} => Array&lt;String&gt;
2163
2169
  # * {Types::DescribeAutoPredictorResponse#dataset_import_job_arns #dataset_import_job_arns} => Array&lt;String&gt;
2164
2170
  # * {Types::DescribeAutoPredictorResponse#data_config #data_config} => Types::DataConfig
2165
2171
  # * {Types::DescribeAutoPredictorResponse#encryption_config #encryption_config} => Types::EncryptionConfig
@@ -2186,6 +2192,8 @@ module Aws::ForecastService
2186
2192
  # resp.forecast_types #=> Array
2187
2193
  # resp.forecast_types[0] #=> String
2188
2194
  # resp.forecast_frequency #=> String
2195
+ # resp.forecast_dimensions #=> Array
2196
+ # resp.forecast_dimensions[0] #=> String
2189
2197
  # resp.dataset_import_job_arns #=> Array
2190
2198
  # resp.dataset_import_job_arns[0] #=> String
2191
2199
  # resp.data_config.dataset_group_arn #=> String
@@ -2647,9 +2655,6 @@ module Aws::ForecastService
2647
2655
  # CreatePredictor. If you are not using a legacy predictor, use
2648
2656
  # DescribeAutoPredictor.
2649
2657
  #
2650
- # To upgrade a legacy predictor to AutoPredictor, see Upgrading to
2651
- # AutoPredictor.
2652
- #
2653
2658
  # </note>
2654
2659
  #
2655
2660
  # Describes a predictor created using the CreatePredictor operation.
@@ -3120,7 +3125,7 @@ module Aws::ForecastService
3120
3125
  # `IS_NOT`.
3121
3126
  #
3122
3127
  # * `Key` - The name of the parameter to filter on. Valid values are
3123
- # `PredictorArn` and `Status`.
3128
+ # `ResourceArn` and `Status`.
3124
3129
  #
3125
3130
  # * `Value` - The value to match.
3126
3131
  #
@@ -3195,7 +3200,7 @@ module Aws::ForecastService
3195
3200
  # `IS_NOT`.
3196
3201
  #
3197
3202
  # * `Key` - The name of the parameter to filter on. Valid values are
3198
- # `PredictorArn` and `Status`.
3203
+ # `ResourceArn` and `Status`.
3199
3204
  #
3200
3205
  # * `Value` - The value to match.
3201
3206
  #
@@ -3488,12 +3493,13 @@ module Aws::ForecastService
3488
3493
  req.send_request(options)
3489
3494
  end
3490
3495
 
3491
- # Returns a list of predictors created using the CreatePredictor
3492
- # operation. For each predictor, this operation returns a summary of its
3493
- # properties, including its Amazon Resource Name (ARN). You can retrieve
3494
- # the complete set of properties by using the ARN with the
3495
- # DescribePredictor operation. You can filter the list using an array of
3496
- # Filter objects.
3496
+ # Returns a list of predictors created using the CreateAutoPredictor or
3497
+ # CreatePredictor operations. For each predictor, this operation returns
3498
+ # a summary of its properties, including its Amazon Resource Name (ARN).
3499
+ #
3500
+ # You can retrieve the complete set of properties by using the ARN with
3501
+ # the DescribeAutoPredictor and DescribePredictor operations. You can
3502
+ # filter the list using an array of Filter objects.
3497
3503
  #
3498
3504
  # @option params [String] :next_token
3499
3505
  # If the result of the previous request was truncated, the response
@@ -3576,9 +3582,7 @@ module Aws::ForecastService
3576
3582
  #
3577
3583
  # @option params [required, String] :resource_arn
3578
3584
  # The Amazon Resource Name (ARN) that identifies the resource for which
3579
- # to list the tags. Currently, the supported resources are Forecast
3580
- # dataset groups, datasets, dataset import jobs, predictors, forecasts,
3581
- # and forecast export jobs.
3585
+ # to list the tags.
3582
3586
  #
3583
3587
  # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3584
3588
  #
@@ -3624,11 +3628,16 @@ module Aws::ForecastService
3624
3628
  #
3625
3629
  # * Predictor Backtest Export Job
3626
3630
  #
3631
+ # * Explainability Job
3632
+ #
3633
+ # * Explainability Export Job
3634
+ #
3627
3635
  # @option params [required, String] :resource_arn
3628
3636
  # The Amazon Resource Name (ARN) that identifies the resource to stop.
3629
3637
  # The supported ARNs are `DatasetImportJobArn`, `PredictorArn`,
3630
- # `PredictorBacktestExportJobArn`, `ForecastArn`, and
3631
- # `ForecastExportJobArn`.
3638
+ # `PredictorBacktestExportJobArn`, `ForecastArn`,
3639
+ # `ForecastExportJobArn`, `ExplainabilityArn`, and
3640
+ # `ExplainabilityExportArn`.
3632
3641
  #
3633
3642
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3634
3643
  #
@@ -3654,9 +3663,7 @@ module Aws::ForecastService
3654
3663
  #
3655
3664
  # @option params [required, String] :resource_arn
3656
3665
  # The Amazon Resource Name (ARN) that identifies the resource for which
3657
- # to list the tags. Currently, the supported resources are Forecast
3658
- # dataset groups, datasets, dataset import jobs, predictors, forecasts,
3659
- # and forecast export jobs.
3666
+ # to list the tags.
3660
3667
  #
3661
3668
  # @option params [required, Array<Types::Tag>] :tags
3662
3669
  # The tags to add to the resource. A tag is an array of key-value pairs.
@@ -3715,9 +3722,7 @@ module Aws::ForecastService
3715
3722
  #
3716
3723
  # @option params [required, String] :resource_arn
3717
3724
  # The Amazon Resource Name (ARN) that identifies the resource for which
3718
- # to list the tags. Currently, the supported resources are Forecast
3719
- # dataset groups, datasets, dataset import jobs, predictors, forecasts,
3720
- # and forecast exports.
3725
+ # to list the tags.
3721
3726
  #
3722
3727
  # @option params [required, Array<String>] :tag_keys
3723
3728
  # The keys of the tags to be removed.
@@ -3786,7 +3791,7 @@ module Aws::ForecastService
3786
3791
  params: params,
3787
3792
  config: config)
3788
3793
  context[:gem_name] = 'aws-sdk-forecastservice'
3789
- context[:gem_version] = '1.29.0'
3794
+ context[:gem_version] = '1.30.0'
3790
3795
  Seahorse::Client::Request.new(handlers, context)
3791
3796
  end
3792
3797
 
@@ -446,6 +446,7 @@ module Aws::ForecastService
446
446
  DescribeAutoPredictorResponse.add_member(:forecast_horizon, Shapes::ShapeRef.new(shape: Integer, location_name: "ForecastHorizon"))
447
447
  DescribeAutoPredictorResponse.add_member(:forecast_types, Shapes::ShapeRef.new(shape: ForecastTypes, location_name: "ForecastTypes"))
448
448
  DescribeAutoPredictorResponse.add_member(:forecast_frequency, Shapes::ShapeRef.new(shape: Frequency, location_name: "ForecastFrequency"))
449
+ DescribeAutoPredictorResponse.add_member(:forecast_dimensions, Shapes::ShapeRef.new(shape: ForecastDimensions, location_name: "ForecastDimensions"))
449
450
  DescribeAutoPredictorResponse.add_member(:dataset_import_job_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "DatasetImportJobArns"))
450
451
  DescribeAutoPredictorResponse.add_member(:data_config, Shapes::ShapeRef.new(shape: DataConfig, location_name: "DataConfig"))
451
452
  DescribeAutoPredictorResponse.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfig, location_name: "EncryptionConfig"))
@@ -59,7 +59,7 @@ module Aws::ForecastService
59
59
  #
60
60
  # **Holidays**
61
61
  #
62
- # To enable Holidays, specify a country with one of the following
62
+ # To enable Holidays, set `CountryCode` to one of the following
63
63
  # two-letter country codes:
64
64
  #
65
65
  # * "AL" - ALBANIA
@@ -491,6 +491,7 @@ module Aws::ForecastService
491
491
  # @return [String]
492
492
  #
493
493
  # @!attribute [rw] explain_predictor
494
+ # Create an Explainability resource for the predictor.
494
495
  # @return [Boolean]
495
496
  #
496
497
  # @!attribute [rw] tags
@@ -1077,15 +1078,13 @@ module Aws::ForecastService
1077
1078
  # @return [Types::ExplainabilityConfig]
1078
1079
  #
1079
1080
  # @!attribute [rw] data_source
1080
- # The source of your training data, an AWS Identity and Access
1081
- # Management (IAM) role that allows Amazon Forecast to access the data
1082
- # and, optionally, an AWS Key Management Service (KMS) key. This
1083
- # object is submitted in the CreateDatasetImportJob request.
1081
+ # The source of your data, an AWS Identity and Access Management (IAM)
1082
+ # role that allows Amazon Forecast to access the data and, optionally,
1083
+ # an AWS Key Management Service (KMS) key.
1084
1084
  # @return [Types::DataSource]
1085
1085
  #
1086
1086
  # @!attribute [rw] schema
1087
- # Defines the fields of a dataset. You specify this object in the
1088
- # CreateDataset request.
1087
+ # Defines the fields of a dataset.
1089
1088
  # @return [Types::Schema]
1090
1089
  #
1091
1090
  # @!attribute [rw] enable_visualization
@@ -1096,11 +1095,17 @@ module Aws::ForecastService
1096
1095
  # @!attribute [rw] start_date_time
1097
1096
  # If `TimePointGranularity` is set to `SPECIFIC`, define the first
1098
1097
  # point for the Explainability.
1098
+ #
1099
+ # Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example:
1100
+ # 2015-01-01T20:00:00)
1099
1101
  # @return [String]
1100
1102
  #
1101
1103
  # @!attribute [rw] end_date_time
1102
1104
  # If `TimePointGranularity` is set to `SPECIFIC`, define the last time
1103
1105
  # point for the Explainability.
1106
+ #
1107
+ # Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example:
1108
+ # 2015-01-01T20:00:00)
1104
1109
  # @return [String]
1105
1110
  #
1106
1111
  # @!attribute [rw] tags
@@ -1805,10 +1810,9 @@ module Aws::ForecastService
1805
1810
  include Aws::Structure
1806
1811
  end
1807
1812
 
1808
- # The source of your training data, an AWS Identity and Access
1809
- # Management (IAM) role that allows Amazon Forecast to access the data
1810
- # and, optionally, an AWS Key Management Service (KMS) key. This object
1811
- # is submitted in the CreateDatasetImportJob request.
1813
+ # The source of your data, an AWS Identity and Access Management (IAM)
1814
+ # role that allows Amazon Forecast to access the data and, optionally,
1815
+ # an AWS Key Management Service (KMS) key.
1812
1816
  #
1813
1817
  # @note When making an API call, you may pass DataSource
1814
1818
  # data as a hash:
@@ -1822,9 +1826,8 @@ module Aws::ForecastService
1822
1826
  # }
1823
1827
  #
1824
1828
  # @!attribute [rw] s3_config
1825
- # The path to the training data stored in an Amazon Simple Storage
1826
- # Service (Amazon S3) bucket along with the credentials to access the
1827
- # data.
1829
+ # The path to the data stored in an Amazon Simple Storage Service
1830
+ # (Amazon S3) bucket along with the credentials to access the data.
1828
1831
  # @return [Types::S3Config]
1829
1832
  #
1830
1833
  # @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/DataSource AWS API Documentation
@@ -2227,6 +2230,11 @@ module Aws::ForecastService
2227
2230
  # every year and "5min" indicates every five minutes.
2228
2231
  # @return [String]
2229
2232
  #
2233
+ # @!attribute [rw] forecast_dimensions
2234
+ # An array of dimension (field) names that specify the attributes used
2235
+ # to group your time series.
2236
+ # @return [Array<String>]
2237
+ #
2230
2238
  # @!attribute [rw] dataset_import_job_arns
2231
2239
  # An array of the ARNs of the dataset import jobs used to import
2232
2240
  # training data for the predictor.
@@ -2295,6 +2303,7 @@ module Aws::ForecastService
2295
2303
  # @return [String]
2296
2304
  #
2297
2305
  # @!attribute [rw] explainability_info
2306
+ # Provides the status and ARN of the Predictor Explainability.
2298
2307
  # @return [Types::ExplainabilityInfo]
2299
2308
  #
2300
2309
  # @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/DescribeAutoPredictorResponse AWS API Documentation
@@ -2305,6 +2314,7 @@ module Aws::ForecastService
2305
2314
  :forecast_horizon,
2306
2315
  :forecast_types,
2307
2316
  :forecast_frequency,
2317
+ :forecast_dimensions,
2308
2318
  :dataset_import_job_arns,
2309
2319
  :data_config,
2310
2320
  :encryption_config,
@@ -2781,15 +2791,13 @@ module Aws::ForecastService
2781
2791
  # @return [Boolean]
2782
2792
  #
2783
2793
  # @!attribute [rw] data_source
2784
- # The source of your training data, an AWS Identity and Access
2785
- # Management (IAM) role that allows Amazon Forecast to access the data
2786
- # and, optionally, an AWS Key Management Service (KMS) key. This
2787
- # object is submitted in the CreateDatasetImportJob request.
2794
+ # The source of your data, an AWS Identity and Access Management (IAM)
2795
+ # role that allows Amazon Forecast to access the data and, optionally,
2796
+ # an AWS Key Management Service (KMS) key.
2788
2797
  # @return [Types::DataSource]
2789
2798
  #
2790
2799
  # @!attribute [rw] schema
2791
- # Defines the fields of a dataset. You specify this object in the
2792
- # CreateDataset request.
2800
+ # Defines the fields of a dataset.
2793
2801
  # @return [Types::Schema]
2794
2802
  #
2795
2803
  # @!attribute [rw] start_date_time
@@ -3593,10 +3601,22 @@ module Aws::ForecastService
3593
3601
  include Aws::Structure
3594
3602
  end
3595
3603
 
3604
+ # Provides information about the Explainability resource.
3605
+ #
3596
3606
  # @!attribute [rw] explainability_arn
3607
+ # The Amazon Resource Name (ARN) of the Explainability.
3597
3608
  # @return [String]
3598
3609
  #
3599
3610
  # @!attribute [rw] status
3611
+ # The status of the Explainability. States include:
3612
+ #
3613
+ # * `ACTIVE`
3614
+ #
3615
+ # * `CREATE_PENDING`, `CREATE_IN_PROGRESS`, `CREATE_FAILED`
3616
+ #
3617
+ # * `CREATE_STOPPING`, `CREATE_STOPPED`
3618
+ #
3619
+ # * `DELETE_PENDING`, `DELETE_IN_PROGRESS`, `DELETE_FAILED`
3600
3620
  # @return [String]
3601
3621
  #
3602
3622
  # @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ExplainabilityInfo AWS API Documentation
@@ -3682,6 +3702,11 @@ module Aws::ForecastService
3682
3702
  include Aws::Structure
3683
3703
  end
3684
3704
 
3705
+ # <note markdown="1"> This object belongs to the CreatePredictor operation. If you created
3706
+ # your predictor with CreateAutoPredictor, see AttributeConfig.
3707
+ #
3708
+ # </note>
3709
+ #
3685
3710
  # Provides featurization (transformation) information for a dataset
3686
3711
  # field. This object is part of the FeaturizationConfig object.
3687
3712
  #
@@ -3740,6 +3765,11 @@ module Aws::ForecastService
3740
3765
  include Aws::Structure
3741
3766
  end
3742
3767
 
3768
+ # <note markdown="1"> This object belongs to the CreatePredictor operation. If you created
3769
+ # your predictor with CreateAutoPredictor, see AttributeConfig.
3770
+ #
3771
+ # </note>
3772
+ #
3743
3773
  # In a CreatePredictor operation, the specified algorithm trains a model
3744
3774
  # using the specified dataset group. You can optionally tell the
3745
3775
  # operation to modify data fields prior to training a model. These
@@ -4027,6 +4057,7 @@ module Aws::ForecastService
4027
4057
  # @return [String]
4028
4058
  #
4029
4059
  # @!attribute [rw] created_using_auto_predictor
4060
+ # Whether the Forecast was created from an AutoPredictor.
4030
4061
  # @return [Boolean]
4031
4062
  #
4032
4063
  # @!attribute [rw] dataset_group_arn
@@ -4203,6 +4234,11 @@ module Aws::ForecastService
4203
4234
  include Aws::Structure
4204
4235
  end
4205
4236
 
4237
+ # <note markdown="1"> This object belongs to the CreatePredictor operation. If you created
4238
+ # your predictor with CreateAutoPredictor, see DataConfig.
4239
+ #
4240
+ # </note>
4241
+ #
4206
4242
  # The data used to train a predictor. The data includes a dataset group
4207
4243
  # and any supplementary features. You specify this object in the
4208
4244
  # CreatePredictor request.
@@ -4558,7 +4594,7 @@ module Aws::ForecastService
4558
4594
  # `IS_NOT`.
4559
4595
  #
4560
4596
  # * `Key` - The name of the parameter to filter on. Valid values are
4561
- # `PredictorArn` and `Status`.
4597
+ # `ResourceArn` and `Status`.
4562
4598
  #
4563
4599
  # * `Value` - The value to match.
4564
4600
  # @return [Array<Types::Filter>]
@@ -4630,7 +4666,7 @@ module Aws::ForecastService
4630
4666
  # `IS_NOT`.
4631
4667
  #
4632
4668
  # * `Key` - The name of the parameter to filter on. Valid values are
4633
- # `PredictorArn` and `Status`.
4669
+ # `ResourceArn` and `Status`.
4634
4670
  #
4635
4671
  # * `Value` - The value to match.
4636
4672
  # @return [Array<Types::Filter>]
@@ -4983,9 +5019,7 @@ module Aws::ForecastService
4983
5019
  #
4984
5020
  # @!attribute [rw] resource_arn
4985
5021
  # The Amazon Resource Name (ARN) that identifies the resource for
4986
- # which to list the tags. Currently, the supported resources are
4987
- # Forecast dataset groups, datasets, dataset import jobs, predictors,
4988
- # forecasts, and forecast export jobs.
5022
+ # which to list the tags.
4989
5023
  # @return [String]
4990
5024
  #
4991
5025
  # @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/ListTagsForResourceRequest AWS API Documentation
@@ -5403,8 +5437,7 @@ module Aws::ForecastService
5403
5437
  include Aws::Structure
5404
5438
  end
5405
5439
 
5406
- # Defines the fields of a dataset. You specify this object in the
5407
- # CreateDataset request.
5440
+ # Defines the fields of a dataset.
5408
5441
  #
5409
5442
  # @note When making an API call, you may pass Schema
5410
5443
  # data as a hash:
@@ -5550,8 +5583,9 @@ module Aws::ForecastService
5550
5583
  # @!attribute [rw] resource_arn
5551
5584
  # The Amazon Resource Name (ARN) that identifies the resource to stop.
5552
5585
  # The supported ARNs are `DatasetImportJobArn`, `PredictorArn`,
5553
- # `PredictorBacktestExportJobArn`, `ForecastArn`, and
5554
- # `ForecastExportJobArn`.
5586
+ # `PredictorBacktestExportJobArn`, `ForecastArn`,
5587
+ # `ForecastExportJobArn`, `ExplainabilityArn`, and
5588
+ # `ExplainabilityExportArn`.
5555
5589
  # @return [String]
5556
5590
  #
5557
5591
  # @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/StopResourceRequest AWS API Documentation
@@ -5562,6 +5596,11 @@ module Aws::ForecastService
5562
5596
  include Aws::Structure
5563
5597
  end
5564
5598
 
5599
+ # <note markdown="1"> This object belongs to the CreatePredictor operation. If you created
5600
+ # your predictor with CreateAutoPredictor, see AdditionalDataset.
5601
+ #
5602
+ # </note>
5603
+ #
5565
5604
  # Describes a supplementary feature of a dataset group. This object is
5566
5605
  # part of the InputDataConfig object. Forecast supports the Weather
5567
5606
  # Index and Holidays built-in featurizations.
@@ -5826,9 +5865,7 @@ module Aws::ForecastService
5826
5865
  #
5827
5866
  # @!attribute [rw] resource_arn
5828
5867
  # The Amazon Resource Name (ARN) that identifies the resource for
5829
- # which to list the tags. Currently, the supported resources are
5830
- # Forecast dataset groups, datasets, dataset import jobs, predictors,
5831
- # forecasts, and forecast export jobs.
5868
+ # which to list the tags.
5832
5869
  # @return [String]
5833
5870
  #
5834
5871
  # @!attribute [rw] tags
@@ -5922,9 +5959,7 @@ module Aws::ForecastService
5922
5959
  #
5923
5960
  # @!attribute [rw] resource_arn
5924
5961
  # The Amazon Resource Name (ARN) that identifies the resource for
5925
- # which to list the tags. Currently, the supported resources are
5926
- # Forecast dataset groups, datasets, dataset import jobs, predictors,
5927
- # forecasts, and forecast exports.
5962
+ # which to list the tags.
5928
5963
  # @return [String]
5929
5964
  #
5930
5965
  # @!attribute [rw] tag_keys
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-forecastservice/customizations'
48
48
  # @!group service
49
49
  module Aws::ForecastService
50
50
 
51
- GEM_VERSION = '1.29.0'
51
+ GEM_VERSION = '1.30.0'
52
52
 
53
53
  end
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.29.0
4
+ version: 1.30.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: 2021-11-30 00:00:00.000000000 Z
11
+ date: 2021-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core