aws-sdk-sagemaker 1.115.0 → 1.119.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +23 -16
- data/lib/aws-sdk-sagemaker/client_api.rb +9 -0
- data/lib/aws-sdk-sagemaker/types.rb +47 -14
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 176a9dfadf031ce948c35cd66ef70750f7425a07ab2c316e8345d508c8f0bcbe
|
4
|
+
data.tar.gz: 5c1c027948c5e4b3cf1c85bf3edb195a74bdffa40e7b751d9d615428d06c8fc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e034e17519576c2ff0d3e67b54c27e8a34444876dbf55206ea04b574e08f3fc93fe765dc694b596fbd783f9ab554d25a73ba75d7bf97faa350364b6570015c90
|
7
|
+
data.tar.gz: 98f6ae47f3e6927f0a476d76aab065eb4553e530ba670b154347819220db099f52859f5b937acc1976f3b6e2dc76e4e8f5f216cbce5fe13ba8e22372b73056d9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.119.0 (2022-02-08)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Autopilot now generates an additional report with information on the performance of the best model, such as a Confusion matrix and Area under the receiver operating characteristic (AUC-ROC). The path to the report can be found in CandidateArtifactLocations.
|
8
|
+
|
9
|
+
1.118.0 (2022-02-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.117.0 (2022-01-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release added a new NNA accelerator compilation support for Sagemaker Neo.
|
18
|
+
|
19
|
+
1.116.0 (2022-01-26)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - API changes relating to Fail steps in model building pipeline and add PipelineExecutionFailureReason in PipelineExecutionSummary.
|
23
|
+
|
4
24
|
1.115.0 (2022-01-05)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.119.0
|
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
30
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
33
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
33
34
|
|
@@ -75,6 +76,7 @@ module Aws::SageMaker
|
|
75
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
78
|
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
81
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
80
82
|
|
@@ -1446,7 +1448,7 @@ module Aws::SageMaker
|
|
1446
1448
|
# target_platform: {
|
1447
1449
|
# os: "ANDROID", # required, accepts ANDROID, LINUX
|
1448
1450
|
# arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
|
1449
|
-
# accelerator: "INTEL_GRAPHICS", # accepts INTEL_GRAPHICS, MALI, NVIDIA
|
1451
|
+
# accelerator: "INTEL_GRAPHICS", # accepts INTEL_GRAPHICS, MALI, NVIDIA, NNA
|
1450
1452
|
# },
|
1451
1453
|
# compiler_options: "CompilerOptions",
|
1452
1454
|
# kms_key_id: "KmsKeyId",
|
@@ -2308,11 +2310,11 @@ module Aws::SageMaker
|
|
2308
2310
|
# @option params [Types::AsyncInferenceConfig] :async_inference_config
|
2309
2311
|
# Specifies configuration for how an endpoint performs asynchronous
|
2310
2312
|
# inference. This is a required field in order for your Endpoint to be
|
2311
|
-
# invoked using [
|
2313
|
+
# invoked using [InvokeEndpointAsync][1].
|
2312
2314
|
#
|
2313
2315
|
#
|
2314
2316
|
#
|
2315
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/
|
2317
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_runtime_InvokeEndpointAsync.html
|
2316
2318
|
#
|
2317
2319
|
# @return [Types::CreateEndpointConfigOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2318
2320
|
#
|
@@ -8266,12 +8268,13 @@ module Aws::SageMaker
|
|
8266
8268
|
# resp.best_candidate.last_modified_time #=> Time
|
8267
8269
|
# resp.best_candidate.failure_reason #=> String
|
8268
8270
|
# resp.best_candidate.candidate_properties.candidate_artifact_locations.explainability #=> String
|
8271
|
+
# resp.best_candidate.candidate_properties.candidate_artifact_locations.model_insights #=> String
|
8269
8272
|
# resp.best_candidate.candidate_properties.candidate_metrics #=> Array
|
8270
8273
|
# resp.best_candidate.candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC"
|
8271
8274
|
# resp.best_candidate.candidate_properties.candidate_metrics[0].value #=> Float
|
8272
8275
|
# resp.best_candidate.candidate_properties.candidate_metrics[0].set #=> String, one of "Train", "Validation", "Test"
|
8273
8276
|
# resp.auto_ml_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
|
8274
|
-
# resp.auto_ml_job_secondary_status #=> String, one of "Starting", "AnalyzingData", "FeatureEngineering", "ModelTuning", "MaxCandidatesReached", "Failed", "Stopped", "MaxAutoMLJobRuntimeReached", "Stopping", "CandidateDefinitionsGenerated", "GeneratingExplainabilityReport", "Completed", "ExplainabilityError", "DeployingModel", "ModelDeploymentError"
|
8277
|
+
# 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"
|
8275
8278
|
# resp.generate_candidate_definitions_only #=> Boolean
|
8276
8279
|
# resp.auto_ml_job_artifacts.candidate_definition_notebook_location #=> String
|
8277
8280
|
# resp.auto_ml_job_artifacts.data_exploration_notebook_location #=> String
|
@@ -8391,7 +8394,7 @@ module Aws::SageMaker
|
|
8391
8394
|
# resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "ml_eia2", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv2", "amba_cv22", "amba_cv25", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm", "imx8mplus"
|
8392
8395
|
# resp.output_config.target_platform.os #=> String, one of "ANDROID", "LINUX"
|
8393
8396
|
# resp.output_config.target_platform.arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
|
8394
|
-
# resp.output_config.target_platform.accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
|
8397
|
+
# resp.output_config.target_platform.accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA", "NNA"
|
8395
8398
|
# resp.output_config.compiler_options #=> String
|
8396
8399
|
# resp.output_config.kms_key_id #=> String
|
8397
8400
|
# resp.vpc_config.security_group_ids #=> Array
|
@@ -12300,7 +12303,7 @@ module Aws::SageMaker
|
|
12300
12303
|
# resp.auto_ml_job_summaries[0].auto_ml_job_name #=> String
|
12301
12304
|
# resp.auto_ml_job_summaries[0].auto_ml_job_arn #=> String
|
12302
12305
|
# resp.auto_ml_job_summaries[0].auto_ml_job_status #=> String, one of "Completed", "InProgress", "Failed", "Stopped", "Stopping"
|
12303
|
-
# 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"
|
12306
|
+
# 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"
|
12304
12307
|
# resp.auto_ml_job_summaries[0].creation_time #=> Time
|
12305
12308
|
# resp.auto_ml_job_summaries[0].end_time #=> Time
|
12306
12309
|
# resp.auto_ml_job_summaries[0].last_modified_time #=> Time
|
@@ -12385,6 +12388,7 @@ module Aws::SageMaker
|
|
12385
12388
|
# resp.candidates[0].last_modified_time #=> Time
|
12386
12389
|
# resp.candidates[0].failure_reason #=> String
|
12387
12390
|
# resp.candidates[0].candidate_properties.candidate_artifact_locations.explainability #=> String
|
12391
|
+
# resp.candidates[0].candidate_properties.candidate_artifact_locations.model_insights #=> String
|
12388
12392
|
# resp.candidates[0].candidate_properties.candidate_metrics #=> Array
|
12389
12393
|
# resp.candidates[0].candidate_properties.candidate_metrics[0].metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC"
|
12390
12394
|
# resp.candidates[0].candidate_properties.candidate_metrics[0].value #=> Float
|
@@ -12556,7 +12560,7 @@ module Aws::SageMaker
|
|
12556
12560
|
# resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "ml_eia2", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv2", "amba_cv22", "amba_cv25", "x86_win32", "x86_win64", "coreml", "jacinto_tda4vm", "imx8mplus"
|
12557
12561
|
# resp.compilation_job_summaries[0].compilation_target_platform_os #=> String, one of "ANDROID", "LINUX"
|
12558
12562
|
# resp.compilation_job_summaries[0].compilation_target_platform_arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
|
12559
|
-
# resp.compilation_job_summaries[0].compilation_target_platform_accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
|
12563
|
+
# resp.compilation_job_summaries[0].compilation_target_platform_accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA", "NNA"
|
12560
12564
|
# resp.compilation_job_summaries[0].last_modified_time #=> Time
|
12561
12565
|
# resp.compilation_job_summaries[0].compilation_job_status #=> String, one of "INPROGRESS", "COMPLETED", "FAILED", "STARTING", "STOPPING", "STOPPED"
|
12562
12566
|
# resp.next_token #=> String
|
@@ -14248,12 +14252,13 @@ module Aws::SageMaker
|
|
14248
14252
|
# model group.
|
14249
14253
|
#
|
14250
14254
|
# @option params [String] :model_package_type
|
14251
|
-
# A filter that returns
|
14255
|
+
# A filter that returns only the model packages of the specified type.
|
14252
14256
|
# This can be one of the following values.
|
14253
14257
|
#
|
14254
|
-
# * `
|
14258
|
+
# * `UNVERSIONED` - List only unversioined models. This is the default
|
14259
|
+
# value if no `ModelPackageType` is specified.
|
14255
14260
|
#
|
14256
|
-
# * `
|
14261
|
+
# * `VERSIONED` - List only versioned models.
|
14257
14262
|
#
|
14258
14263
|
# * `BOTH` - List both versioned and unversioned models.
|
14259
14264
|
#
|
@@ -14929,6 +14934,7 @@ module Aws::SageMaker
|
|
14929
14934
|
# resp.pipeline_execution_steps[0].metadata.emr.step_id #=> String
|
14930
14935
|
# resp.pipeline_execution_steps[0].metadata.emr.step_name #=> String
|
14931
14936
|
# resp.pipeline_execution_steps[0].metadata.emr.log_file_path #=> String
|
14937
|
+
# resp.pipeline_execution_steps[0].metadata.fail.error_message #=> String
|
14932
14938
|
# resp.next_token #=> String
|
14933
14939
|
#
|
14934
14940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutionSteps AWS API Documentation
|
@@ -14994,6 +15000,7 @@ module Aws::SageMaker
|
|
14994
15000
|
# resp.pipeline_execution_summaries[0].pipeline_execution_status #=> String, one of "Executing", "Stopping", "Stopped", "Failed", "Succeeded"
|
14995
15001
|
# resp.pipeline_execution_summaries[0].pipeline_execution_description #=> String
|
14996
15002
|
# resp.pipeline_execution_summaries[0].pipeline_execution_display_name #=> String
|
15003
|
+
# resp.pipeline_execution_summaries[0].pipeline_execution_failure_reason #=> String
|
14997
15004
|
# resp.next_token #=> String
|
14998
15005
|
#
|
14999
15006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineExecutions AWS API Documentation
|
@@ -17639,17 +17646,17 @@ module Aws::SageMaker
|
|
17639
17646
|
#
|
17640
17647
|
# A pipeline execution won't stop while a callback step is running.
|
17641
17648
|
# When you call `StopPipelineExecution` on a pipeline execution with a
|
17642
|
-
# running callback step,
|
17643
|
-
#
|
17644
|
-
#
|
17649
|
+
# running callback step, SageMaker Pipelines sends an additional Amazon
|
17650
|
+
# SQS message to the specified SQS queue. The body of the SQS message
|
17651
|
+
# contains a "Status" field which is set to "Stopping".
|
17645
17652
|
#
|
17646
17653
|
# You should add logic to your Amazon SQS message consumer to take any
|
17647
17654
|
# needed action (for example, resource cleanup) upon receipt of the
|
17648
17655
|
# message followed by a call to `SendPipelineExecutionStepSuccess` or
|
17649
17656
|
# `SendPipelineExecutionStepFailure`.
|
17650
17657
|
#
|
17651
|
-
# Only when
|
17652
|
-
#
|
17658
|
+
# Only when SageMaker Pipelines receives one of these calls will it stop
|
17659
|
+
# the pipeline execution.
|
17653
17660
|
#
|
17654
17661
|
# **Lambda Step**
|
17655
17662
|
#
|
@@ -19443,7 +19450,7 @@ module Aws::SageMaker
|
|
19443
19450
|
params: params,
|
19444
19451
|
config: config)
|
19445
19452
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
19446
|
-
context[:gem_version] = '1.
|
19453
|
+
context[:gem_version] = '1.119.0'
|
19447
19454
|
Seahorse::Client::Request.new(handlers, context)
|
19448
19455
|
end
|
19449
19456
|
|
@@ -618,6 +618,7 @@ module Aws::SageMaker
|
|
618
618
|
ExpiresInSeconds = Shapes::IntegerShape.new(name: 'ExpiresInSeconds')
|
619
619
|
Explainability = Shapes::StructureShape.new(name: 'Explainability')
|
620
620
|
ExplainabilityLocation = Shapes::StringShape.new(name: 'ExplainabilityLocation')
|
621
|
+
FailStepMetadata = Shapes::StructureShape.new(name: 'FailStepMetadata')
|
621
622
|
FailureReason = Shapes::StringShape.new(name: 'FailureReason')
|
622
623
|
FeatureDefinition = Shapes::StructureShape.new(name: 'FeatureDefinition')
|
623
624
|
FeatureDefinitions = Shapes::ListShape.new(name: 'FeatureDefinitions')
|
@@ -988,6 +989,7 @@ module Aws::SageMaker
|
|
988
989
|
ModelExplainabilityBaselineConfig = Shapes::StructureShape.new(name: 'ModelExplainabilityBaselineConfig')
|
989
990
|
ModelExplainabilityJobInput = Shapes::StructureShape.new(name: 'ModelExplainabilityJobInput')
|
990
991
|
ModelInput = Shapes::StructureShape.new(name: 'ModelInput')
|
992
|
+
ModelInsightsLocation = Shapes::StringShape.new(name: 'ModelInsightsLocation')
|
991
993
|
ModelLatencyThreshold = Shapes::StructureShape.new(name: 'ModelLatencyThreshold')
|
992
994
|
ModelLatencyThresholds = Shapes::ListShape.new(name: 'ModelLatencyThresholds')
|
993
995
|
ModelMetadataFilter = Shapes::StructureShape.new(name: 'ModelMetadataFilter')
|
@@ -1407,6 +1409,7 @@ module Aws::SageMaker
|
|
1407
1409
|
String200 = Shapes::StringShape.new(name: 'String200')
|
1408
1410
|
String2048 = Shapes::StringShape.new(name: 'String2048')
|
1409
1411
|
String256 = Shapes::StringShape.new(name: 'String256')
|
1412
|
+
String3072 = Shapes::StringShape.new(name: 'String3072')
|
1410
1413
|
String40 = Shapes::StringShape.new(name: 'String40')
|
1411
1414
|
String64 = Shapes::StringShape.new(name: 'String64')
|
1412
1415
|
String8192 = Shapes::StringShape.new(name: 'String8192')
|
@@ -1935,6 +1938,7 @@ module Aws::SageMaker
|
|
1935
1938
|
CallbackStepMetadata.struct_class = Types::CallbackStepMetadata
|
1936
1939
|
|
1937
1940
|
CandidateArtifactLocations.add_member(:explainability, Shapes::ShapeRef.new(shape: ExplainabilityLocation, required: true, location_name: "Explainability"))
|
1941
|
+
CandidateArtifactLocations.add_member(:model_insights, Shapes::ShapeRef.new(shape: ModelInsightsLocation, location_name: "ModelInsights"))
|
1938
1942
|
CandidateArtifactLocations.struct_class = Types::CandidateArtifactLocations
|
1939
1943
|
|
1940
1944
|
CandidateProperties.add_member(:candidate_artifact_locations, Shapes::ShapeRef.new(shape: CandidateArtifactLocations, location_name: "CandidateArtifactLocations"))
|
@@ -4030,6 +4034,9 @@ module Aws::SageMaker
|
|
4030
4034
|
Explainability.add_member(:report, Shapes::ShapeRef.new(shape: MetricsSource, location_name: "Report"))
|
4031
4035
|
Explainability.struct_class = Types::Explainability
|
4032
4036
|
|
4037
|
+
FailStepMetadata.add_member(:error_message, Shapes::ShapeRef.new(shape: String3072, location_name: "ErrorMessage"))
|
4038
|
+
FailStepMetadata.struct_class = Types::FailStepMetadata
|
4039
|
+
|
4033
4040
|
FeatureDefinition.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, location_name: "FeatureName"))
|
4034
4041
|
FeatureDefinition.add_member(:feature_type, Shapes::ShapeRef.new(shape: FeatureType, location_name: "FeatureType"))
|
4035
4042
|
FeatureDefinition.struct_class = Types::FeatureDefinition
|
@@ -5889,6 +5896,7 @@ module Aws::SageMaker
|
|
5889
5896
|
PipelineExecutionStepMetadata.add_member(:quality_check, Shapes::ShapeRef.new(shape: QualityCheckStepMetadata, location_name: "QualityCheck"))
|
5890
5897
|
PipelineExecutionStepMetadata.add_member(:clarify_check, Shapes::ShapeRef.new(shape: ClarifyCheckStepMetadata, location_name: "ClarifyCheck"))
|
5891
5898
|
PipelineExecutionStepMetadata.add_member(:emr, Shapes::ShapeRef.new(shape: EMRStepMetadata, location_name: "EMR"))
|
5899
|
+
PipelineExecutionStepMetadata.add_member(:fail, Shapes::ShapeRef.new(shape: FailStepMetadata, location_name: "Fail"))
|
5892
5900
|
PipelineExecutionStepMetadata.struct_class = Types::PipelineExecutionStepMetadata
|
5893
5901
|
|
5894
5902
|
PipelineExecutionSummary.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
|
@@ -5896,6 +5904,7 @@ module Aws::SageMaker
|
|
5896
5904
|
PipelineExecutionSummary.add_member(:pipeline_execution_status, Shapes::ShapeRef.new(shape: PipelineExecutionStatus, location_name: "PipelineExecutionStatus"))
|
5897
5905
|
PipelineExecutionSummary.add_member(:pipeline_execution_description, Shapes::ShapeRef.new(shape: PipelineExecutionDescription, location_name: "PipelineExecutionDescription"))
|
5898
5906
|
PipelineExecutionSummary.add_member(:pipeline_execution_display_name, Shapes::ShapeRef.new(shape: PipelineExecutionName, location_name: "PipelineExecutionDisplayName"))
|
5907
|
+
PipelineExecutionSummary.add_member(:pipeline_execution_failure_reason, Shapes::ShapeRef.new(shape: String3072, location_name: "PipelineExecutionFailureReason"))
|
5899
5908
|
PipelineExecutionSummary.struct_class = Types::PipelineExecutionSummary
|
5900
5909
|
|
5901
5910
|
PipelineExecutionSummaryList.member = Shapes::ShapeRef.new(shape: PipelineExecutionSummary)
|
@@ -2769,10 +2769,16 @@ module Aws::SageMaker
|
|
2769
2769
|
# the AutoML candidate.
|
2770
2770
|
# @return [String]
|
2771
2771
|
#
|
2772
|
+
# @!attribute [rw] model_insights
|
2773
|
+
# The Amazon S3 prefix to the model insight artifacts generated for
|
2774
|
+
# the AutoML candidate.
|
2775
|
+
# @return [String]
|
2776
|
+
#
|
2772
2777
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CandidateArtifactLocations AWS API Documentation
|
2773
2778
|
#
|
2774
2779
|
class CandidateArtifactLocations < Struct.new(
|
2775
|
-
:explainability
|
2780
|
+
:explainability,
|
2781
|
+
:model_insights)
|
2776
2782
|
SENSITIVE = []
|
2777
2783
|
include Aws::Structure
|
2778
2784
|
end
|
@@ -4580,7 +4586,7 @@ module Aws::SageMaker
|
|
4580
4586
|
# target_platform: {
|
4581
4587
|
# os: "ANDROID", # required, accepts ANDROID, LINUX
|
4582
4588
|
# arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
|
4583
|
-
# accelerator: "INTEL_GRAPHICS", # accepts INTEL_GRAPHICS, MALI, NVIDIA
|
4589
|
+
# accelerator: "INTEL_GRAPHICS", # accepts INTEL_GRAPHICS, MALI, NVIDIA, NNA
|
4584
4590
|
# },
|
4585
4591
|
# compiler_options: "CompilerOptions",
|
4586
4592
|
# kms_key_id: "KmsKeyId",
|
@@ -5404,11 +5410,11 @@ module Aws::SageMaker
|
|
5404
5410
|
# @!attribute [rw] async_inference_config
|
5405
5411
|
# Specifies configuration for how an endpoint performs asynchronous
|
5406
5412
|
# inference. This is a required field in order for your Endpoint to be
|
5407
|
-
# invoked using [
|
5413
|
+
# invoked using [InvokeEndpointAsync][1].
|
5408
5414
|
#
|
5409
5415
|
#
|
5410
5416
|
#
|
5411
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/
|
5417
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_runtime_InvokeEndpointAsync.html
|
5412
5418
|
# @return [Types::AsyncInferenceConfig]
|
5413
5419
|
#
|
5414
5420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEndpointConfigInput AWS API Documentation
|
@@ -17976,6 +17982,21 @@ module Aws::SageMaker
|
|
17976
17982
|
include Aws::Structure
|
17977
17983
|
end
|
17978
17984
|
|
17985
|
+
# The container for the metadata for Fail step.
|
17986
|
+
#
|
17987
|
+
# @!attribute [rw] error_message
|
17988
|
+
# A message that you define and then is processed and rendered by the
|
17989
|
+
# Fail step when the error occurs.
|
17990
|
+
# @return [String]
|
17991
|
+
#
|
17992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/FailStepMetadata AWS API Documentation
|
17993
|
+
#
|
17994
|
+
class FailStepMetadata < Struct.new(
|
17995
|
+
:error_message)
|
17996
|
+
SENSITIVE = []
|
17997
|
+
include Aws::Structure
|
17998
|
+
end
|
17999
|
+
|
17979
18000
|
# A list of features. You must include `FeatureName` and `FeatureType`.
|
17980
18001
|
# Valid feature `FeatureType`s are `Integral`, `Fractional` and
|
17981
18002
|
# `String`.
|
@@ -25108,12 +25129,13 @@ module Aws::SageMaker
|
|
25108
25129
|
# @return [String]
|
25109
25130
|
#
|
25110
25131
|
# @!attribute [rw] model_package_type
|
25111
|
-
# A filter that returns
|
25112
|
-
#
|
25132
|
+
# A filter that returns only the model packages of the specified type.
|
25133
|
+
# This can be one of the following values.
|
25113
25134
|
#
|
25114
|
-
# * `
|
25135
|
+
# * `UNVERSIONED` - List only unversioined models. This is the default
|
25136
|
+
# value if no `ModelPackageType` is specified.
|
25115
25137
|
#
|
25116
|
-
# * `
|
25138
|
+
# * `VERSIONED` - List only versioned models.
|
25117
25139
|
#
|
25118
25140
|
# * `BOTH` - List both versioned and unversioned models.
|
25119
25141
|
# @return [String]
|
@@ -30400,7 +30422,7 @@ module Aws::SageMaker
|
|
30400
30422
|
# target_platform: {
|
30401
30423
|
# os: "ANDROID", # required, accepts ANDROID, LINUX
|
30402
30424
|
# arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
|
30403
|
-
# accelerator: "INTEL_GRAPHICS", # accepts INTEL_GRAPHICS, MALI, NVIDIA
|
30425
|
+
# accelerator: "INTEL_GRAPHICS", # accepts INTEL_GRAPHICS, MALI, NVIDIA, NNA
|
30404
30426
|
# },
|
30405
30427
|
# compiler_options: "CompilerOptions",
|
30406
30428
|
# kms_key_id: "KmsKeyId",
|
@@ -31284,11 +31306,11 @@ module Aws::SageMaker
|
|
31284
31306
|
#
|
31285
31307
|
# @!attribute [rw] attempt_count
|
31286
31308
|
# The current attempt of the execution step. For more information, see
|
31287
|
-
# [Retry Policy for
|
31309
|
+
# [Retry Policy for SageMaker Pipelines steps][1].
|
31288
31310
|
#
|
31289
31311
|
#
|
31290
31312
|
#
|
31291
|
-
# [1]: https://docs.aws.amazon.com/
|
31313
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-retry-policy.html
|
31292
31314
|
# @return [Integer]
|
31293
31315
|
#
|
31294
31316
|
# @!attribute [rw] failure_reason
|
@@ -31419,6 +31441,10 @@ module Aws::SageMaker
|
|
31419
31441
|
# The configurations and outcomes of an EMR step execution.
|
31420
31442
|
# @return [Types::EMRStepMetadata]
|
31421
31443
|
#
|
31444
|
+
# @!attribute [rw] fail
|
31445
|
+
# The configurations and outcomes of a Fail step execution.
|
31446
|
+
# @return [Types::FailStepMetadata]
|
31447
|
+
#
|
31422
31448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionStepMetadata AWS API Documentation
|
31423
31449
|
#
|
31424
31450
|
class PipelineExecutionStepMetadata < Struct.new(
|
@@ -31433,7 +31459,8 @@ module Aws::SageMaker
|
|
31433
31459
|
:lambda,
|
31434
31460
|
:quality_check,
|
31435
31461
|
:clarify_check,
|
31436
|
-
:emr
|
31462
|
+
:emr,
|
31463
|
+
:fail)
|
31437
31464
|
SENSITIVE = []
|
31438
31465
|
include Aws::Structure
|
31439
31466
|
end
|
@@ -31460,6 +31487,11 @@ module Aws::SageMaker
|
|
31460
31487
|
# The display name of the pipeline execution.
|
31461
31488
|
# @return [String]
|
31462
31489
|
#
|
31490
|
+
# @!attribute [rw] pipeline_execution_failure_reason
|
31491
|
+
# A message generated by SageMaker Pipelines describing why the
|
31492
|
+
# pipeline execution failed.
|
31493
|
+
# @return [String]
|
31494
|
+
#
|
31463
31495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionSummary AWS API Documentation
|
31464
31496
|
#
|
31465
31497
|
class PipelineExecutionSummary < Struct.new(
|
@@ -31467,7 +31499,8 @@ module Aws::SageMaker
|
|
31467
31499
|
:start_time,
|
31468
31500
|
:pipeline_execution_status,
|
31469
31501
|
:pipeline_execution_description,
|
31470
|
-
:pipeline_execution_display_name
|
31502
|
+
:pipeline_execution_display_name,
|
31503
|
+
:pipeline_execution_failure_reason)
|
31471
31504
|
SENSITIVE = []
|
31472
31505
|
include Aws::Structure
|
31473
31506
|
end
|
@@ -35968,7 +36001,7 @@ module Aws::SageMaker
|
|
35968
36001
|
# {
|
35969
36002
|
# os: "ANDROID", # required, accepts ANDROID, LINUX
|
35970
36003
|
# arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
|
35971
|
-
# accelerator: "INTEL_GRAPHICS", # accepts INTEL_GRAPHICS, MALI, NVIDIA
|
36004
|
+
# accelerator: "INTEL_GRAPHICS", # accepts INTEL_GRAPHICS, MALI, NVIDIA, NNA
|
35972
36005
|
# }
|
35973
36006
|
#
|
35974
36007
|
# @!attribute [rw] os
|
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.119.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: 2022-
|
11
|
+
date: 2022-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.126.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|