aws-sdk-sagemaker 1.210.0 → 1.211.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +49 -25
- data/lib/aws-sdk-sagemaker/client_api.rb +5 -0
- data/lib/aws-sdk-sagemaker/types.rb +111 -63
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1daf99b06481d26d72ba2435271e6fe39fc4d9b97174e3715a327f0a9948a378
|
|
4
|
+
data.tar.gz: e13b460d91863a6dd8ba581b218a502e2c630b176b8eedd7def9cdb6e6083bad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0fac0f88aa72af8cad3c66cb1c851fd24db456434919fc0007dea67799365c0d3f8d0517286f539eeb5bd076981ef4198bd8b3a6719b472ae527c820e757d22c
|
|
7
|
+
data.tar.gz: d01ece542e3e74c511685df2a171868b8ceb83bd94ef52ab1f3c1cc6cbc733dddc325528375a83508fdfffdb42b8750bba22dcb1fa618a23c38d9cb302ce9016
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.211.0 (2023-09-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for one-time model monitoring schedules that are executed immediately without delay, explicit data analysis windows for model monitoring schedules and exclude features attributes to remove features from model monitor analysis.
|
|
8
|
+
|
|
4
9
|
1.210.0 (2023-09-15)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.211.0
|
|
@@ -1208,8 +1208,7 @@ 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
|
-
#
|
|
1212
|
-
# or text classification.
|
|
1211
|
+
# non-tabular problem types such as image or text classification.
|
|
1213
1212
|
#
|
|
1214
1213
|
# Find guidelines about how to migrate a `CreateAutoMLJob` to
|
|
1215
1214
|
# `CreateAutoMLJobV2` in [Migrate a CreateAutoMLJob to
|
|
@@ -1388,8 +1387,7 @@ module Aws::SageMaker
|
|
|
1388
1387
|
#
|
|
1389
1388
|
# `CreateAutoMLJobV2` can manage tabular problem types identical to
|
|
1390
1389
|
# those of its previous version `CreateAutoMLJob`, as well as
|
|
1391
|
-
#
|
|
1392
|
-
# or text classification.
|
|
1390
|
+
# non-tabular problem types such as image or text classification.
|
|
1393
1391
|
#
|
|
1394
1392
|
# Find guidelines about how to migrate a `CreateAutoMLJob` to
|
|
1395
1393
|
# `CreateAutoMLJobV2` in [Migrate a CreateAutoMLJob to
|
|
@@ -1965,9 +1963,9 @@ module Aws::SageMaker
|
|
|
1965
1963
|
# stopping.
|
|
1966
1964
|
#
|
|
1967
1965
|
# @option params [Array<Types::Tag>] :tags
|
|
1968
|
-
# (Optional) An array of key-value pairs. For more information, see
|
|
1969
|
-
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
1970
|
-
# Cost Management User Guide*.
|
|
1966
|
+
# (Optional) An array of key-value pairs. For more information, see
|
|
1967
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
1968
|
+
# and Cost Management User Guide*.
|
|
1971
1969
|
#
|
|
1972
1970
|
#
|
|
1973
1971
|
#
|
|
@@ -2012,6 +2010,7 @@ module Aws::SageMaker
|
|
|
2012
2010
|
# probability_threshold_attribute: 1.0,
|
|
2013
2011
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
2014
2012
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
2013
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
2015
2014
|
# },
|
|
2016
2015
|
# batch_transform_input: {
|
|
2017
2016
|
# data_captured_destination_s3_uri: "DestinationS3Uri", # required
|
|
@@ -2034,6 +2033,7 @@ module Aws::SageMaker
|
|
|
2034
2033
|
# probability_threshold_attribute: 1.0,
|
|
2035
2034
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
2036
2035
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
2036
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
2037
2037
|
# },
|
|
2038
2038
|
# },
|
|
2039
2039
|
# data_quality_job_output_config: { # required
|
|
@@ -5103,9 +5103,9 @@ module Aws::SageMaker
|
|
|
5103
5103
|
# stopping.
|
|
5104
5104
|
#
|
|
5105
5105
|
# @option params [Array<Types::Tag>] :tags
|
|
5106
|
-
# (Optional) An array of key-value pairs. For more information, see
|
|
5107
|
-
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
5108
|
-
# Cost Management User Guide*.
|
|
5106
|
+
# (Optional) An array of key-value pairs. For more information, see
|
|
5107
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
5108
|
+
# and Cost Management User Guide*.
|
|
5109
5109
|
#
|
|
5110
5110
|
#
|
|
5111
5111
|
#
|
|
@@ -5144,6 +5144,7 @@ module Aws::SageMaker
|
|
|
5144
5144
|
# probability_threshold_attribute: 1.0,
|
|
5145
5145
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
5146
5146
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
5147
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
5147
5148
|
# },
|
|
5148
5149
|
# batch_transform_input: {
|
|
5149
5150
|
# data_captured_destination_s3_uri: "DestinationS3Uri", # required
|
|
@@ -5166,6 +5167,7 @@ module Aws::SageMaker
|
|
|
5166
5167
|
# probability_threshold_attribute: 1.0,
|
|
5167
5168
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
5168
5169
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
5170
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
5169
5171
|
# },
|
|
5170
5172
|
# ground_truth_s3_input: { # required
|
|
5171
5173
|
# s3_uri: "MonitoringS3Uri",
|
|
@@ -5379,9 +5381,9 @@ module Aws::SageMaker
|
|
|
5379
5381
|
# stopping.
|
|
5380
5382
|
#
|
|
5381
5383
|
# @option params [Array<Types::Tag>] :tags
|
|
5382
|
-
# (Optional) An array of key-value pairs. For more information, see
|
|
5383
|
-
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
5384
|
-
# Cost Management User Guide*.
|
|
5384
|
+
# (Optional) An array of key-value pairs. For more information, see
|
|
5385
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
5386
|
+
# and Cost Management User Guide*.
|
|
5385
5387
|
#
|
|
5386
5388
|
#
|
|
5387
5389
|
#
|
|
@@ -5420,6 +5422,7 @@ module Aws::SageMaker
|
|
|
5420
5422
|
# probability_threshold_attribute: 1.0,
|
|
5421
5423
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
5422
5424
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
5425
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
5423
5426
|
# },
|
|
5424
5427
|
# batch_transform_input: {
|
|
5425
5428
|
# data_captured_destination_s3_uri: "DestinationS3Uri", # required
|
|
@@ -5442,6 +5445,7 @@ module Aws::SageMaker
|
|
|
5442
5445
|
# probability_threshold_attribute: 1.0,
|
|
5443
5446
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
5444
5447
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
5448
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
5445
5449
|
# },
|
|
5446
5450
|
# },
|
|
5447
5451
|
# model_explainability_job_output_config: { # required
|
|
@@ -5982,9 +5986,9 @@ module Aws::SageMaker
|
|
|
5982
5986
|
# stopping.
|
|
5983
5987
|
#
|
|
5984
5988
|
# @option params [Array<Types::Tag>] :tags
|
|
5985
|
-
# (Optional) An array of key-value pairs. For more information, see
|
|
5986
|
-
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
5987
|
-
# Cost Management User Guide*.
|
|
5989
|
+
# (Optional) An array of key-value pairs. For more information, see
|
|
5990
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
5991
|
+
# and Cost Management User Guide*.
|
|
5988
5992
|
#
|
|
5989
5993
|
#
|
|
5990
5994
|
#
|
|
@@ -6027,6 +6031,7 @@ module Aws::SageMaker
|
|
|
6027
6031
|
# probability_threshold_attribute: 1.0,
|
|
6028
6032
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
6029
6033
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
6034
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
6030
6035
|
# },
|
|
6031
6036
|
# batch_transform_input: {
|
|
6032
6037
|
# data_captured_destination_s3_uri: "DestinationS3Uri", # required
|
|
@@ -6049,6 +6054,7 @@ module Aws::SageMaker
|
|
|
6049
6054
|
# probability_threshold_attribute: 1.0,
|
|
6050
6055
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
6051
6056
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
6057
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
6052
6058
|
# },
|
|
6053
6059
|
# ground_truth_s3_input: { # required
|
|
6054
6060
|
# s3_uri: "MonitoringS3Uri",
|
|
@@ -6135,6 +6141,8 @@ module Aws::SageMaker
|
|
|
6135
6141
|
# monitoring_schedule_config: { # required
|
|
6136
6142
|
# schedule_config: {
|
|
6137
6143
|
# schedule_expression: "ScheduleExpression", # required
|
|
6144
|
+
# data_analysis_start_time: "String",
|
|
6145
|
+
# data_analysis_end_time: "String",
|
|
6138
6146
|
# },
|
|
6139
6147
|
# monitoring_job_definition: {
|
|
6140
6148
|
# baseline_config: {
|
|
@@ -6159,6 +6167,7 @@ module Aws::SageMaker
|
|
|
6159
6167
|
# probability_threshold_attribute: 1.0,
|
|
6160
6168
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
6161
6169
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
6170
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
6162
6171
|
# },
|
|
6163
6172
|
# batch_transform_input: {
|
|
6164
6173
|
# data_captured_destination_s3_uri: "DestinationS3Uri", # required
|
|
@@ -6181,6 +6190,7 @@ module Aws::SageMaker
|
|
|
6181
6190
|
# probability_threshold_attribute: 1.0,
|
|
6182
6191
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
6183
6192
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
6193
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
6184
6194
|
# },
|
|
6185
6195
|
# },
|
|
6186
6196
|
# ],
|
|
@@ -10679,6 +10689,7 @@ module Aws::SageMaker
|
|
|
10679
10689
|
# resp.data_quality_job_input.endpoint_input.probability_threshold_attribute #=> Float
|
|
10680
10690
|
# resp.data_quality_job_input.endpoint_input.start_time_offset #=> String
|
|
10681
10691
|
# resp.data_quality_job_input.endpoint_input.end_time_offset #=> String
|
|
10692
|
+
# resp.data_quality_job_input.endpoint_input.exclude_features_attribute #=> String
|
|
10682
10693
|
# resp.data_quality_job_input.batch_transform_input.data_captured_destination_s3_uri #=> String
|
|
10683
10694
|
# resp.data_quality_job_input.batch_transform_input.dataset_format.csv.header #=> Boolean
|
|
10684
10695
|
# resp.data_quality_job_input.batch_transform_input.dataset_format.json.line #=> Boolean
|
|
@@ -10691,6 +10702,7 @@ module Aws::SageMaker
|
|
|
10691
10702
|
# resp.data_quality_job_input.batch_transform_input.probability_threshold_attribute #=> Float
|
|
10692
10703
|
# resp.data_quality_job_input.batch_transform_input.start_time_offset #=> String
|
|
10693
10704
|
# resp.data_quality_job_input.batch_transform_input.end_time_offset #=> String
|
|
10705
|
+
# resp.data_quality_job_input.batch_transform_input.exclude_features_attribute #=> String
|
|
10694
10706
|
# resp.data_quality_job_output_config.monitoring_outputs #=> Array
|
|
10695
10707
|
# resp.data_quality_job_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
|
|
10696
10708
|
# resp.data_quality_job_output_config.monitoring_outputs[0].s3_output.local_path #=> String
|
|
@@ -12722,6 +12734,7 @@ module Aws::SageMaker
|
|
|
12722
12734
|
# resp.model_bias_job_input.endpoint_input.probability_threshold_attribute #=> Float
|
|
12723
12735
|
# resp.model_bias_job_input.endpoint_input.start_time_offset #=> String
|
|
12724
12736
|
# resp.model_bias_job_input.endpoint_input.end_time_offset #=> String
|
|
12737
|
+
# resp.model_bias_job_input.endpoint_input.exclude_features_attribute #=> String
|
|
12725
12738
|
# resp.model_bias_job_input.batch_transform_input.data_captured_destination_s3_uri #=> String
|
|
12726
12739
|
# resp.model_bias_job_input.batch_transform_input.dataset_format.csv.header #=> Boolean
|
|
12727
12740
|
# resp.model_bias_job_input.batch_transform_input.dataset_format.json.line #=> Boolean
|
|
@@ -12734,6 +12747,7 @@ module Aws::SageMaker
|
|
|
12734
12747
|
# resp.model_bias_job_input.batch_transform_input.probability_threshold_attribute #=> Float
|
|
12735
12748
|
# resp.model_bias_job_input.batch_transform_input.start_time_offset #=> String
|
|
12736
12749
|
# resp.model_bias_job_input.batch_transform_input.end_time_offset #=> String
|
|
12750
|
+
# resp.model_bias_job_input.batch_transform_input.exclude_features_attribute #=> String
|
|
12737
12751
|
# resp.model_bias_job_input.ground_truth_s3_input.s3_uri #=> String
|
|
12738
12752
|
# resp.model_bias_job_output_config.monitoring_outputs #=> Array
|
|
12739
12753
|
# resp.model_bias_job_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
|
|
@@ -12921,6 +12935,7 @@ module Aws::SageMaker
|
|
|
12921
12935
|
# resp.model_explainability_job_input.endpoint_input.probability_threshold_attribute #=> Float
|
|
12922
12936
|
# resp.model_explainability_job_input.endpoint_input.start_time_offset #=> String
|
|
12923
12937
|
# resp.model_explainability_job_input.endpoint_input.end_time_offset #=> String
|
|
12938
|
+
# resp.model_explainability_job_input.endpoint_input.exclude_features_attribute #=> String
|
|
12924
12939
|
# resp.model_explainability_job_input.batch_transform_input.data_captured_destination_s3_uri #=> String
|
|
12925
12940
|
# resp.model_explainability_job_input.batch_transform_input.dataset_format.csv.header #=> Boolean
|
|
12926
12941
|
# resp.model_explainability_job_input.batch_transform_input.dataset_format.json.line #=> Boolean
|
|
@@ -12933,6 +12948,7 @@ module Aws::SageMaker
|
|
|
12933
12948
|
# resp.model_explainability_job_input.batch_transform_input.probability_threshold_attribute #=> Float
|
|
12934
12949
|
# resp.model_explainability_job_input.batch_transform_input.start_time_offset #=> String
|
|
12935
12950
|
# resp.model_explainability_job_input.batch_transform_input.end_time_offset #=> String
|
|
12951
|
+
# resp.model_explainability_job_input.batch_transform_input.exclude_features_attribute #=> String
|
|
12936
12952
|
# resp.model_explainability_job_output_config.monitoring_outputs #=> Array
|
|
12937
12953
|
# resp.model_explainability_job_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
|
|
12938
12954
|
# resp.model_explainability_job_output_config.monitoring_outputs[0].s3_output.local_path #=> String
|
|
@@ -13275,6 +13291,7 @@ module Aws::SageMaker
|
|
|
13275
13291
|
# resp.model_quality_job_input.endpoint_input.probability_threshold_attribute #=> Float
|
|
13276
13292
|
# resp.model_quality_job_input.endpoint_input.start_time_offset #=> String
|
|
13277
13293
|
# resp.model_quality_job_input.endpoint_input.end_time_offset #=> String
|
|
13294
|
+
# resp.model_quality_job_input.endpoint_input.exclude_features_attribute #=> String
|
|
13278
13295
|
# resp.model_quality_job_input.batch_transform_input.data_captured_destination_s3_uri #=> String
|
|
13279
13296
|
# resp.model_quality_job_input.batch_transform_input.dataset_format.csv.header #=> Boolean
|
|
13280
13297
|
# resp.model_quality_job_input.batch_transform_input.dataset_format.json.line #=> Boolean
|
|
@@ -13287,6 +13304,7 @@ module Aws::SageMaker
|
|
|
13287
13304
|
# resp.model_quality_job_input.batch_transform_input.probability_threshold_attribute #=> Float
|
|
13288
13305
|
# resp.model_quality_job_input.batch_transform_input.start_time_offset #=> String
|
|
13289
13306
|
# resp.model_quality_job_input.batch_transform_input.end_time_offset #=> String
|
|
13307
|
+
# resp.model_quality_job_input.batch_transform_input.exclude_features_attribute #=> String
|
|
13290
13308
|
# resp.model_quality_job_input.ground_truth_s3_input.s3_uri #=> String
|
|
13291
13309
|
# resp.model_quality_job_output_config.monitoring_outputs #=> Array
|
|
13292
13310
|
# resp.model_quality_job_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
|
|
@@ -13349,6 +13367,8 @@ module Aws::SageMaker
|
|
|
13349
13367
|
# resp.creation_time #=> Time
|
|
13350
13368
|
# resp.last_modified_time #=> Time
|
|
13351
13369
|
# resp.monitoring_schedule_config.schedule_config.schedule_expression #=> String
|
|
13370
|
+
# resp.monitoring_schedule_config.schedule_config.data_analysis_start_time #=> String
|
|
13371
|
+
# resp.monitoring_schedule_config.schedule_config.data_analysis_end_time #=> String
|
|
13352
13372
|
# resp.monitoring_schedule_config.monitoring_job_definition.baseline_config.baselining_job_name #=> String
|
|
13353
13373
|
# resp.monitoring_schedule_config.monitoring_job_definition.baseline_config.constraints_resource.s3_uri #=> String
|
|
13354
13374
|
# resp.monitoring_schedule_config.monitoring_job_definition.baseline_config.statistics_resource.s3_uri #=> String
|
|
@@ -13363,6 +13383,7 @@ module Aws::SageMaker
|
|
|
13363
13383
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.probability_threshold_attribute #=> Float
|
|
13364
13384
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.start_time_offset #=> String
|
|
13365
13385
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.end_time_offset #=> String
|
|
13386
|
+
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].endpoint_input.exclude_features_attribute #=> String
|
|
13366
13387
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.data_captured_destination_s3_uri #=> String
|
|
13367
13388
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.dataset_format.csv.header #=> Boolean
|
|
13368
13389
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.dataset_format.json.line #=> Boolean
|
|
@@ -13375,6 +13396,7 @@ module Aws::SageMaker
|
|
|
13375
13396
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.probability_threshold_attribute #=> Float
|
|
13376
13397
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.start_time_offset #=> String
|
|
13377
13398
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.end_time_offset #=> String
|
|
13399
|
+
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_inputs[0].batch_transform_input.exclude_features_attribute #=> String
|
|
13378
13400
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs #=> Array
|
|
13379
13401
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.s3_uri #=> String
|
|
13380
13402
|
# resp.monitoring_schedule_config.monitoring_job_definition.monitoring_output_config.monitoring_outputs[0].s3_output.local_path #=> String
|
|
@@ -16074,8 +16096,7 @@ module Aws::SageMaker
|
|
|
16074
16096
|
# The field to sort results by. The default is `CreationTime`.
|
|
16075
16097
|
#
|
|
16076
16098
|
# @option params [String] :sort_order
|
|
16077
|
-
#
|
|
16078
|
-
# default is `Descending`.
|
|
16099
|
+
# The sort order for results. The default is `Descending`.
|
|
16079
16100
|
#
|
|
16080
16101
|
# @option params [String] :next_token
|
|
16081
16102
|
# If the result of the previous `ListDataQualityJobDefinitions` request
|
|
@@ -18498,8 +18519,7 @@ module Aws::SageMaker
|
|
|
18498
18519
|
# The field to sort results by. The default is `CreationTime`.
|
|
18499
18520
|
#
|
|
18500
18521
|
# @option params [String] :sort_order
|
|
18501
|
-
#
|
|
18502
|
-
# default is `Descending`.
|
|
18522
|
+
# The sort order for results. The default is `Descending`.
|
|
18503
18523
|
#
|
|
18504
18524
|
# @option params [String] :next_token
|
|
18505
18525
|
# If the result of the previous `ListModelQualityJobDefinitions` request
|
|
@@ -18757,8 +18777,8 @@ module Aws::SageMaker
|
|
|
18757
18777
|
# Name of a specific endpoint to fetch jobs for.
|
|
18758
18778
|
#
|
|
18759
18779
|
# @option params [String] :sort_by
|
|
18760
|
-
# Whether to sort
|
|
18761
|
-
#
|
|
18780
|
+
# Whether to sort results by `Status`, `CreationTime`, `ScheduledTime`
|
|
18781
|
+
# field. The default is `CreationTime`.
|
|
18762
18782
|
#
|
|
18763
18783
|
# @option params [String] :sort_order
|
|
18764
18784
|
# Whether to sort the results in `Ascending` or `Descending` order. The
|
|
@@ -18858,8 +18878,8 @@ module Aws::SageMaker
|
|
|
18858
18878
|
# Name of a specific endpoint to fetch schedules for.
|
|
18859
18879
|
#
|
|
18860
18880
|
# @option params [String] :sort_by
|
|
18861
|
-
# Whether to sort
|
|
18862
|
-
#
|
|
18881
|
+
# Whether to sort results by `Status`, `CreationTime`, `ScheduledTime`
|
|
18882
|
+
# field. The default is `CreationTime`.
|
|
18863
18883
|
#
|
|
18864
18884
|
# @option params [String] :sort_order
|
|
18865
18885
|
# Whether to sort the results in `Ascending` or `Descending` order. The
|
|
@@ -23032,6 +23052,8 @@ module Aws::SageMaker
|
|
|
23032
23052
|
# monitoring_schedule_config: { # required
|
|
23033
23053
|
# schedule_config: {
|
|
23034
23054
|
# schedule_expression: "ScheduleExpression", # required
|
|
23055
|
+
# data_analysis_start_time: "String",
|
|
23056
|
+
# data_analysis_end_time: "String",
|
|
23035
23057
|
# },
|
|
23036
23058
|
# monitoring_job_definition: {
|
|
23037
23059
|
# baseline_config: {
|
|
@@ -23056,6 +23078,7 @@ module Aws::SageMaker
|
|
|
23056
23078
|
# probability_threshold_attribute: 1.0,
|
|
23057
23079
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
23058
23080
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
23081
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
23059
23082
|
# },
|
|
23060
23083
|
# batch_transform_input: {
|
|
23061
23084
|
# data_captured_destination_s3_uri: "DestinationS3Uri", # required
|
|
@@ -23078,6 +23101,7 @@ module Aws::SageMaker
|
|
|
23078
23101
|
# probability_threshold_attribute: 1.0,
|
|
23079
23102
|
# start_time_offset: "MonitoringTimeOffsetString",
|
|
23080
23103
|
# end_time_offset: "MonitoringTimeOffsetString",
|
|
23104
|
+
# exclude_features_attribute: "ExcludeFeaturesAttribute",
|
|
23081
23105
|
# },
|
|
23082
23106
|
# },
|
|
23083
23107
|
# ],
|
|
@@ -24149,7 +24173,7 @@ module Aws::SageMaker
|
|
|
24149
24173
|
params: params,
|
|
24150
24174
|
config: config)
|
|
24151
24175
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
24152
|
-
context[:gem_version] = '1.
|
|
24176
|
+
context[:gem_version] = '1.211.0'
|
|
24153
24177
|
Seahorse::Client::Request.new(handlers, context)
|
|
24154
24178
|
end
|
|
24155
24179
|
|
|
@@ -741,6 +741,7 @@ module Aws::SageMaker
|
|
|
741
741
|
EnvironmentParameterRanges = Shapes::StructureShape.new(name: 'EnvironmentParameterRanges')
|
|
742
742
|
EnvironmentParameters = Shapes::ListShape.new(name: 'EnvironmentParameters')
|
|
743
743
|
EnvironmentValue = Shapes::StringShape.new(name: 'EnvironmentValue')
|
|
744
|
+
ExcludeFeaturesAttribute = Shapes::StringShape.new(name: 'ExcludeFeaturesAttribute')
|
|
744
745
|
ExecutionRoleIdentityConfig = Shapes::StringShape.new(name: 'ExecutionRoleIdentityConfig')
|
|
745
746
|
ExecutionStatus = Shapes::StringShape.new(name: 'ExecutionStatus')
|
|
746
747
|
ExitMessage = Shapes::StringShape.new(name: 'ExitMessage')
|
|
@@ -2492,6 +2493,7 @@ module Aws::SageMaker
|
|
|
2492
2493
|
BatchTransformInput.add_member(:probability_threshold_attribute, Shapes::ShapeRef.new(shape: ProbabilityThresholdAttribute, location_name: "ProbabilityThresholdAttribute"))
|
|
2493
2494
|
BatchTransformInput.add_member(:start_time_offset, Shapes::ShapeRef.new(shape: MonitoringTimeOffsetString, location_name: "StartTimeOffset"))
|
|
2494
2495
|
BatchTransformInput.add_member(:end_time_offset, Shapes::ShapeRef.new(shape: MonitoringTimeOffsetString, location_name: "EndTimeOffset"))
|
|
2496
|
+
BatchTransformInput.add_member(:exclude_features_attribute, Shapes::ShapeRef.new(shape: ExcludeFeaturesAttribute, location_name: "ExcludeFeaturesAttribute"))
|
|
2495
2497
|
BatchTransformInput.struct_class = Types::BatchTransformInput
|
|
2496
2498
|
|
|
2497
2499
|
BestObjectiveNotImproving.add_member(:max_number_of_training_jobs_not_improving, Shapes::ShapeRef.new(shape: MaxNumberOfTrainingJobsNotImproving, location_name: "MaxNumberOfTrainingJobsNotImproving"))
|
|
@@ -5030,6 +5032,7 @@ module Aws::SageMaker
|
|
|
5030
5032
|
EndpointInput.add_member(:probability_threshold_attribute, Shapes::ShapeRef.new(shape: ProbabilityThresholdAttribute, location_name: "ProbabilityThresholdAttribute"))
|
|
5031
5033
|
EndpointInput.add_member(:start_time_offset, Shapes::ShapeRef.new(shape: MonitoringTimeOffsetString, location_name: "StartTimeOffset"))
|
|
5032
5034
|
EndpointInput.add_member(:end_time_offset, Shapes::ShapeRef.new(shape: MonitoringTimeOffsetString, location_name: "EndTimeOffset"))
|
|
5035
|
+
EndpointInput.add_member(:exclude_features_attribute, Shapes::ShapeRef.new(shape: ExcludeFeaturesAttribute, location_name: "ExcludeFeaturesAttribute"))
|
|
5033
5036
|
EndpointInput.struct_class = Types::EndpointInput
|
|
5034
5037
|
|
|
5035
5038
|
EndpointInputConfiguration.add_member(:instance_type, Shapes::ShapeRef.new(shape: ProductionVariantInstanceType, location_name: "InstanceType"))
|
|
@@ -8197,6 +8200,8 @@ module Aws::SageMaker
|
|
|
8197
8200
|
ScalingPolicyObjective.struct_class = Types::ScalingPolicyObjective
|
|
8198
8201
|
|
|
8199
8202
|
ScheduleConfig.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: ScheduleExpression, required: true, location_name: "ScheduleExpression"))
|
|
8203
|
+
ScheduleConfig.add_member(:data_analysis_start_time, Shapes::ShapeRef.new(shape: String, location_name: "DataAnalysisStartTime"))
|
|
8204
|
+
ScheduleConfig.add_member(:data_analysis_end_time, Shapes::ShapeRef.new(shape: String, location_name: "DataAnalysisEndTime"))
|
|
8200
8205
|
ScheduleConfig.struct_class = Types::ScheduleConfig
|
|
8201
8206
|
|
|
8202
8207
|
SearchExpression.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
|
@@ -2861,6 +2861,10 @@ module Aws::SageMaker
|
|
|
2861
2861
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-schedule.html
|
|
2862
2862
|
# @return [String]
|
|
2863
2863
|
#
|
|
2864
|
+
# @!attribute [rw] exclude_features_attribute
|
|
2865
|
+
# The attributes of the input data to exclude from the analysis.
|
|
2866
|
+
# @return [String]
|
|
2867
|
+
#
|
|
2864
2868
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchTransformInput AWS API Documentation
|
|
2865
2869
|
#
|
|
2866
2870
|
class BatchTransformInput < Struct.new(
|
|
@@ -2874,7 +2878,8 @@ module Aws::SageMaker
|
|
|
2874
2878
|
:probability_attribute,
|
|
2875
2879
|
:probability_threshold_attribute,
|
|
2876
2880
|
:start_time_offset,
|
|
2877
|
-
:end_time_offset
|
|
2881
|
+
:end_time_offset,
|
|
2882
|
+
:exclude_features_attribute)
|
|
2878
2883
|
SENSITIVE = []
|
|
2879
2884
|
include Aws::Structure
|
|
2880
2885
|
end
|
|
@@ -3151,12 +3156,12 @@ module Aws::SageMaker
|
|
|
3151
3156
|
end
|
|
3152
3157
|
|
|
3153
3158
|
# Configuration specifying how to treat different headers. If no headers
|
|
3154
|
-
# are specified
|
|
3155
|
-
#
|
|
3159
|
+
# are specified SageMaker will by default base64 encode when capturing
|
|
3160
|
+
# the data.
|
|
3156
3161
|
#
|
|
3157
3162
|
# @!attribute [rw] csv_content_types
|
|
3158
|
-
# The list of all content type headers that
|
|
3159
|
-
#
|
|
3163
|
+
# The list of all content type headers that SageMaker will treat as
|
|
3164
|
+
# CSV and capture accordingly.
|
|
3160
3165
|
# @return [Array<String>]
|
|
3161
3166
|
#
|
|
3162
3167
|
# @!attribute [rw] json_content_types
|
|
@@ -5118,8 +5123,8 @@ module Aws::SageMaker
|
|
|
5118
5123
|
# @return [Types::MonitoringStoppingCondition]
|
|
5119
5124
|
#
|
|
5120
5125
|
# @!attribute [rw] tags
|
|
5121
|
-
# (Optional) An array of key-value pairs. For more information, see
|
|
5122
|
-
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
5126
|
+
# (Optional) An array of key-value pairs. For more information, see
|
|
5127
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
5123
5128
|
# and Cost Management User Guide*.
|
|
5124
5129
|
#
|
|
5125
5130
|
#
|
|
@@ -6734,8 +6739,8 @@ module Aws::SageMaker
|
|
|
6734
6739
|
# @return [Types::MonitoringStoppingCondition]
|
|
6735
6740
|
#
|
|
6736
6741
|
# @!attribute [rw] tags
|
|
6737
|
-
# (Optional) An array of key-value pairs. For more information, see
|
|
6738
|
-
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
6742
|
+
# (Optional) An array of key-value pairs. For more information, see
|
|
6743
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
6739
6744
|
# and Cost Management User Guide*.
|
|
6740
6745
|
#
|
|
6741
6746
|
#
|
|
@@ -6918,8 +6923,8 @@ module Aws::SageMaker
|
|
|
6918
6923
|
# @return [Types::MonitoringStoppingCondition]
|
|
6919
6924
|
#
|
|
6920
6925
|
# @!attribute [rw] tags
|
|
6921
|
-
# (Optional) An array of key-value pairs. For more information, see
|
|
6922
|
-
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
6926
|
+
# (Optional) An array of key-value pairs. For more information, see
|
|
6927
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
6923
6928
|
# and Cost Management User Guide*.
|
|
6924
6929
|
#
|
|
6925
6930
|
#
|
|
@@ -7316,8 +7321,8 @@ module Aws::SageMaker
|
|
|
7316
7321
|
# @return [Types::MonitoringStoppingCondition]
|
|
7317
7322
|
#
|
|
7318
7323
|
# @!attribute [rw] tags
|
|
7319
|
-
# (Optional) An array of key-value pairs. For more information, see
|
|
7320
|
-
# Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
7324
|
+
# (Optional) An array of key-value pairs. For more information, see
|
|
7325
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
|
7321
7326
|
# and Cost Management User Guide*.
|
|
7322
7327
|
#
|
|
7323
7328
|
#
|
|
@@ -8886,9 +8891,9 @@ module Aws::SageMaker
|
|
|
8886
8891
|
# @return [String]
|
|
8887
8892
|
#
|
|
8888
8893
|
# @!attribute [rw] kms_key_id
|
|
8889
|
-
# The Amazon Resource Name (ARN) of
|
|
8890
|
-
# SageMaker uses to encrypt the captured
|
|
8891
|
-
# server-side encryption.
|
|
8894
|
+
# The Amazon Resource Name (ARN) of a Amazon Web Services Key
|
|
8895
|
+
# Management Service key that SageMaker uses to encrypt the captured
|
|
8896
|
+
# data at rest using Amazon S3 server-side encryption.
|
|
8892
8897
|
#
|
|
8893
8898
|
# The KmsKeyId can be any of the following formats:
|
|
8894
8899
|
#
|
|
@@ -9085,7 +9090,7 @@ module Aws::SageMaker
|
|
|
9085
9090
|
# @!attribute [rw] record_preprocessor_source_uri
|
|
9086
9091
|
# An Amazon S3 URI to a script that is called per row prior to running
|
|
9087
9092
|
# analysis. It can base64 decode the payload and convert it into a
|
|
9088
|
-
#
|
|
9093
|
+
# flatted json so that the built-in container can use the converted
|
|
9089
9094
|
# data. Applicable only for the built-in (first party) containers.
|
|
9090
9095
|
# @return [String]
|
|
9091
9096
|
#
|
|
@@ -13564,9 +13569,10 @@ module Aws::SageMaker
|
|
|
13564
13569
|
# @return [Types::MonitoringNetworkConfig]
|
|
13565
13570
|
#
|
|
13566
13571
|
# @!attribute [rw] role_arn
|
|
13567
|
-
# The Amazon Resource Name (ARN) of the
|
|
13568
|
-
#
|
|
13569
|
-
#
|
|
13572
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
|
13573
|
+
# and Access Management (IAM) role that has read permission to the
|
|
13574
|
+
# input data location and write permission to the output data location
|
|
13575
|
+
# in Amazon S3.
|
|
13570
13576
|
# @return [String]
|
|
13571
13577
|
#
|
|
13572
13578
|
# @!attribute [rw] stopping_condition
|
|
@@ -13834,9 +13840,10 @@ module Aws::SageMaker
|
|
|
13834
13840
|
# @return [Types::MonitoringNetworkConfig]
|
|
13835
13841
|
#
|
|
13836
13842
|
# @!attribute [rw] role_arn
|
|
13837
|
-
# The Amazon Resource Name (ARN) of the
|
|
13838
|
-
#
|
|
13839
|
-
#
|
|
13843
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
|
13844
|
+
# and Access Management (IAM) role that has read permission to the
|
|
13845
|
+
# input data location and write permission to the output data location
|
|
13846
|
+
# in Amazon S3.
|
|
13840
13847
|
# @return [String]
|
|
13841
13848
|
#
|
|
13842
13849
|
# @!attribute [rw] stopping_condition
|
|
@@ -17173,7 +17180,7 @@ module Aws::SageMaker
|
|
|
17173
17180
|
#
|
|
17174
17181
|
# @!attribute [rw] s3_data_distribution_type
|
|
17175
17182
|
# Whether input data distributed in Amazon S3 is fully replicated or
|
|
17176
|
-
# sharded by an
|
|
17183
|
+
# sharded by an S3 key. Defaults to `FullyReplicated`
|
|
17177
17184
|
# @return [String]
|
|
17178
17185
|
#
|
|
17179
17186
|
# @!attribute [rw] features_attribute
|
|
@@ -17215,6 +17222,10 @@ module Aws::SageMaker
|
|
|
17215
17222
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-schedule.html
|
|
17216
17223
|
# @return [String]
|
|
17217
17224
|
#
|
|
17225
|
+
# @!attribute [rw] exclude_features_attribute
|
|
17226
|
+
# The attributes of the input data to exclude from the analysis.
|
|
17227
|
+
# @return [String]
|
|
17228
|
+
#
|
|
17218
17229
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointInput AWS API Documentation
|
|
17219
17230
|
#
|
|
17220
17231
|
class EndpointInput < Struct.new(
|
|
@@ -17227,7 +17238,8 @@ module Aws::SageMaker
|
|
|
17227
17238
|
:probability_attribute,
|
|
17228
17239
|
:probability_threshold_attribute,
|
|
17229
17240
|
:start_time_offset,
|
|
17230
|
-
:end_time_offset
|
|
17241
|
+
:end_time_offset,
|
|
17242
|
+
:exclude_features_attribute)
|
|
17231
17243
|
SENSITIVE = []
|
|
17232
17244
|
include Aws::Structure
|
|
17233
17245
|
end
|
|
@@ -21400,8 +21412,8 @@ module Aws::SageMaker
|
|
|
21400
21412
|
#
|
|
21401
21413
|
# @!attribute [rw] content_type
|
|
21402
21414
|
# Configuration specifying how to treat different headers. If no
|
|
21403
|
-
# headers are specified
|
|
21404
|
-
#
|
|
21415
|
+
# headers are specified SageMaker will by default base64 encode when
|
|
21416
|
+
# capturing the data.
|
|
21405
21417
|
# @return [Types::CaptureContentTypeHeader]
|
|
21406
21418
|
#
|
|
21407
21419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceExperimentDataStorageConfig AWS API Documentation
|
|
@@ -23673,8 +23685,7 @@ module Aws::SageMaker
|
|
|
23673
23685
|
# @return [String]
|
|
23674
23686
|
#
|
|
23675
23687
|
# @!attribute [rw] sort_order
|
|
23676
|
-
#
|
|
23677
|
-
# The default is `Descending`.
|
|
23688
|
+
# The sort order for results. The default is `Descending`.
|
|
23678
23689
|
# @return [String]
|
|
23679
23690
|
#
|
|
23680
23691
|
# @!attribute [rw] next_token
|
|
@@ -25461,8 +25472,8 @@ module Aws::SageMaker
|
|
|
25461
25472
|
# @return [Array<Types::MonitoringJobDefinitionSummary>]
|
|
25462
25473
|
#
|
|
25463
25474
|
# @!attribute [rw] next_token
|
|
25464
|
-
#
|
|
25465
|
-
# next set of
|
|
25475
|
+
# If the response is truncated, Amazon SageMaker returns this token.
|
|
25476
|
+
# To retrieve the next set of jobs, use it in the subsequent request.
|
|
25466
25477
|
# @return [String]
|
|
25467
25478
|
#
|
|
25468
25479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelBiasJobDefinitionsResponse AWS API Documentation
|
|
@@ -25757,8 +25768,8 @@ module Aws::SageMaker
|
|
|
25757
25768
|
# @return [Array<Types::MonitoringJobDefinitionSummary>]
|
|
25758
25769
|
#
|
|
25759
25770
|
# @!attribute [rw] next_token
|
|
25760
|
-
#
|
|
25761
|
-
# next set of
|
|
25771
|
+
# If the response is truncated, Amazon SageMaker returns this token.
|
|
25772
|
+
# To retrieve the next set of jobs, use it in the subsequent request.
|
|
25762
25773
|
# @return [String]
|
|
25763
25774
|
#
|
|
25764
25775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelExplainabilityJobDefinitionsResponse AWS API Documentation
|
|
@@ -25986,8 +25997,7 @@ module Aws::SageMaker
|
|
|
25986
25997
|
# @return [String]
|
|
25987
25998
|
#
|
|
25988
25999
|
# @!attribute [rw] sort_order
|
|
25989
|
-
#
|
|
25990
|
-
# The default is `Descending`.
|
|
26000
|
+
# The sort order for results. The default is `Descending`.
|
|
25991
26001
|
# @return [String]
|
|
25992
26002
|
#
|
|
25993
26003
|
# @!attribute [rw] next_token
|
|
@@ -26244,8 +26254,8 @@ module Aws::SageMaker
|
|
|
26244
26254
|
# @return [String]
|
|
26245
26255
|
#
|
|
26246
26256
|
# @!attribute [rw] sort_by
|
|
26247
|
-
# Whether to sort
|
|
26248
|
-
#
|
|
26257
|
+
# Whether to sort results by `Status`, `CreationTime`, `ScheduledTime`
|
|
26258
|
+
# field. The default is `CreationTime`.
|
|
26249
26259
|
# @return [String]
|
|
26250
26260
|
#
|
|
26251
26261
|
# @!attribute [rw] sort_order
|
|
@@ -26329,8 +26339,8 @@ module Aws::SageMaker
|
|
|
26329
26339
|
# @return [Array<Types::MonitoringExecutionSummary>]
|
|
26330
26340
|
#
|
|
26331
26341
|
# @!attribute [rw] next_token
|
|
26332
|
-
#
|
|
26333
|
-
# next set of
|
|
26342
|
+
# If the response is truncated, Amazon SageMaker returns this token.
|
|
26343
|
+
# To retrieve the next set of jobs, use it in the subsequent reques
|
|
26334
26344
|
# @return [String]
|
|
26335
26345
|
#
|
|
26336
26346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringExecutionsResponse AWS API Documentation
|
|
@@ -26347,8 +26357,8 @@ module Aws::SageMaker
|
|
|
26347
26357
|
# @return [String]
|
|
26348
26358
|
#
|
|
26349
26359
|
# @!attribute [rw] sort_by
|
|
26350
|
-
# Whether to sort
|
|
26351
|
-
#
|
|
26360
|
+
# Whether to sort results by `Status`, `CreationTime`, `ScheduledTime`
|
|
26361
|
+
# field. The default is `CreationTime`.
|
|
26352
26362
|
# @return [String]
|
|
26353
26363
|
#
|
|
26354
26364
|
# @!attribute [rw] sort_order
|
|
@@ -26432,8 +26442,8 @@ module Aws::SageMaker
|
|
|
26432
26442
|
# @return [Array<Types::MonitoringScheduleSummary>]
|
|
26433
26443
|
#
|
|
26434
26444
|
# @!attribute [rw] next_token
|
|
26435
|
-
#
|
|
26436
|
-
# next set of
|
|
26445
|
+
# If the response is truncated, Amazon SageMaker returns this token.
|
|
26446
|
+
# To retrieve the next set of jobs, use it in the subsequent request.
|
|
26437
26447
|
# @return [String]
|
|
26438
26448
|
#
|
|
26439
26449
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMonitoringSchedulesResponse AWS API Documentation
|
|
@@ -29004,9 +29014,9 @@ module Aws::SageMaker
|
|
|
29004
29014
|
# @return [String]
|
|
29005
29015
|
#
|
|
29006
29016
|
# @!attribute [rw] config_uri
|
|
29007
|
-
# JSON formatted
|
|
29008
|
-
#
|
|
29009
|
-
#
|
|
29017
|
+
# JSON formatted S3 file that defines explainability parameters. For
|
|
29018
|
+
# more information on this JSON configuration file, see [Configure
|
|
29019
|
+
# model explainability parameters][1].
|
|
29010
29020
|
#
|
|
29011
29021
|
#
|
|
29012
29022
|
#
|
|
@@ -29784,7 +29794,7 @@ module Aws::SageMaker
|
|
|
29784
29794
|
# @!attribute [rw] record_preprocessor_source_uri
|
|
29785
29795
|
# An Amazon S3 URI to a script that is called per row prior to running
|
|
29786
29796
|
# analysis. It can base64 decode the payload and convert it into a
|
|
29787
|
-
#
|
|
29797
|
+
# flatted json so that the built-in container can use the converted
|
|
29788
29798
|
# data. Applicable only for the built-in (first party) containers.
|
|
29789
29799
|
# @return [String]
|
|
29790
29800
|
#
|
|
@@ -29840,8 +29850,8 @@ module Aws::SageMaker
|
|
|
29840
29850
|
include Aws::Structure
|
|
29841
29851
|
end
|
|
29842
29852
|
|
|
29843
|
-
# The input for the model quality monitoring job. Currently
|
|
29844
|
-
#
|
|
29853
|
+
# The input for the model quality monitoring job. Currently endponts are
|
|
29854
|
+
# supported for input for model quality monitoring jobs.
|
|
29845
29855
|
#
|
|
29846
29856
|
# @!attribute [rw] endpoint_input
|
|
29847
29857
|
# Input object for the endpoint
|
|
@@ -30112,7 +30122,7 @@ module Aws::SageMaker
|
|
|
30112
30122
|
# @!attribute [rw] record_preprocessor_source_uri
|
|
30113
30123
|
# An Amazon S3 URI to a script that is called per row prior to running
|
|
30114
30124
|
# analysis. It can base64 decode the payload and convert it into a
|
|
30115
|
-
#
|
|
30125
|
+
# flatted json so that the built-in container can use the converted
|
|
30116
30126
|
# data. Applicable only for the built-in (first party) containers.
|
|
30117
30127
|
# @return [String]
|
|
30118
30128
|
#
|
|
@@ -30181,9 +30191,10 @@ module Aws::SageMaker
|
|
|
30181
30191
|
# @return [Integer]
|
|
30182
30192
|
#
|
|
30183
30193
|
# @!attribute [rw] volume_kms_key_id
|
|
30184
|
-
# The Key Management Service (
|
|
30185
|
-
#
|
|
30186
|
-
# instance(s) that run the model
|
|
30194
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
|
30195
|
+
# KMS) key that Amazon SageMaker uses to encrypt data on the storage
|
|
30196
|
+
# volume attached to the ML compute instance(s) that run the model
|
|
30197
|
+
# monitoring job.
|
|
30187
30198
|
# @return [String]
|
|
30188
30199
|
#
|
|
30189
30200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringClusterConfig AWS API Documentation
|
|
@@ -30356,7 +30367,7 @@ module Aws::SageMaker
|
|
|
30356
30367
|
#
|
|
30357
30368
|
# @!attribute [rw] monitoring_output_config
|
|
30358
30369
|
# The array of outputs from the monitoring job to be uploaded to
|
|
30359
|
-
# Amazon S3.
|
|
30370
|
+
# Amazon Simple Storage Service (Amazon S3).
|
|
30360
30371
|
# @return [Types::MonitoringOutputConfig]
|
|
30361
30372
|
#
|
|
30362
30373
|
# @!attribute [rw] monitoring_resources
|
|
@@ -30436,7 +30447,7 @@ module Aws::SageMaker
|
|
|
30436
30447
|
# Represents the JSON dataset format used when running a monitoring job.
|
|
30437
30448
|
#
|
|
30438
30449
|
# @!attribute [rw] line
|
|
30439
|
-
# Indicates if the file should be read as a
|
|
30450
|
+
# Indicates if the file should be read as a json object per line.
|
|
30440
30451
|
# @return [Boolean]
|
|
30441
30452
|
#
|
|
30442
30453
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringJsonDatasetFormat AWS API Documentation
|
|
@@ -30507,9 +30518,9 @@ module Aws::SageMaker
|
|
|
30507
30518
|
# @return [Array<Types::MonitoringOutput>]
|
|
30508
30519
|
#
|
|
30509
30520
|
# @!attribute [rw] kms_key_id
|
|
30510
|
-
# The Key Management Service (
|
|
30511
|
-
#
|
|
30512
|
-
# encryption.
|
|
30521
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
|
30522
|
+
# KMS) key that Amazon SageMaker uses to encrypt the model artifacts
|
|
30523
|
+
# at rest using Amazon S3 server-side encryption.
|
|
30513
30524
|
# @return [String]
|
|
30514
30525
|
#
|
|
30515
30526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringOutputConfig AWS API Documentation
|
|
@@ -35843,10 +35854,9 @@ module Aws::SageMaker
|
|
|
35843
35854
|
# A cron expression that describes details about the monitoring
|
|
35844
35855
|
# schedule.
|
|
35845
35856
|
#
|
|
35846
|
-
#
|
|
35857
|
+
# The supported cron expressions are:
|
|
35847
35858
|
#
|
|
35848
|
-
# * If you want to set the job to start every hour,
|
|
35849
|
-
# following:
|
|
35859
|
+
# * If you want to set the job to start every hour, use the following:
|
|
35850
35860
|
#
|
|
35851
35861
|
# `Hourly: cron(0 * ? * * *)`
|
|
35852
35862
|
#
|
|
@@ -35880,12 +35890,50 @@ module Aws::SageMaker
|
|
|
35880
35890
|
# running every day.
|
|
35881
35891
|
#
|
|
35882
35892
|
# </note>
|
|
35893
|
+
#
|
|
35894
|
+
# You can also specify the keyword `NOW` to run the monitoring job
|
|
35895
|
+
# immediately, one time, without recurring.
|
|
35896
|
+
# @return [String]
|
|
35897
|
+
#
|
|
35898
|
+
# @!attribute [rw] data_analysis_start_time
|
|
35899
|
+
# Sets the start time for a monitoring job window. Express this time
|
|
35900
|
+
# as an offset to the times that you schedule your monitoring jobs to
|
|
35901
|
+
# run. You schedule monitoring jobs with the `ScheduleExpression`
|
|
35902
|
+
# parameter. Specify this offset in ISO 8601 duration format. For
|
|
35903
|
+
# example, if you want to monitor the five hours of data in your
|
|
35904
|
+
# dataset that precede the start of each monitoring job, you would
|
|
35905
|
+
# specify: `"-PT5H"`.
|
|
35906
|
+
#
|
|
35907
|
+
# The start time that you specify must not precede the end time that
|
|
35908
|
+
# you specify by more than 24 hours. You specify the end time with the
|
|
35909
|
+
# `DataAnalysisEndTime` parameter.
|
|
35910
|
+
#
|
|
35911
|
+
# If you set `ScheduleExpression` to `NOW`, this parameter is
|
|
35912
|
+
# required.
|
|
35913
|
+
# @return [String]
|
|
35914
|
+
#
|
|
35915
|
+
# @!attribute [rw] data_analysis_end_time
|
|
35916
|
+
# Sets the end time for a monitoring job window. Express this time as
|
|
35917
|
+
# an offset to the times that you schedule your monitoring jobs to
|
|
35918
|
+
# run. You schedule monitoring jobs with the `ScheduleExpression`
|
|
35919
|
+
# parameter. Specify this offset in ISO 8601 duration format. For
|
|
35920
|
+
# example, if you want to end the window one hour before the start of
|
|
35921
|
+
# each monitoring job, you would specify: `"-PT1H"`.
|
|
35922
|
+
#
|
|
35923
|
+
# The end time that you specify must not follow the start time that
|
|
35924
|
+
# you specify by more than 24 hours. You specify the start time with
|
|
35925
|
+
# the `DataAnalysisStartTime` parameter.
|
|
35926
|
+
#
|
|
35927
|
+
# If you set `ScheduleExpression` to `NOW`, this parameter is
|
|
35928
|
+
# required.
|
|
35883
35929
|
# @return [String]
|
|
35884
35930
|
#
|
|
35885
35931
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ScheduleConfig AWS API Documentation
|
|
35886
35932
|
#
|
|
35887
35933
|
class ScheduleConfig < Struct.new(
|
|
35888
|
-
:schedule_expression
|
|
35934
|
+
:schedule_expression,
|
|
35935
|
+
:data_analysis_start_time,
|
|
35936
|
+
:data_analysis_end_time)
|
|
35889
35937
|
SENSITIVE = []
|
|
35890
35938
|
include Aws::Structure
|
|
35891
35939
|
end
|
|
@@ -37742,7 +37790,7 @@ module Aws::SageMaker
|
|
|
37742
37790
|
# @return [Types::TimeSeriesConfig]
|
|
37743
37791
|
#
|
|
37744
37792
|
# @!attribute [rw] holiday_config
|
|
37745
|
-
# The collection of
|
|
37793
|
+
# The collection of holidays featurization attributes used to
|
|
37746
37794
|
# incorporate national holiday information into your forecasting
|
|
37747
37795
|
# model.
|
|
37748
37796
|
# @return [Array<Types::HolidayConfigAttributes>]
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
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.
|
|
4
|
+
version: 1.211.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-
|
|
11
|
+
date: 2023-09-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|