aws-sdk-sagemaker 1.191.0 → 1.192.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: c5a11a92ae9b1f7dd4576c7bb6eae1b62aa9a1c0ed7ae60f9e9ed65530576e78
4
- data.tar.gz: 20605cdbe5d1510b493fc76073591c26216eda6e4f87c492a119b07981bde826
3
+ metadata.gz: ea2b0bfd3b4390fa357475a5d054208271cd3aaf4e450e89531bf0f205b22a66
4
+ data.tar.gz: b84a2185dffd514d6f76fa68a05b2f546939b70177779278f88853e7e328be0a
5
5
  SHA512:
6
- metadata.gz: ff5009d9104e86b816c8d1e5c888b5a62685dde25be5409dff164ecefb2f1e12bc3f45d48eb09871d0bd2913235b361230a8dfd13328def19821dc6e30953e4f
7
- data.tar.gz: ae8df2ffe98ba597b35358eb42a32387d2371c05192aa72630445205b11fe68018b1d9f79f52ffa1052139abf3c452fb6dd5b4869da308e9ce294d6f06d0688e
6
+ metadata.gz: d8835cdf47bbb5c4e1b3bbc42cb782b0da023e3cb3790deeb32d6f006c901999aa620e04aea27f688410d70c0fed4efe8d970f592c0b1d9a36b6514f765c5d0c
7
+ data.tar.gz: abe87a3fa189453639cb875bdcd2750775c3f9716ea8fca2803879cfbc3252ed496954e2bd1f53452e4f0a0c9932331c05e80c36e1dfa138dc1a83d720c509e1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.192.0 (2023-06-29)
5
+ ------------------
6
+
7
+ * Feature - Adding support for timeseries forecasting in the CreateAutoMLJobV2 API.
8
+
4
9
  1.191.0 (2023-06-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.191.0
1
+ 1.192.0
@@ -1307,7 +1307,7 @@ module Aws::SageMaker
1307
1307
  # },
1308
1308
  # problem_type: "BinaryClassification", # accepts BinaryClassification, MulticlassClassification, Regression
1309
1309
  # auto_ml_job_objective: {
1310
- # metric_name: "Accuracy", # required, accepts Accuracy, MSE, F1, F1macro, AUC, RMSE, MAE, R2, BalancedAccuracy, Precision, PrecisionMacro, Recall, RecallMacro
1310
+ # metric_name: "Accuracy", # required, accepts Accuracy, MSE, F1, F1macro, AUC, RMSE, MAE, R2, BalancedAccuracy, Precision, PrecisionMacro, Recall, RecallMacro, MAPE, MASE, WAPE, AverageWeightedQuantileLoss
1311
1311
  # },
1312
1312
  # auto_ml_job_config: {
1313
1313
  # completion_criteria: {
@@ -1405,12 +1405,14 @@ module Aws::SageMaker
1405
1405
  # [InputDataConfig][1] attribute in the `CreateAutoMLJob` input
1406
1406
  # parameters. The supported formats depend on the problem type:
1407
1407
  #
1408
- # * For Tabular problem types: `S3Prefix`, `ManifestFile`.
1408
+ # * For tabular problem types: `S3Prefix`, `ManifestFile`.
1409
1409
  #
1410
- # * For ImageClassification: `S3Prefix`, `ManifestFile`,
1410
+ # * For image classification: `S3Prefix`, `ManifestFile`,
1411
1411
  # `AugmentedManifestFile`.
1412
1412
  #
1413
- # * For TextClassification: `S3Prefix`.
1413
+ # * For text classification: `S3Prefix`.
1414
+ #
1415
+ # * For time-series forecasting: `S3Prefix`.
1414
1416
  #
1415
1417
  #
1416
1418
  #
@@ -1470,6 +1472,12 @@ module Aws::SageMaker
1470
1472
  # For jobs created by calling `CreateAutoMLJob`, the validation dataset
1471
1473
  # must be less than 2 GB in size.
1472
1474
  #
1475
+ # <note markdown="1"> This attribute must not be set for the time-series forecasting problem
1476
+ # type, as Autopilot automatically splits the input dataset into
1477
+ # training and validation sets.
1478
+ #
1479
+ # </note>
1480
+ #
1473
1481
  # @return [Types::CreateAutoMLJobV2Response] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1474
1482
  #
1475
1483
  # * {Types::CreateAutoMLJobV2Response#auto_ml_job_arn #auto_ml_job_arn} => String
@@ -1532,6 +1540,33 @@ module Aws::SageMaker
1532
1540
  # target_attribute_name: "TargetAttributeName", # required
1533
1541
  # sample_weight_attribute_name: "SampleWeightAttributeName",
1534
1542
  # },
1543
+ # time_series_forecasting_job_config: {
1544
+ # feature_specification_s3_uri: "S3Uri",
1545
+ # completion_criteria: {
1546
+ # max_candidates: 1,
1547
+ # max_runtime_per_training_job_in_seconds: 1,
1548
+ # max_auto_ml_job_runtime_in_seconds: 1,
1549
+ # },
1550
+ # forecast_frequency: "ForecastFrequency", # required
1551
+ # forecast_horizon: 1, # required
1552
+ # forecast_quantiles: ["ForecastQuantile"],
1553
+ # transformations: {
1554
+ # filling: {
1555
+ # "TransformationAttributeName" => {
1556
+ # "frontfill" => "FillingTransformationValue",
1557
+ # },
1558
+ # },
1559
+ # aggregation: {
1560
+ # "TransformationAttributeName" => "sum", # accepts sum, avg, first, min, max
1561
+ # },
1562
+ # },
1563
+ # time_series_config: { # required
1564
+ # target_attribute_name: "TargetAttributeName", # required
1565
+ # timestamp_attribute_name: "TimestampAttributeName", # required
1566
+ # item_identifier_attribute_name: "ItemIdentifierAttributeName", # required
1567
+ # grouping_attribute_names: ["GroupingAttributeName"],
1568
+ # },
1569
+ # },
1535
1570
  # },
1536
1571
  # role_arn: "RoleArn", # required
1537
1572
  # tags: [
@@ -1549,7 +1584,7 @@ module Aws::SageMaker
1549
1584
  # },
1550
1585
  # },
1551
1586
  # auto_ml_job_objective: {
1552
- # metric_name: "Accuracy", # required, accepts Accuracy, MSE, F1, F1macro, AUC, RMSE, MAE, R2, BalancedAccuracy, Precision, PrecisionMacro, Recall, RecallMacro
1587
+ # metric_name: "Accuracy", # required, accepts Accuracy, MSE, F1, F1macro, AUC, RMSE, MAE, R2, BalancedAccuracy, Precision, PrecisionMacro, Recall, RecallMacro, MAPE, MASE, WAPE, AverageWeightedQuantileLoss
1553
1588
  # },
1554
1589
  # model_deploy_config: {
1555
1590
  # auto_generate_endpoint_name: false,
@@ -10091,7 +10126,7 @@ module Aws::SageMaker
10091
10126
  # resp.output_data_config.kms_key_id #=> String
10092
10127
  # resp.output_data_config.s3_output_path #=> String
10093
10128
  # resp.role_arn #=> String
10094
- # resp.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
10129
+ # resp.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10095
10130
  # resp.problem_type #=> String, one of "BinaryClassification", "MulticlassClassification", "Regression"
10096
10131
  # resp.auto_ml_job_config.completion_criteria.max_candidates #=> Integer
10097
10132
  # resp.auto_ml_job_config.completion_criteria.max_runtime_per_training_job_in_seconds #=> Integer
@@ -10116,9 +10151,9 @@ module Aws::SageMaker
10116
10151
  # resp.partial_failure_reasons[0].partial_failure_message #=> String
10117
10152
  # resp.best_candidate.candidate_name #=> String
10118
10153
  # resp.best_candidate.final_auto_ml_job_objective_metric.type #=> String, one of "Maximize", "Minimize"
10119
- # resp.best_candidate.final_auto_ml_job_objective_metric.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
10154
+ # resp.best_candidate.final_auto_ml_job_objective_metric.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10120
10155
  # resp.best_candidate.final_auto_ml_job_objective_metric.value #=> Float
10121
- # resp.best_candidate.final_auto_ml_job_objective_metric.standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
10156
+ # resp.best_candidate.final_auto_ml_job_objective_metric.standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10122
10157
  # resp.best_candidate.objective_status #=> String, one of "Succeeded", "Pending", "Failed"
10123
10158
  # resp.best_candidate.candidate_steps #=> Array
10124
10159
  # resp.best_candidate.candidate_steps[0].candidate_step_type #=> String, one of "AWS::SageMaker::TrainingJob", "AWS::SageMaker::TransformJob", "AWS::SageMaker::ProcessingJob"
@@ -10136,11 +10171,12 @@ module Aws::SageMaker
10136
10171
  # resp.best_candidate.failure_reason #=> String
10137
10172
  # resp.best_candidate.candidate_properties.candidate_artifact_locations.explainability #=> String
10138
10173
  # resp.best_candidate.candidate_properties.candidate_artifact_locations.model_insights #=> String
10174
+ # resp.best_candidate.candidate_properties.candidate_artifact_locations.backtest_results #=> String
10139
10175
  # resp.best_candidate.candidate_properties.candidate_metrics #=> Array
10140
- # resp.best_candidate.candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
10176
+ # resp.best_candidate.candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10141
10177
  # resp.best_candidate.candidate_properties.candidate_metrics[0].value #=> Float
10142
10178
  # resp.best_candidate.candidate_properties.candidate_metrics[0].set #=> String, one of "Train", "Validation", "Test"
10143
- # resp.best_candidate.candidate_properties.candidate_metrics[0].standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "LogLoss", "InferenceLatency"
10179
+ # resp.best_candidate.candidate_properties.candidate_metrics[0].standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "LogLoss", "InferenceLatency", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10144
10180
  # resp.best_candidate.inference_container_definitions #=> Hash
10145
10181
  # resp.best_candidate.inference_container_definitions["AutoMLProcessingUnit"] #=> Array
10146
10182
  # resp.best_candidate.inference_container_definitions["AutoMLProcessingUnit"][0].image #=> String
@@ -10148,11 +10184,11 @@ module Aws::SageMaker
10148
10184
  # resp.best_candidate.inference_container_definitions["AutoMLProcessingUnit"][0].environment #=> Hash
10149
10185
  # resp.best_candidate.inference_container_definitions["AutoMLProcessingUnit"][0].environment["EnvironmentKey"] #=> String
10150
10186
  # resp.auto_ml_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
10151
- # resp.auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError", "GeneratingModelInsightsReport", "ModelInsightsError", "TrainingModels"
10187
+ # resp.auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError", "GeneratingModelInsightsReport", "ModelInsightsError", "TrainingModels", "PreTraining"
10152
10188
  # resp.generate_candidate_definitions_only #=> Boolean
10153
10189
  # resp.auto_ml_job_artifacts.candidate_definition_notebook_location #=> String
10154
10190
  # resp.auto_ml_job_artifacts.data_exploration_notebook_location #=> String
10155
- # resp.resolved_attributes.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
10191
+ # resp.resolved_attributes.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10156
10192
  # resp.resolved_attributes.problem_type #=> String, one of "BinaryClassification", "MulticlassClassification", "Regression"
10157
10193
  # resp.resolved_attributes.completion_criteria.max_candidates #=> Integer
10158
10194
  # resp.resolved_attributes.completion_criteria.max_runtime_per_training_job_in_seconds #=> Integer
@@ -10225,7 +10261,7 @@ module Aws::SageMaker
10225
10261
  # resp.output_data_config.kms_key_id #=> String
10226
10262
  # resp.output_data_config.s3_output_path #=> String
10227
10263
  # resp.role_arn #=> String
10228
- # resp.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
10264
+ # resp.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10229
10265
  # resp.auto_ml_problem_type_config.image_classification_job_config.completion_criteria.max_candidates #=> Integer
10230
10266
  # resp.auto_ml_problem_type_config.image_classification_job_config.completion_criteria.max_runtime_per_training_job_in_seconds #=> Integer
10231
10267
  # resp.auto_ml_problem_type_config.image_classification_job_config.completion_criteria.max_auto_ml_job_runtime_in_seconds #=> Integer
@@ -10246,6 +10282,24 @@ module Aws::SageMaker
10246
10282
  # resp.auto_ml_problem_type_config.tabular_job_config.problem_type #=> String, one of "BinaryClassification", "MulticlassClassification", "Regression"
10247
10283
  # resp.auto_ml_problem_type_config.tabular_job_config.target_attribute_name #=> String
10248
10284
  # resp.auto_ml_problem_type_config.tabular_job_config.sample_weight_attribute_name #=> String
10285
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.feature_specification_s3_uri #=> String
10286
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.completion_criteria.max_candidates #=> Integer
10287
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.completion_criteria.max_runtime_per_training_job_in_seconds #=> Integer
10288
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.completion_criteria.max_auto_ml_job_runtime_in_seconds #=> Integer
10289
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.forecast_frequency #=> String
10290
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.forecast_horizon #=> Integer
10291
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.forecast_quantiles #=> Array
10292
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.forecast_quantiles[0] #=> String
10293
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.transformations.filling #=> Hash
10294
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.transformations.filling["TransformationAttributeName"] #=> Hash
10295
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.transformations.filling["TransformationAttributeName"]["FillingType"] #=> String
10296
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.transformations.aggregation #=> Hash
10297
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.transformations.aggregation["TransformationAttributeName"] #=> String, one of "sum", "avg", "first", "min", "max"
10298
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.time_series_config.target_attribute_name #=> String
10299
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.time_series_config.timestamp_attribute_name #=> String
10300
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.time_series_config.item_identifier_attribute_name #=> String
10301
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.time_series_config.grouping_attribute_names #=> Array
10302
+ # resp.auto_ml_problem_type_config.time_series_forecasting_job_config.time_series_config.grouping_attribute_names[0] #=> String
10249
10303
  # resp.creation_time #=> Time
10250
10304
  # resp.end_time #=> Time
10251
10305
  # resp.last_modified_time #=> Time
@@ -10254,9 +10308,9 @@ module Aws::SageMaker
10254
10308
  # resp.partial_failure_reasons[0].partial_failure_message #=> String
10255
10309
  # resp.best_candidate.candidate_name #=> String
10256
10310
  # resp.best_candidate.final_auto_ml_job_objective_metric.type #=> String, one of "Maximize", "Minimize"
10257
- # resp.best_candidate.final_auto_ml_job_objective_metric.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
10311
+ # resp.best_candidate.final_auto_ml_job_objective_metric.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10258
10312
  # resp.best_candidate.final_auto_ml_job_objective_metric.value #=> Float
10259
- # resp.best_candidate.final_auto_ml_job_objective_metric.standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
10313
+ # resp.best_candidate.final_auto_ml_job_objective_metric.standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10260
10314
  # resp.best_candidate.objective_status #=> String, one of "Succeeded", "Pending", "Failed"
10261
10315
  # resp.best_candidate.candidate_steps #=> Array
10262
10316
  # resp.best_candidate.candidate_steps[0].candidate_step_type #=> String, one of "AWS::SageMaker::TrainingJob", "AWS::SageMaker::TransformJob", "AWS::SageMaker::ProcessingJob"
@@ -10274,11 +10328,12 @@ module Aws::SageMaker
10274
10328
  # resp.best_candidate.failure_reason #=> String
10275
10329
  # resp.best_candidate.candidate_properties.candidate_artifact_locations.explainability #=> String
10276
10330
  # resp.best_candidate.candidate_properties.candidate_artifact_locations.model_insights #=> String
10331
+ # resp.best_candidate.candidate_properties.candidate_artifact_locations.backtest_results #=> String
10277
10332
  # resp.best_candidate.candidate_properties.candidate_metrics #=> Array
10278
- # resp.best_candidate.candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
10333
+ # resp.best_candidate.candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10279
10334
  # resp.best_candidate.candidate_properties.candidate_metrics[0].value #=> Float
10280
10335
  # resp.best_candidate.candidate_properties.candidate_metrics[0].set #=> String, one of "Train", "Validation", "Test"
10281
- # resp.best_candidate.candidate_properties.candidate_metrics[0].standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "LogLoss", "InferenceLatency"
10336
+ # resp.best_candidate.candidate_properties.candidate_metrics[0].standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "LogLoss", "InferenceLatency", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10282
10337
  # resp.best_candidate.inference_container_definitions #=> Hash
10283
10338
  # resp.best_candidate.inference_container_definitions["AutoMLProcessingUnit"] #=> Array
10284
10339
  # resp.best_candidate.inference_container_definitions["AutoMLProcessingUnit"][0].image #=> String
@@ -10286,7 +10341,7 @@ module Aws::SageMaker
10286
10341
  # resp.best_candidate.inference_container_definitions["AutoMLProcessingUnit"][0].environment #=> Hash
10287
10342
  # resp.best_candidate.inference_container_definitions["AutoMLProcessingUnit"][0].environment["EnvironmentKey"] #=> String
10288
10343
  # resp.auto_ml_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
10289
- # resp.auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError", "GeneratingModelInsightsReport", "ModelInsightsError", "TrainingModels"
10344
+ # resp.auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError", "GeneratingModelInsightsReport", "ModelInsightsError", "TrainingModels", "PreTraining"
10290
10345
  # resp.model_deploy_config.auto_generate_endpoint_name #=> Boolean
10291
10346
  # resp.model_deploy_config.endpoint_name #=> String
10292
10347
  # resp.model_deploy_result.endpoint_name #=> String
@@ -10299,12 +10354,12 @@ module Aws::SageMaker
10299
10354
  # resp.security_config.vpc_config.subnets[0] #=> String
10300
10355
  # resp.auto_ml_job_artifacts.candidate_definition_notebook_location #=> String
10301
10356
  # resp.auto_ml_job_artifacts.data_exploration_notebook_location #=> String
10302
- # resp.resolved_attributes.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
10357
+ # resp.resolved_attributes.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
10303
10358
  # resp.resolved_attributes.completion_criteria.max_candidates #=> Integer
10304
10359
  # resp.resolved_attributes.completion_criteria.max_runtime_per_training_job_in_seconds #=> Integer
10305
10360
  # resp.resolved_attributes.completion_criteria.max_auto_ml_job_runtime_in_seconds #=> Integer
10306
10361
  # resp.resolved_attributes.auto_ml_problem_type_resolved_attributes.tabular_resolved_attributes.problem_type #=> String, one of "BinaryClassification", "MulticlassClassification", "Regression"
10307
- # resp.auto_ml_problem_type_config_name #=> String, one of "ImageClassification", "TextClassification", "Tabular"
10362
+ # resp.auto_ml_problem_type_config_name #=> String, one of "ImageClassification", "TextClassification", "Tabular", "TimeSeriesForecasting"
10308
10363
  #
10309
10364
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAutoMLJobV2 AWS API Documentation
10310
10365
  #
@@ -15454,7 +15509,7 @@ module Aws::SageMaker
15454
15509
  # resp.auto_ml_job_summaries[0].auto_ml_job_name #=> String
15455
15510
  # resp.auto_ml_job_summaries[0].auto_ml_job_arn #=> String
15456
15511
  # resp.auto_ml_job_summaries[0].auto_ml_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
15457
- # resp.auto_ml_job_summaries[0].auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError", "GeneratingModelInsightsReport", "ModelInsightsError", "TrainingModels"
15512
+ # resp.auto_ml_job_summaries[0].auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError", "GeneratingModelInsightsReport", "ModelInsightsError", "TrainingModels", "PreTraining"
15458
15513
  # resp.auto_ml_job_summaries[0].creation_time #=> Time
15459
15514
  # resp.auto_ml_job_summaries[0].end_time #=> Time
15460
15515
  # resp.auto_ml_job_summaries[0].last_modified_time #=> Time
@@ -15521,9 +15576,9 @@ module Aws::SageMaker
15521
15576
  # resp.candidates #=> Array
15522
15577
  # resp.candidates[0].candidate_name #=> String
15523
15578
  # resp.candidates[0].final_auto_ml_job_objective_metric.type #=> String, one of "Maximize", "Minimize"
15524
- # resp.candidates[0].final_auto_ml_job_objective_metric.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
15579
+ # resp.candidates[0].final_auto_ml_job_objective_metric.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
15525
15580
  # resp.candidates[0].final_auto_ml_job_objective_metric.value #=> Float
15526
- # resp.candidates[0].final_auto_ml_job_objective_metric.standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
15581
+ # resp.candidates[0].final_auto_ml_job_objective_metric.standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
15527
15582
  # resp.candidates[0].objective_status #=> String, one of "Succeeded", "Pending", "Failed"
15528
15583
  # resp.candidates[0].candidate_steps #=> Array
15529
15584
  # resp.candidates[0].candidate_steps[0].candidate_step_type #=> String, one of "AWS::SageMaker::TrainingJob", "AWS::SageMaker::TransformJob", "AWS::SageMaker::ProcessingJob"
@@ -15541,11 +15596,12 @@ module Aws::SageMaker
15541
15596
  # resp.candidates[0].failure_reason #=> String
15542
15597
  # resp.candidates[0].candidate_properties.candidate_artifact_locations.explainability #=> String
15543
15598
  # resp.candidates[0].candidate_properties.candidate_artifact_locations.model_insights #=> String
15599
+ # resp.candidates[0].candidate_properties.candidate_artifact_locations.backtest_results #=> String
15544
15600
  # resp.candidates[0].candidate_properties.candidate_metrics #=> Array
15545
- # resp.candidates[0].candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro"
15601
+ # resp.candidates[0].candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
15546
15602
  # resp.candidates[0].candidate_properties.candidate_metrics[0].value #=> Float
15547
15603
  # resp.candidates[0].candidate_properties.candidate_metrics[0].set #=> String, one of "Train", "Validation", "Test"
15548
- # resp.candidates[0].candidate_properties.candidate_metrics[0].standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "LogLoss", "InferenceLatency"
15604
+ # resp.candidates[0].candidate_properties.candidate_metrics[0].standard_metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC", "RMSE", "MAE", "R2", "BalancedAccuracy", "Precision", "PrecisionMacro", "Recall", "RecallMacro", "LogLoss", "InferenceLatency", "MAPE", "MASE", "WAPE", "AverageWeightedQuantileLoss"
15549
15605
  # resp.candidates[0].inference_container_definitions #=> Hash
15550
15606
  # resp.candidates[0].inference_container_definitions["AutoMLProcessingUnit"] #=> Array
15551
15607
  # resp.candidates[0].inference_container_definitions["AutoMLProcessingUnit"][0].image #=> String
@@ -23762,7 +23818,7 @@ module Aws::SageMaker
23762
23818
  params: params,
23763
23819
  config: config)
23764
23820
  context[:gem_name] = 'aws-sdk-sagemaker'
23765
- context[:gem_version] = '1.191.0'
23821
+ context[:gem_version] = '1.192.0'
23766
23822
  Seahorse::Client::Request.new(handlers, context)
23767
23823
  end
23768
23824
 
@@ -29,6 +29,8 @@ module Aws::SageMaker
29
29
  AdditionalInferenceSpecifications = Shapes::ListShape.new(name: 'AdditionalInferenceSpecifications')
30
30
  AgentVersion = Shapes::StructureShape.new(name: 'AgentVersion')
31
31
  AgentVersions = Shapes::ListShape.new(name: 'AgentVersions')
32
+ AggregationTransformationValue = Shapes::StringShape.new(name: 'AggregationTransformationValue')
33
+ AggregationTransformations = Shapes::MapShape.new(name: 'AggregationTransformations')
32
34
  Alarm = Shapes::StructureShape.new(name: 'Alarm')
33
35
  AlarmList = Shapes::ListShape.new(name: 'AlarmList')
34
36
  AlarmName = Shapes::StringShape.new(name: 'AlarmName')
@@ -152,6 +154,7 @@ module Aws::SageMaker
152
154
  Autotune = Shapes::StructureShape.new(name: 'Autotune')
153
155
  AutotuneMode = Shapes::StringShape.new(name: 'AutotuneMode')
154
156
  AwsManagedHumanLoopRequestSource = Shapes::StringShape.new(name: 'AwsManagedHumanLoopRequestSource')
157
+ BacktestResultsLocation = Shapes::StringShape.new(name: 'BacktestResultsLocation')
155
158
  BatchDataCaptureConfig = Shapes::StructureShape.new(name: 'BatchDataCaptureConfig')
156
159
  BatchDescribeModelPackageError = Shapes::StructureShape.new(name: 'BatchDescribeModelPackageError')
157
160
  BatchDescribeModelPackageErrorMap = Shapes::MapShape.new(name: 'BatchDescribeModelPackageErrorMap')
@@ -781,6 +784,10 @@ module Aws::SageMaker
781
784
  FileSystemDataSource = Shapes::StructureShape.new(name: 'FileSystemDataSource')
782
785
  FileSystemId = Shapes::StringShape.new(name: 'FileSystemId')
783
786
  FileSystemType = Shapes::StringShape.new(name: 'FileSystemType')
787
+ FillingTransformationMap = Shapes::MapShape.new(name: 'FillingTransformationMap')
788
+ FillingTransformationValue = Shapes::StringShape.new(name: 'FillingTransformationValue')
789
+ FillingTransformations = Shapes::MapShape.new(name: 'FillingTransformations')
790
+ FillingType = Shapes::StringShape.new(name: 'FillingType')
784
791
  Filter = Shapes::StructureShape.new(name: 'Filter')
785
792
  FilterList = Shapes::ListShape.new(name: 'FilterList')
786
793
  FilterValue = Shapes::StringShape.new(name: 'FilterValue')
@@ -801,6 +808,10 @@ module Aws::SageMaker
801
808
  FlowDefinitionTaskKeywords = Shapes::ListShape.new(name: 'FlowDefinitionTaskKeywords')
802
809
  FlowDefinitionTaskTimeLimitInSeconds = Shapes::IntegerShape.new(name: 'FlowDefinitionTaskTimeLimitInSeconds')
803
810
  FlowDefinitionTaskTitle = Shapes::StringShape.new(name: 'FlowDefinitionTaskTitle')
811
+ ForecastFrequency = Shapes::StringShape.new(name: 'ForecastFrequency')
812
+ ForecastHorizon = Shapes::IntegerShape.new(name: 'ForecastHorizon')
813
+ ForecastQuantile = Shapes::StringShape.new(name: 'ForecastQuantile')
814
+ ForecastQuantiles = Shapes::ListShape.new(name: 'ForecastQuantiles')
804
815
  Framework = Shapes::StringShape.new(name: 'Framework')
805
816
  FrameworkVersion = Shapes::StringShape.new(name: 'FrameworkVersion')
806
817
  GenerateCandidateDefinitionsOnly = Shapes::BooleanShape.new(name: 'GenerateCandidateDefinitionsOnly')
@@ -818,6 +829,8 @@ module Aws::SageMaker
818
829
  GitConfigForUpdate = Shapes::StructureShape.new(name: 'GitConfigForUpdate')
819
830
  GitConfigUrl = Shapes::StringShape.new(name: 'GitConfigUrl')
820
831
  Group = Shapes::StringShape.new(name: 'Group')
832
+ GroupingAttributeName = Shapes::StringShape.new(name: 'GroupingAttributeName')
833
+ GroupingAttributeNames = Shapes::ListShape.new(name: 'GroupingAttributeNames')
821
834
  Groups = Shapes::ListShape.new(name: 'Groups')
822
835
  HookParameters = Shapes::MapShape.new(name: 'HookParameters')
823
836
  Horovod = Shapes::BooleanShape.new(name: 'Horovod')
@@ -972,6 +985,7 @@ module Aws::SageMaker
972
985
  InvocationsMaxRetries = Shapes::IntegerShape.new(name: 'InvocationsMaxRetries')
973
986
  InvocationsTimeoutInSeconds = Shapes::IntegerShape.new(name: 'InvocationsTimeoutInSeconds')
974
987
  IotRoleAlias = Shapes::StringShape.new(name: 'IotRoleAlias')
988
+ ItemIdentifierAttributeName = Shapes::StringShape.new(name: 'ItemIdentifierAttributeName')
975
989
  JobDurationInSeconds = Shapes::IntegerShape.new(name: 'JobDurationInSeconds')
976
990
  JobReferenceCode = Shapes::StringShape.new(name: 'JobReferenceCode')
977
991
  JobReferenceCodeContains = Shapes::StringShape.new(name: 'JobReferenceCodeContains')
@@ -1829,8 +1843,12 @@ module Aws::SageMaker
1829
1843
  TerminationWaitInSeconds = Shapes::IntegerShape.new(name: 'TerminationWaitInSeconds')
1830
1844
  TextClassificationJobConfig = Shapes::StructureShape.new(name: 'TextClassificationJobConfig')
1831
1845
  ThingName = Shapes::StringShape.new(name: 'ThingName')
1846
+ TimeSeriesConfig = Shapes::StructureShape.new(name: 'TimeSeriesConfig')
1847
+ TimeSeriesForecastingJobConfig = Shapes::StructureShape.new(name: 'TimeSeriesForecastingJobConfig')
1832
1848
  TimeSeriesForecastingSettings = Shapes::StructureShape.new(name: 'TimeSeriesForecastingSettings')
1849
+ TimeSeriesTransformations = Shapes::StructureShape.new(name: 'TimeSeriesTransformations')
1833
1850
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
1851
+ TimestampAttributeName = Shapes::StringShape.new(name: 'TimestampAttributeName')
1834
1852
  TrafficDurationInSeconds = Shapes::IntegerShape.new(name: 'TrafficDurationInSeconds')
1835
1853
  TrafficPattern = Shapes::StructureShape.new(name: 'TrafficPattern')
1836
1854
  TrafficRoutingConfig = Shapes::StructureShape.new(name: 'TrafficRoutingConfig')
@@ -1884,6 +1902,7 @@ module Aws::SageMaker
1884
1902
  TransformOutput = Shapes::StructureShape.new(name: 'TransformOutput')
1885
1903
  TransformResources = Shapes::StructureShape.new(name: 'TransformResources')
1886
1904
  TransformS3DataSource = Shapes::StructureShape.new(name: 'TransformS3DataSource')
1905
+ TransformationAttributeName = Shapes::StringShape.new(name: 'TransformationAttributeName')
1887
1906
  Trial = Shapes::StructureShape.new(name: 'Trial')
1888
1907
  TrialArn = Shapes::StringShape.new(name: 'TrialArn')
1889
1908
  TrialComponent = Shapes::StructureShape.new(name: 'TrialComponent')
@@ -2084,6 +2103,9 @@ module Aws::SageMaker
2084
2103
 
2085
2104
  AgentVersions.member = Shapes::ShapeRef.new(shape: AgentVersion)
2086
2105
 
2106
+ AggregationTransformations.key = Shapes::ShapeRef.new(shape: TransformationAttributeName)
2107
+ AggregationTransformations.value = Shapes::ShapeRef.new(shape: AggregationTransformationValue)
2108
+
2087
2109
  Alarm.add_member(:alarm_name, Shapes::ShapeRef.new(shape: AlarmName, location_name: "AlarmName"))
2088
2110
  Alarm.struct_class = Types::Alarm
2089
2111
 
@@ -2344,10 +2366,12 @@ module Aws::SageMaker
2344
2366
  AutoMLProblemTypeConfig.add_member(:image_classification_job_config, Shapes::ShapeRef.new(shape: ImageClassificationJobConfig, location_name: "ImageClassificationJobConfig"))
2345
2367
  AutoMLProblemTypeConfig.add_member(:text_classification_job_config, Shapes::ShapeRef.new(shape: TextClassificationJobConfig, location_name: "TextClassificationJobConfig"))
2346
2368
  AutoMLProblemTypeConfig.add_member(:tabular_job_config, Shapes::ShapeRef.new(shape: TabularJobConfig, location_name: "TabularJobConfig"))
2369
+ AutoMLProblemTypeConfig.add_member(:time_series_forecasting_job_config, Shapes::ShapeRef.new(shape: TimeSeriesForecastingJobConfig, location_name: "TimeSeriesForecastingJobConfig"))
2347
2370
  AutoMLProblemTypeConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2348
2371
  AutoMLProblemTypeConfig.add_member_subclass(:image_classification_job_config, Types::AutoMLProblemTypeConfig::ImageClassificationJobConfig)
2349
2372
  AutoMLProblemTypeConfig.add_member_subclass(:text_classification_job_config, Types::AutoMLProblemTypeConfig::TextClassificationJobConfig)
2350
2373
  AutoMLProblemTypeConfig.add_member_subclass(:tabular_job_config, Types::AutoMLProblemTypeConfig::TabularJobConfig)
2374
+ AutoMLProblemTypeConfig.add_member_subclass(:time_series_forecasting_job_config, Types::AutoMLProblemTypeConfig::TimeSeriesForecastingJobConfig)
2351
2375
  AutoMLProblemTypeConfig.add_member_subclass(:unknown, Types::AutoMLProblemTypeConfig::Unknown)
2352
2376
  AutoMLProblemTypeConfig.struct_class = Types::AutoMLProblemTypeConfig
2353
2377
 
@@ -2448,6 +2472,7 @@ module Aws::SageMaker
2448
2472
 
2449
2473
  CandidateArtifactLocations.add_member(:explainability, Shapes::ShapeRef.new(shape: ExplainabilityLocation, required: true, location_name: "Explainability"))
2450
2474
  CandidateArtifactLocations.add_member(:model_insights, Shapes::ShapeRef.new(shape: ModelInsightsLocation, location_name: "ModelInsights"))
2475
+ CandidateArtifactLocations.add_member(:backtest_results, Shapes::ShapeRef.new(shape: BacktestResultsLocation, location_name: "BacktestResults"))
2451
2476
  CandidateArtifactLocations.struct_class = Types::CandidateArtifactLocations
2452
2477
 
2453
2478
  CandidateGenerationConfig.add_member(:algorithms_config, Shapes::ShapeRef.new(shape: AutoMLAlgorithmsConfig, location_name: "AlgorithmsConfig"))
@@ -5102,6 +5127,12 @@ module Aws::SageMaker
5102
5127
  FileSystemDataSource.add_member(:directory_path, Shapes::ShapeRef.new(shape: DirectoryPath, required: true, location_name: "DirectoryPath"))
5103
5128
  FileSystemDataSource.struct_class = Types::FileSystemDataSource
5104
5129
 
5130
+ FillingTransformationMap.key = Shapes::ShapeRef.new(shape: FillingType)
5131
+ FillingTransformationMap.value = Shapes::ShapeRef.new(shape: FillingTransformationValue)
5132
+
5133
+ FillingTransformations.key = Shapes::ShapeRef.new(shape: TransformationAttributeName)
5134
+ FillingTransformations.value = Shapes::ShapeRef.new(shape: FillingTransformationMap)
5135
+
5105
5136
  Filter.add_member(:name, Shapes::ShapeRef.new(shape: ResourcePropertyName, required: true, location_name: "Name"))
5106
5137
  Filter.add_member(:operator, Shapes::ShapeRef.new(shape: Operator, location_name: "Operator"))
5107
5138
  Filter.add_member(:value, Shapes::ShapeRef.new(shape: FilterValue, location_name: "Value"))
@@ -5137,6 +5168,8 @@ module Aws::SageMaker
5137
5168
 
5138
5169
  FlowDefinitionTaskKeywords.member = Shapes::ShapeRef.new(shape: FlowDefinitionTaskKeyword)
5139
5170
 
5171
+ ForecastQuantiles.member = Shapes::ShapeRef.new(shape: ForecastQuantile)
5172
+
5140
5173
  GetDeviceFleetReportRequest.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "DeviceFleetName"))
5141
5174
  GetDeviceFleetReportRequest.struct_class = Types::GetDeviceFleetReportRequest
5142
5175
 
@@ -5183,6 +5216,8 @@ module Aws::SageMaker
5183
5216
  GitConfigForUpdate.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
5184
5217
  GitConfigForUpdate.struct_class = Types::GitConfigForUpdate
5185
5218
 
5219
+ GroupingAttributeNames.member = Shapes::ShapeRef.new(shape: GroupingAttributeName)
5220
+
5186
5221
  Groups.member = Shapes::ShapeRef.new(shape: Group)
5187
5222
 
5188
5223
  HookParameters.key = Shapes::ShapeRef.new(shape: ConfigKey)
@@ -8290,10 +8325,29 @@ module Aws::SageMaker
8290
8325
  TextClassificationJobConfig.add_member(:target_label_column, Shapes::ShapeRef.new(shape: TargetLabelColumn, location_name: "TargetLabelColumn"))
8291
8326
  TextClassificationJobConfig.struct_class = Types::TextClassificationJobConfig
8292
8327
 
8328
+ TimeSeriesConfig.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
8329
+ TimeSeriesConfig.add_member(:timestamp_attribute_name, Shapes::ShapeRef.new(shape: TimestampAttributeName, required: true, location_name: "TimestampAttributeName"))
8330
+ TimeSeriesConfig.add_member(:item_identifier_attribute_name, Shapes::ShapeRef.new(shape: ItemIdentifierAttributeName, required: true, location_name: "ItemIdentifierAttributeName"))
8331
+ TimeSeriesConfig.add_member(:grouping_attribute_names, Shapes::ShapeRef.new(shape: GroupingAttributeNames, location_name: "GroupingAttributeNames"))
8332
+ TimeSeriesConfig.struct_class = Types::TimeSeriesConfig
8333
+
8334
+ TimeSeriesForecastingJobConfig.add_member(:feature_specification_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "FeatureSpecificationS3Uri"))
8335
+ TimeSeriesForecastingJobConfig.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
8336
+ TimeSeriesForecastingJobConfig.add_member(:forecast_frequency, Shapes::ShapeRef.new(shape: ForecastFrequency, required: true, location_name: "ForecastFrequency"))
8337
+ TimeSeriesForecastingJobConfig.add_member(:forecast_horizon, Shapes::ShapeRef.new(shape: ForecastHorizon, required: true, location_name: "ForecastHorizon"))
8338
+ TimeSeriesForecastingJobConfig.add_member(:forecast_quantiles, Shapes::ShapeRef.new(shape: ForecastQuantiles, location_name: "ForecastQuantiles"))
8339
+ TimeSeriesForecastingJobConfig.add_member(:transformations, Shapes::ShapeRef.new(shape: TimeSeriesTransformations, location_name: "Transformations"))
8340
+ TimeSeriesForecastingJobConfig.add_member(:time_series_config, Shapes::ShapeRef.new(shape: TimeSeriesConfig, required: true, location_name: "TimeSeriesConfig"))
8341
+ TimeSeriesForecastingJobConfig.struct_class = Types::TimeSeriesForecastingJobConfig
8342
+
8293
8343
  TimeSeriesForecastingSettings.add_member(:status, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "Status"))
8294
8344
  TimeSeriesForecastingSettings.add_member(:amazon_forecast_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "AmazonForecastRoleArn"))
8295
8345
  TimeSeriesForecastingSettings.struct_class = Types::TimeSeriesForecastingSettings
8296
8346
 
8347
+ TimeSeriesTransformations.add_member(:filling, Shapes::ShapeRef.new(shape: FillingTransformations, location_name: "Filling"))
8348
+ TimeSeriesTransformations.add_member(:aggregation, Shapes::ShapeRef.new(shape: AggregationTransformations, location_name: "Aggregation"))
8349
+ TimeSeriesTransformations.struct_class = Types::TimeSeriesTransformations
8350
+
8297
8351
  TrafficPattern.add_member(:traffic_type, Shapes::ShapeRef.new(shape: TrafficType, location_name: "TrafficType"))
8298
8352
  TrafficPattern.add_member(:phases, Shapes::ShapeRef.new(shape: Phases, location_name: "Phases"))
8299
8353
  TrafficPattern.struct_class = Types::TrafficPattern
@@ -2086,20 +2086,29 @@ module Aws::SageMaker
2086
2086
  # The type of channel. Defines whether the data are used for training
2087
2087
  # or validation. The default value is `training`. Channels for
2088
2088
  # `training` and `validation` must share the same `ContentType`
2089
+ #
2090
+ # <note markdown="1"> The type of channel defaults to `training` for the time-series
2091
+ # forecasting problem type.
2092
+ #
2093
+ # </note>
2089
2094
  # @return [String]
2090
2095
  #
2091
2096
  # @!attribute [rw] content_type
2092
2097
  # The content type of the data from the input source. The following
2093
2098
  # are the allowed content types for different problems:
2094
2099
  #
2095
- # * For Tabular problem types: `text/csv;header=present` or
2100
+ # * For tabular problem types: `text/csv;header=present` or
2096
2101
  # `x-application/vnd.amazon+parquet`. The default value is
2097
2102
  # `text/csv;header=present`.
2098
2103
  #
2099
- # * For ImageClassification: `image/png`, `image/jpeg`, or `image/*`.
2104
+ # * For image classification: `image/png`, `image/jpeg`, or `image/*`.
2100
2105
  # The default value is `image/*`.
2101
2106
  #
2102
- # * For TextClassification: `text/csv;header=present` or
2107
+ # * For text classification: `text/csv;header=present` or
2108
+ # `x-application/vnd.amazon+parquet`. The default value is
2109
+ # `text/csv;header=present`.
2110
+ #
2111
+ # * For time-series forecasting: `text/csv;header=present` or
2103
2112
  # `x-application/vnd.amazon+parquet`. The default value is
2104
2113
  # `text/csv;header=present`.
2105
2114
  # @return [String]
@@ -2132,8 +2141,9 @@ module Aws::SageMaker
2132
2141
  # @!attribute [rw] max_candidates
2133
2142
  # The maximum number of times a training job is allowed to run.
2134
2143
  #
2135
- # For job V2s (jobs created by calling `CreateAutoMLJobV2`), the
2136
- # supported value is 1.
2144
+ # For text and image classification, as well as time-series
2145
+ # forecasting problem types, the supported value is 1. For tabular
2146
+ # problem types, the maximum value is 750.
2137
2147
  # @return [Integer]
2138
2148
  #
2139
2149
  # @!attribute [rw] max_runtime_per_training_job_in_seconds
@@ -2261,6 +2271,9 @@ module Aws::SageMaker
2261
2271
  #
2262
2272
  # * For image or text classification problem types: `Accuracy`
2263
2273
  #
2274
+ # * For time-series forecasting problem types:
2275
+ # `AverageWeightedQuantileLoss`
2276
+ #
2264
2277
  #
2265
2278
  #
2266
2279
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-metrics-validation.html#autopilot-metrics
@@ -2399,12 +2412,18 @@ module Aws::SageMaker
2399
2412
  # type (regression, classification).
2400
2413
  # @return [Types::TabularJobConfig]
2401
2414
  #
2415
+ # @!attribute [rw] time_series_forecasting_job_config
2416
+ # Settings used to configure an AutoML job V2 for a time-series
2417
+ # forecasting problem type.
2418
+ # @return [Types::TimeSeriesForecastingJobConfig]
2419
+ #
2402
2420
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLProblemTypeConfig AWS API Documentation
2403
2421
  #
2404
2422
  class AutoMLProblemTypeConfig < Struct.new(
2405
2423
  :image_classification_job_config,
2406
2424
  :text_classification_job_config,
2407
2425
  :tabular_job_config,
2426
+ :time_series_forecasting_job_config,
2408
2427
  :unknown)
2409
2428
  SENSITIVE = []
2410
2429
  include Aws::Structure
@@ -2413,6 +2432,7 @@ module Aws::SageMaker
2413
2432
  class ImageClassificationJobConfig < AutoMLProblemTypeConfig; end
2414
2433
  class TextClassificationJobConfig < AutoMLProblemTypeConfig; end
2415
2434
  class TabularJobConfig < AutoMLProblemTypeConfig; end
2435
+ class TimeSeriesForecastingJobConfig < AutoMLProblemTypeConfig; end
2416
2436
  class Unknown < AutoMLProblemTypeConfig; end
2417
2437
  end
2418
2438
 
@@ -2987,11 +3007,18 @@ module Aws::SageMaker
2987
3007
  # the AutoML candidate.
2988
3008
  # @return [String]
2989
3009
  #
3010
+ # @!attribute [rw] backtest_results
3011
+ # The Amazon S3 prefix to the accuracy metrics and the inference
3012
+ # results observed over the testing window. Available only for the
3013
+ # time-series forecasting problem type.
3014
+ # @return [String]
3015
+ #
2990
3016
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CandidateArtifactLocations AWS API Documentation
2991
3017
  #
2992
3018
  class CandidateArtifactLocations < Struct.new(
2993
3019
  :explainability,
2994
- :model_insights)
3020
+ :model_insights,
3021
+ :backtest_results)
2995
3022
  SENSITIVE = []
2996
3023
  include Aws::Structure
2997
3024
  end
@@ -4717,12 +4744,14 @@ module Aws::SageMaker
4717
4744
  # [InputDataConfig][1] attribute in the `CreateAutoMLJob` input
4718
4745
  # parameters. The supported formats depend on the problem type:
4719
4746
  #
4720
- # * For Tabular problem types: `S3Prefix`, `ManifestFile`.
4747
+ # * For tabular problem types: `S3Prefix`, `ManifestFile`.
4721
4748
  #
4722
- # * For ImageClassification: `S3Prefix`, `ManifestFile`,
4749
+ # * For image classification: `S3Prefix`, `ManifestFile`,
4723
4750
  # `AugmentedManifestFile`.
4724
4751
  #
4725
- # * For TextClassification: `S3Prefix`.
4752
+ # * For text classification: `S3Prefix`.
4753
+ #
4754
+ # * For time-series forecasting: `S3Prefix`.
4726
4755
  #
4727
4756
  #
4728
4757
  #
@@ -4789,6 +4818,12 @@ module Aws::SageMaker
4789
4818
  # The validation and training datasets must contain the same headers.
4790
4819
  # For jobs created by calling `CreateAutoMLJob`, the validation
4791
4820
  # dataset must be less than 2 GB in size.
4821
+ #
4822
+ # <note markdown="1"> This attribute must not be set for the time-series forecasting
4823
+ # problem type, as Autopilot automatically splits the input dataset
4824
+ # into training and validation sets.
4825
+ #
4826
+ # </note>
4792
4827
  # @return [Types::AutoMLDataSplitConfig]
4793
4828
  #
4794
4829
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAutoMLJobV2Request AWS API Documentation
@@ -36920,6 +36955,157 @@ module Aws::SageMaker
36920
36955
  include Aws::Structure
36921
36956
  end
36922
36957
 
36958
+ # The collection of components that defines the time-series.
36959
+ #
36960
+ # @!attribute [rw] target_attribute_name
36961
+ # The name of the column representing the target variable that you
36962
+ # want to predict for each item in your dataset. The data type of the
36963
+ # target variable must be numerical.
36964
+ # @return [String]
36965
+ #
36966
+ # @!attribute [rw] timestamp_attribute_name
36967
+ # The name of the column indicating a point in time at which the
36968
+ # target value of a given item is recorded.
36969
+ # @return [String]
36970
+ #
36971
+ # @!attribute [rw] item_identifier_attribute_name
36972
+ # The name of the column that represents the set of item identifiers
36973
+ # for which you want to predict the target value.
36974
+ # @return [String]
36975
+ #
36976
+ # @!attribute [rw] grouping_attribute_names
36977
+ # A set of columns names that can be grouped with the item identifier
36978
+ # column to create a composite key for which a target value is
36979
+ # predicted.
36980
+ # @return [Array<String>]
36981
+ #
36982
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TimeSeriesConfig AWS API Documentation
36983
+ #
36984
+ class TimeSeriesConfig < Struct.new(
36985
+ :target_attribute_name,
36986
+ :timestamp_attribute_name,
36987
+ :item_identifier_attribute_name,
36988
+ :grouping_attribute_names)
36989
+ SENSITIVE = []
36990
+ include Aws::Structure
36991
+ end
36992
+
36993
+ # The collection of settings used by an AutoML job V2 for the
36994
+ # time-series forecasting problem type.
36995
+ #
36996
+ # <note markdown="1"> The `TimeSeriesForecastingJobConfig` problem type is only available in
36997
+ # private beta. Contact Amazon Web Services Support or your account
36998
+ # manager to learn more about access privileges.
36999
+ #
37000
+ # </note>
37001
+ #
37002
+ # @!attribute [rw] feature_specification_s3_uri
37003
+ # A URL to the Amazon S3 data source containing additional selected
37004
+ # features that complement the target, itemID, timestamp, and grouped
37005
+ # columns set in `TimeSeriesConfig`. When not provided, the AutoML job
37006
+ # V2 includes all the columns from the original dataset that are not
37007
+ # already declared in `TimeSeriesConfig`. If provided, the AutoML job
37008
+ # V2 only considers these additional columns as a complement to the
37009
+ # ones declared in `TimeSeriesConfig`.
37010
+ #
37011
+ # You can input `FeatureAttributeNames` (optional) in JSON format as
37012
+ # shown below:
37013
+ #
37014
+ # `\{ "FeatureAttributeNames":["col1", "col2", ...] \}`.
37015
+ #
37016
+ # You can also specify the data type of the feature (optional) in the
37017
+ # format shown below:
37018
+ #
37019
+ # `\{ "FeatureDataTypes":\{"col1":"numeric", "col2":"categorical" ...
37020
+ # \} \}`
37021
+ #
37022
+ # Autopilot supports the following data types: `numeric`,
37023
+ # `categorical`, `text`, and `datetime`.
37024
+ #
37025
+ # <note markdown="1"> These column keys must not include any column set in
37026
+ # `TimeSeriesConfig`.
37027
+ #
37028
+ # </note>
37029
+ #
37030
+ # When not provided, the AutoML job V2 includes all the columns from
37031
+ # the original dataset that are not already declared in
37032
+ # `TimeSeriesConfig`. If provided, the AutoML job V2 only considers
37033
+ # these additional columns as a complement to the ones declared in
37034
+ # `TimeSeriesConfig`.
37035
+ #
37036
+ # Autopilot supports the following data types: `numeric`,
37037
+ # `categorical`, `text`, and `datetime`.
37038
+ # @return [String]
37039
+ #
37040
+ # @!attribute [rw] completion_criteria
37041
+ # How long a job is allowed to run, or how many candidates a job is
37042
+ # allowed to generate.
37043
+ # @return [Types::AutoMLJobCompletionCriteria]
37044
+ #
37045
+ # @!attribute [rw] forecast_frequency
37046
+ # The frequency of predictions in a forecast.
37047
+ #
37048
+ # Valid intervals are an integer followed by Y (Year), M (Month), W
37049
+ # (Week), D (Day), H (Hour), and min (Minute). For example, `1D`
37050
+ # indicates every day and `15min` indicates every 15 minutes. The
37051
+ # value of a frequency must not overlap with the next larger
37052
+ # frequency. For example, you must use a frequency of `1H` instead of
37053
+ # `60min`.
37054
+ #
37055
+ # The valid values for each frequency are the following:
37056
+ #
37057
+ # * Minute - 1-59
37058
+ #
37059
+ # * Hour - 1-23
37060
+ #
37061
+ # * Day - 1-6
37062
+ #
37063
+ # * Week - 1-4
37064
+ #
37065
+ # * Month - 1-11
37066
+ #
37067
+ # * Year - 1
37068
+ # @return [String]
37069
+ #
37070
+ # @!attribute [rw] forecast_horizon
37071
+ # The number of time-steps that the model predicts. The forecast
37072
+ # horizon is also called the prediction length. The maximum forecast
37073
+ # horizon is the lesser of 500 time-steps or 1/4 of the time-steps in
37074
+ # the dataset.
37075
+ # @return [Integer]
37076
+ #
37077
+ # @!attribute [rw] forecast_quantiles
37078
+ # The quantiles used to train the model for forecasts at a specified
37079
+ # quantile. You can specify quantiles from `0.01` (p1) to `0.99`
37080
+ # (p99), by increments of 0.01 or higher. Up to five forecast
37081
+ # quantiles can be specified. When `ForecastQuantiles` is not
37082
+ # provided, the AutoML job uses the quantiles p10, p50, and p90 as
37083
+ # default.
37084
+ # @return [Array<String>]
37085
+ #
37086
+ # @!attribute [rw] transformations
37087
+ # The transformations modifying specific attributes of the
37088
+ # time-series, such as filling strategies for missing values.
37089
+ # @return [Types::TimeSeriesTransformations]
37090
+ #
37091
+ # @!attribute [rw] time_series_config
37092
+ # The collection of components that defines the time-series.
37093
+ # @return [Types::TimeSeriesConfig]
37094
+ #
37095
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TimeSeriesForecastingJobConfig AWS API Documentation
37096
+ #
37097
+ class TimeSeriesForecastingJobConfig < Struct.new(
37098
+ :feature_specification_s3_uri,
37099
+ :completion_criteria,
37100
+ :forecast_frequency,
37101
+ :forecast_horizon,
37102
+ :forecast_quantiles,
37103
+ :transformations,
37104
+ :time_series_config)
37105
+ SENSITIVE = []
37106
+ include Aws::Structure
37107
+ end
37108
+
36923
37109
  # Time series forecast settings for the SageMaker Canvas application.
36924
37110
  #
36925
37111
  # @!attribute [rw] status
@@ -36952,6 +37138,56 @@ module Aws::SageMaker
36952
37138
  include Aws::Structure
36953
37139
  end
36954
37140
 
37141
+ # Transformations allowed on the dataset. Supported transformations are
37142
+ # `Filling` and `Aggregation`. `Filling` specifies how to add values to
37143
+ # missing values in the dataset. `Aggregation` defines how to aggregate
37144
+ # data that does not align with forecast frequency.
37145
+ #
37146
+ # @!attribute [rw] filling
37147
+ # A key value pair defining the filling method for a column, where the
37148
+ # key is the column name and the value is an object which defines the
37149
+ # filling logic. You can specify multiple filling methods for a single
37150
+ # column.
37151
+ #
37152
+ # The supported filling methods and their corresponding options are:
37153
+ #
37154
+ # * `frontfill`: `none` (Supported only for target column)
37155
+ #
37156
+ # * `middlefill`: `zero`, `value`, `median`, `mean`, `min`, `max`
37157
+ #
37158
+ # * `backfill`: `zero`, `value`, `median`, `mean`, `min`, `max`
37159
+ #
37160
+ # * `futurefill`: `zero`, `value`, `median`, `mean`, `min`, `max`
37161
+ #
37162
+ # To set a filling method to a specific value, set the fill parameter
37163
+ # to the chosen filling method value (for example `"backfill" :
37164
+ # "value"`), and define the filling value in an additional parameter
37165
+ # prefixed with "\_value". For example, to set `backfill` to a value
37166
+ # of `2`, you must include two parameters: `"backfill": "value"` and
37167
+ # `"backfill_value":"2"`.
37168
+ # @return [Hash<String,Hash<String,String>>]
37169
+ #
37170
+ # @!attribute [rw] aggregation
37171
+ # A key value pair defining the aggregation method for a column, where
37172
+ # the key is the column name and the value is the aggregation method.
37173
+ #
37174
+ # The supported aggregation methods are `sum` (default), `avg`,
37175
+ # `first`, `min`, `max`.
37176
+ #
37177
+ # <note markdown="1"> Aggregation is only supported for the target column.
37178
+ #
37179
+ # </note>
37180
+ # @return [Hash<String,String>]
37181
+ #
37182
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TimeSeriesTransformations AWS API Documentation
37183
+ #
37184
+ class TimeSeriesTransformations < Struct.new(
37185
+ :filling,
37186
+ :aggregation)
37187
+ SENSITIVE = []
37188
+ include Aws::Structure
37189
+ end
37190
+
36955
37191
  # Defines the traffic pattern of the load test.
36956
37192
  #
36957
37193
  # @!attribute [rw] traffic_type
@@ -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.191.0'
56
+ GEM_VERSION = '1.192.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.191.0
4
+ version: 1.192.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-06-28 00:00:00.000000000 Z
11
+ date: 2023-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core