aws-sdk-sagemaker 1.208.0 → 1.209.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: cb2552eb47b69d7b8a632de6766c6a445fa641364aec6d45685cdefdbfae25a4
4
- data.tar.gz: 27f1a9a26b656415c14ecbb3f4560ad5b7932ef082ae87dac5243cc089b4167b
3
+ metadata.gz: 2fc4c836d95ac58a72941e60a2260e0a67496849294ae4e81b7b3552d0edc214
4
+ data.tar.gz: 3bff672a1b751b7d7964025e74e798e6a8a8301ecab0667d1049d2546b60ef23
5
5
  SHA512:
6
- metadata.gz: 96ce0ec15777630d70829b5f4581ed4aee128300970f1c5da2b053852995472c1d01f681ef980bd9ecc0ac891b1b7212d29f236d88ba468fd3c0ae8436fa7337
7
- data.tar.gz: 7acb896667b2e410ec3121f63feb9af908587081ecce4d59b280abf1b6509b7c72ffb3a996a86d73b3e27c6083ba3fc8abcc76700c20f1ce2055c8ef214de0d8
6
+ metadata.gz: 04ef283e2477b94de686cf0d5ae3571b4469f253e85ef1d6689c6da7b86c77e23a5a39429b523cf151e79a57bb0b40f4927f41567825a76a060d962a36021d20
7
+ data.tar.gz: dd8d24e6820d82cb7f3ab46321a1492aad9f7d597734bfe561ab73af8974a5cfc4f51daa2b358dac0ff74d736a45e4231e8691560a3169a923eaab41a86cfb71
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.209.0 (2023-09-08)
5
+ ------------------
6
+
7
+ * Feature - Autopilot APIs will now support holiday featurization for Timeseries models. The models will now hold holiday metadata and should be able to accommodate holiday effect during inference.
8
+
4
9
  1.208.0 (2023-09-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.208.0
1
+ 1.209.0
@@ -1208,7 +1208,8 @@ module Aws::SageMaker
1208
1208
  #
1209
1209
  # `CreateAutoMLJobV2` can manage tabular problem types identical to
1210
1210
  # those of its previous version `CreateAutoMLJob`, as well as
1211
- # non-tabular problem types such as image or text classification.
1211
+ # time-series forecasting, and non-tabular problem types such as image
1212
+ # or text classification.
1212
1213
  #
1213
1214
  # Find guidelines about how to migrate a `CreateAutoMLJob` to
1214
1215
  # `CreateAutoMLJobV2` in [Migrate a CreateAutoMLJob to
@@ -1387,7 +1388,8 @@ module Aws::SageMaker
1387
1388
  #
1388
1389
  # `CreateAutoMLJobV2` can manage tabular problem types identical to
1389
1390
  # those of its previous version `CreateAutoMLJob`, as well as
1390
- # non-tabular problem types such as image or text classification.
1391
+ # time-series forecasting, and non-tabular problem types such as image
1392
+ # or text classification.
1391
1393
  #
1392
1394
  # Find guidelines about how to migrate a `CreateAutoMLJob` to
1393
1395
  # `CreateAutoMLJobV2` in [Migrate a CreateAutoMLJob to
@@ -1581,6 +1583,11 @@ module Aws::SageMaker
1581
1583
  # item_identifier_attribute_name: "ItemIdentifierAttributeName", # required
1582
1584
  # grouping_attribute_names: ["GroupingAttributeName"],
1583
1585
  # },
1586
+ # holiday_config: [
1587
+ # {
1588
+ # country_code: "CountryCode",
1589
+ # },
1590
+ # ],
1584
1591
  # },
1585
1592
  # },
1586
1593
  # role_arn: "RoleArn", # required
@@ -10361,6 +10368,8 @@ module Aws::SageMaker
10361
10368
  # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.time_series_config.item_identifier_attribute_name #=> String
10362
10369
  # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.time_series_config.grouping_attribute_names #=> Array
10363
10370
  # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.time_series_config.grouping_attribute_names[0] #=> String
10371
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.holiday_config #=> Array
10372
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.holiday_config[0].country_code #=> String
10364
10373
  # resp.creation_time #=> Time
10365
10374
  # resp.end_time #=> Time
10366
10375
  # resp.last_modified_time #=> Time
@@ -24132,7 +24141,7 @@ module Aws::SageMaker
24132
24141
  params: params,
24133
24142
  config: config)
24134
24143
  context[:gem_name] = 'aws-sdk-sagemaker'
24135
- context[:gem_version] = '1.208.0'
24144
+ context[:gem_version] = '1.209.0'
24136
24145
  Seahorse::Client::Request.new(handlers, context)
24137
24146
  end
24138
24147
 
@@ -295,6 +295,7 @@ module Aws::SageMaker
295
295
  ContinuousParameterRangeSpecification = Shapes::StructureShape.new(name: 'ContinuousParameterRangeSpecification')
296
296
  ContinuousParameterRanges = Shapes::ListShape.new(name: 'ContinuousParameterRanges')
297
297
  ConvergenceDetected = Shapes::StructureShape.new(name: 'ConvergenceDetected')
298
+ CountryCode = Shapes::StringShape.new(name: 'CountryCode')
298
299
  CreateActionRequest = Shapes::StructureShape.new(name: 'CreateActionRequest')
299
300
  CreateActionResponse = Shapes::StructureShape.new(name: 'CreateActionResponse')
300
301
  CreateAlgorithmInput = Shapes::StructureShape.new(name: 'CreateAlgorithmInput')
@@ -842,6 +843,8 @@ module Aws::SageMaker
842
843
  GroupingAttributeName = Shapes::StringShape.new(name: 'GroupingAttributeName')
843
844
  GroupingAttributeNames = Shapes::ListShape.new(name: 'GroupingAttributeNames')
844
845
  Groups = Shapes::ListShape.new(name: 'Groups')
846
+ HolidayConfig = Shapes::ListShape.new(name: 'HolidayConfig')
847
+ HolidayConfigAttributes = Shapes::StructureShape.new(name: 'HolidayConfigAttributes')
845
848
  HookParameters = Shapes::MapShape.new(name: 'HookParameters')
846
849
  Horovod = Shapes::BooleanShape.new(name: 'Horovod')
847
850
  HubArn = Shapes::StringShape.new(name: 'HubArn')
@@ -5298,6 +5301,11 @@ module Aws::SageMaker
5298
5301
 
5299
5302
  Groups.member = Shapes::ShapeRef.new(shape: Group)
5300
5303
 
5304
+ HolidayConfig.member = Shapes::ShapeRef.new(shape: HolidayConfigAttributes)
5305
+
5306
+ HolidayConfigAttributes.add_member(:country_code, Shapes::ShapeRef.new(shape: CountryCode, location_name: "CountryCode"))
5307
+ HolidayConfigAttributes.struct_class = Types::HolidayConfigAttributes
5308
+
5301
5309
  HookParameters.key = Shapes::ShapeRef.new(shape: ConfigKey)
5302
5310
  HookParameters.value = Shapes::ShapeRef.new(shape: ConfigValue)
5303
5311
 
@@ -8493,6 +8501,7 @@ module Aws::SageMaker
8493
8501
  TimeSeriesForecastingJobConfig.add_member(:forecast_quantiles, Shapes::ShapeRef.new(shape: ForecastQuantiles, location_name: "ForecastQuantiles"))
8494
8502
  TimeSeriesForecastingJobConfig.add_member(:transformations, Shapes::ShapeRef.new(shape: TimeSeriesTransformations, location_name: "Transformations"))
8495
8503
  TimeSeriesForecastingJobConfig.add_member(:time_series_config, Shapes::ShapeRef.new(shape: TimeSeriesConfig, required: true, location_name: "TimeSeriesConfig"))
8504
+ TimeSeriesForecastingJobConfig.add_member(:holiday_config, Shapes::ShapeRef.new(shape: HolidayConfig, location_name: "HolidayConfig"))
8496
8505
  TimeSeriesForecastingJobConfig.struct_class = Types::TimeSeriesForecastingJobConfig
8497
8506
 
8498
8507
  TimeSeriesForecastingSettings.add_member(:status, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "Status"))
@@ -2415,12 +2415,6 @@ module Aws::SageMaker
2415
2415
  # @!attribute [rw] time_series_forecasting_job_config
2416
2416
  # Settings used to configure an AutoML job V2 for a time-series
2417
2417
  # forecasting problem type.
2418
- #
2419
- # <note markdown="1"> The `TimeSeriesForecastingJobConfig` problem type is only available
2420
- # in private beta. Contact Amazon Web Services Support or your account
2421
- # manager to learn more about access privileges.
2422
- #
2423
- # </note>
2424
2418
  # @return [Types::TimeSeriesForecastingJobConfig]
2425
2419
  #
2426
2420
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLProblemTypeConfig AWS API Documentation
@@ -18655,6 +18649,31 @@ module Aws::SageMaker
18655
18649
  include Aws::Structure
18656
18650
  end
18657
18651
 
18652
+ # Stores the holiday featurization attributes applicable to each item of
18653
+ # time-series datasets during the training of a forecasting model. This
18654
+ # allows the model to identify patterns associated with specific
18655
+ # holidays.
18656
+ #
18657
+ # @!attribute [rw] country_code
18658
+ # The country code for the holiday calendar.
18659
+ #
18660
+ # For the list of public holiday calendars supported by AutoML job V2,
18661
+ # see [Country Codes][1]. Use the country code corresponding to the
18662
+ # country of your choice.
18663
+ #
18664
+ #
18665
+ #
18666
+ # [1]: https://docs.aws.amazon.com/forecast/latest/dg/holidays.html#holidays-country-codes
18667
+ # @return [String]
18668
+ #
18669
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HolidayConfigAttributes AWS API Documentation
18670
+ #
18671
+ class HolidayConfigAttributes < Struct.new(
18672
+ :country_code)
18673
+ SENSITIVE = []
18674
+ include Aws::Structure
18675
+ end
18676
+
18658
18677
  # Any dependencies related to hub content, such as scripts, model
18659
18678
  # artifacts, datasets, or notebooks.
18660
18679
  #
@@ -37624,12 +37643,6 @@ module Aws::SageMaker
37624
37643
  # The collection of settings used by an AutoML job V2 for the
37625
37644
  # time-series forecasting problem type.
37626
37645
  #
37627
- # <note markdown="1"> The `TimeSeriesForecastingJobConfig` problem type is only available in
37628
- # private beta. Contact Amazon Web Services Support or your account
37629
- # manager to learn more about access privileges.
37630
- #
37631
- # </note>
37632
- #
37633
37646
  # @!attribute [rw] feature_specification_s3_uri
37634
37647
  # A URL to the Amazon S3 data source containing additional selected
37635
37648
  # features that complement the target, itemID, timestamp, and grouped
@@ -37714,6 +37727,12 @@ module Aws::SageMaker
37714
37727
  # The collection of components that defines the time-series.
37715
37728
  # @return [Types::TimeSeriesConfig]
37716
37729
  #
37730
+ # @!attribute [rw] holiday_config
37731
+ # The collection of holiday featurization attributes used to
37732
+ # incorporate national holiday information into your forecasting
37733
+ # model.
37734
+ # @return [Array<Types::HolidayConfigAttributes>]
37735
+ #
37717
37736
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TimeSeriesForecastingJobConfig AWS API Documentation
37718
37737
  #
37719
37738
  class TimeSeriesForecastingJobConfig < Struct.new(
@@ -37723,7 +37742,8 @@ module Aws::SageMaker
37723
37742
  :forecast_horizon,
37724
37743
  :forecast_quantiles,
37725
37744
  :transformations,
37726
- :time_series_config)
37745
+ :time_series_config,
37746
+ :holiday_config)
37727
37747
  SENSITIVE = []
37728
37748
  include Aws::Structure
37729
37749
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.208.0'
56
+ GEM_VERSION = '1.209.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.208.0
4
+ version: 1.209.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: 2023-09-05 00:00:00.000000000 Z
11
+ date: 2023-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core