aws-sdk-sagemaker 1.224.0 → 1.225.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 +524 -469
- data/lib/aws-sdk-sagemaker/client_api.rb +118 -78
- data/lib/aws-sdk-sagemaker/endpoints.rb +14 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-sagemaker/types.rb +345 -308
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -1267,6 +1267,10 @@ module Aws::SageMaker
|
|
1267
1267
|
# The user profile name.
|
1268
1268
|
# @return [String]
|
1269
1269
|
#
|
1270
|
+
# @!attribute [rw] space_name
|
1271
|
+
# The name of the space.
|
1272
|
+
# @return [String]
|
1273
|
+
#
|
1270
1274
|
# @!attribute [rw] app_type
|
1271
1275
|
# The type of app.
|
1272
1276
|
# @return [String]
|
@@ -1283,10 +1287,6 @@ module Aws::SageMaker
|
|
1283
1287
|
# The creation time.
|
1284
1288
|
# @return [Time]
|
1285
1289
|
#
|
1286
|
-
# @!attribute [rw] space_name
|
1287
|
-
# The name of the space.
|
1288
|
-
# @return [String]
|
1289
|
-
#
|
1290
1290
|
# @!attribute [rw] resource_spec
|
1291
1291
|
# Specifies the ARN's of a SageMaker image and SageMaker image
|
1292
1292
|
# version, and the instance type that the version runs on.
|
@@ -1297,11 +1297,11 @@ module Aws::SageMaker
|
|
1297
1297
|
class AppDetails < Struct.new(
|
1298
1298
|
:domain_id,
|
1299
1299
|
:user_profile_name,
|
1300
|
+
:space_name,
|
1300
1301
|
:app_type,
|
1301
1302
|
:app_name,
|
1302
1303
|
:status,
|
1303
1304
|
:creation_time,
|
1304
|
-
:space_name,
|
1305
1305
|
:resource_spec)
|
1306
1306
|
SENSITIVE = []
|
1307
1307
|
include Aws::Structure
|
@@ -2243,17 +2243,17 @@ module Aws::SageMaker
|
|
2243
2243
|
# settings.
|
2244
2244
|
# @return [Types::AutoMLSecurityConfig]
|
2245
2245
|
#
|
2246
|
+
# @!attribute [rw] candidate_generation_config
|
2247
|
+
# The configuration for generating a candidate for an AutoML job
|
2248
|
+
# (optional).
|
2249
|
+
# @return [Types::AutoMLCandidateGenerationConfig]
|
2250
|
+
#
|
2246
2251
|
# @!attribute [rw] data_split_config
|
2247
2252
|
# The configuration for splitting the input training dataset.
|
2248
2253
|
#
|
2249
2254
|
# Type: AutoMLDataSplitConfig
|
2250
2255
|
# @return [Types::AutoMLDataSplitConfig]
|
2251
2256
|
#
|
2252
|
-
# @!attribute [rw] candidate_generation_config
|
2253
|
-
# The configuration for generating a candidate for an AutoML job
|
2254
|
-
# (optional).
|
2255
|
-
# @return [Types::AutoMLCandidateGenerationConfig]
|
2256
|
-
#
|
2257
2257
|
# @!attribute [rw] mode
|
2258
2258
|
# The method that Autopilot uses to train the data. You can either
|
2259
2259
|
# specify the mode manually or let Autopilot choose for you based on
|
@@ -2288,8 +2288,8 @@ module Aws::SageMaker
|
|
2288
2288
|
class AutoMLJobConfig < Struct.new(
|
2289
2289
|
:completion_criteria,
|
2290
2290
|
:security_config,
|
2291
|
-
:data_split_config,
|
2292
2291
|
:candidate_generation_config,
|
2292
|
+
:data_split_config,
|
2293
2293
|
:mode)
|
2294
2294
|
SENSITIVE = []
|
2295
2295
|
include Aws::Structure
|
@@ -2499,16 +2499,16 @@ module Aws::SageMaker
|
|
2499
2499
|
# classification problem type.
|
2500
2500
|
# @return [Types::TextClassificationJobConfig]
|
2501
2501
|
#
|
2502
|
-
# @!attribute [rw] tabular_job_config
|
2503
|
-
# Settings used to configure an AutoML job V2 for the tabular problem
|
2504
|
-
# type (regression, classification).
|
2505
|
-
# @return [Types::TabularJobConfig]
|
2506
|
-
#
|
2507
2502
|
# @!attribute [rw] time_series_forecasting_job_config
|
2508
2503
|
# Settings used to configure an AutoML job V2 for the time-series
|
2509
2504
|
# forecasting problem type.
|
2510
2505
|
# @return [Types::TimeSeriesForecastingJobConfig]
|
2511
2506
|
#
|
2507
|
+
# @!attribute [rw] tabular_job_config
|
2508
|
+
# Settings used to configure an AutoML job V2 for the tabular problem
|
2509
|
+
# type (regression, classification).
|
2510
|
+
# @return [Types::TabularJobConfig]
|
2511
|
+
#
|
2512
2512
|
# @!attribute [rw] text_generation_job_config
|
2513
2513
|
# Settings used to configure an AutoML job V2 for the text generation
|
2514
2514
|
# (LLMs fine-tuning) problem type.
|
@@ -2530,8 +2530,8 @@ module Aws::SageMaker
|
|
2530
2530
|
class AutoMLProblemTypeConfig < Struct.new(
|
2531
2531
|
:image_classification_job_config,
|
2532
2532
|
:text_classification_job_config,
|
2533
|
-
:tabular_job_config,
|
2534
2533
|
:time_series_forecasting_job_config,
|
2534
|
+
:tabular_job_config,
|
2535
2535
|
:text_generation_job_config,
|
2536
2536
|
:unknown)
|
2537
2537
|
SENSITIVE = []
|
@@ -2540,8 +2540,8 @@ module Aws::SageMaker
|
|
2540
2540
|
|
2541
2541
|
class ImageClassificationJobConfig < AutoMLProblemTypeConfig; end
|
2542
2542
|
class TextClassificationJobConfig < AutoMLProblemTypeConfig; end
|
2543
|
-
class TabularJobConfig < AutoMLProblemTypeConfig; end
|
2544
2543
|
class TimeSeriesForecastingJobConfig < AutoMLProblemTypeConfig; end
|
2544
|
+
class TabularJobConfig < AutoMLProblemTypeConfig; end
|
2545
2545
|
class TextGenerationJobConfig < AutoMLProblemTypeConfig; end
|
2546
2546
|
class Unknown < AutoMLProblemTypeConfig; end
|
2547
2547
|
end
|
@@ -3226,14 +3226,14 @@ module Aws::SageMaker
|
|
3226
3226
|
# The settings for connecting to an external data source with OAuth.
|
3227
3227
|
# @return [Array<Types::IdentityProviderOAuthSetting>]
|
3228
3228
|
#
|
3229
|
-
# @!attribute [rw] kendra_settings
|
3230
|
-
# The settings for document querying.
|
3231
|
-
# @return [Types::KendraSettings]
|
3232
|
-
#
|
3233
3229
|
# @!attribute [rw] direct_deploy_settings
|
3234
3230
|
# The model deployment settings for the SageMaker Canvas application.
|
3235
3231
|
# @return [Types::DirectDeploySettings]
|
3236
3232
|
#
|
3233
|
+
# @!attribute [rw] kendra_settings
|
3234
|
+
# The settings for document querying.
|
3235
|
+
# @return [Types::KendraSettings]
|
3236
|
+
#
|
3237
3237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CanvasAppSettings AWS API Documentation
|
3238
3238
|
#
|
3239
3239
|
class CanvasAppSettings < Struct.new(
|
@@ -3241,8 +3241,8 @@ module Aws::SageMaker
|
|
3241
3241
|
:model_register_settings,
|
3242
3242
|
:workspace_settings,
|
3243
3243
|
:identity_provider_o_auth_settings,
|
3244
|
-
:
|
3245
|
-
:
|
3244
|
+
:direct_deploy_settings,
|
3245
|
+
:kendra_settings)
|
3246
3246
|
SENSITIVE = []
|
3247
3247
|
include Aws::Structure
|
3248
3248
|
end
|
@@ -4592,6 +4592,16 @@ module Aws::SageMaker
|
|
4592
4592
|
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
|
4593
4593
|
# @return [String]
|
4594
4594
|
#
|
4595
|
+
# @!attribute [rw] model_data_source
|
4596
|
+
# Specifies the location of ML model data to deploy.
|
4597
|
+
#
|
4598
|
+
# <note markdown="1"> Currently you cannot use `ModelDataSource` in conjunction with
|
4599
|
+
# SageMaker batch transform, SageMaker serverless endpoints, SageMaker
|
4600
|
+
# multi-model endpoints, and SageMaker Marketplace.
|
4601
|
+
#
|
4602
|
+
# </note>
|
4603
|
+
# @return [Types::ModelDataSource]
|
4604
|
+
#
|
4595
4605
|
# @!attribute [rw] environment
|
4596
4606
|
# The environment variables to set in the Docker container. Each key
|
4597
4607
|
# and value in the `Environment` string to string map can have length
|
@@ -4611,16 +4621,6 @@ module Aws::SageMaker
|
|
4611
4621
|
# Specifies additional configuration for multi-model endpoints.
|
4612
4622
|
# @return [Types::MultiModelConfig]
|
4613
4623
|
#
|
4614
|
-
# @!attribute [rw] model_data_source
|
4615
|
-
# Specifies the location of ML model data to deploy.
|
4616
|
-
#
|
4617
|
-
# <note markdown="1"> Currently you cannot use `ModelDataSource` in conjunction with
|
4618
|
-
# SageMaker batch transform, SageMaker serverless endpoints, SageMaker
|
4619
|
-
# multi-model endpoints, and SageMaker Marketplace.
|
4620
|
-
#
|
4621
|
-
# </note>
|
4622
|
-
# @return [Types::ModelDataSource]
|
4623
|
-
#
|
4624
4624
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ContainerDefinition AWS API Documentation
|
4625
4625
|
#
|
4626
4626
|
class ContainerDefinition < Struct.new(
|
@@ -4629,11 +4629,11 @@ module Aws::SageMaker
|
|
4629
4629
|
:image_config,
|
4630
4630
|
:mode,
|
4631
4631
|
:model_data_url,
|
4632
|
+
:model_data_source,
|
4632
4633
|
:environment,
|
4633
4634
|
:model_package_name,
|
4634
4635
|
:inference_specification_name,
|
4635
|
-
:multi_model_config
|
4636
|
-
:model_data_source)
|
4636
|
+
:multi_model_config)
|
4637
4637
|
SENSITIVE = []
|
4638
4638
|
include Aws::Structure
|
4639
4639
|
end
|
@@ -5012,6 +5012,11 @@ module Aws::SageMaker
|
|
5012
5012
|
# must be set.
|
5013
5013
|
# @return [String]
|
5014
5014
|
#
|
5015
|
+
# @!attribute [rw] space_name
|
5016
|
+
# The name of the space. If this value is not set, then
|
5017
|
+
# `UserProfileName` must be set.
|
5018
|
+
# @return [String]
|
5019
|
+
#
|
5015
5020
|
# @!attribute [rw] app_type
|
5016
5021
|
# The type of app.
|
5017
5022
|
# @return [String]
|
@@ -5039,21 +5044,16 @@ module Aws::SageMaker
|
|
5039
5044
|
# </note>
|
5040
5045
|
# @return [Types::ResourceSpec]
|
5041
5046
|
#
|
5042
|
-
# @!attribute [rw] space_name
|
5043
|
-
# The name of the space. If this value is not set, then
|
5044
|
-
# `UserProfileName` must be set.
|
5045
|
-
# @return [String]
|
5046
|
-
#
|
5047
5047
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppRequest AWS API Documentation
|
5048
5048
|
#
|
5049
5049
|
class CreateAppRequest < Struct.new(
|
5050
5050
|
:domain_id,
|
5051
5051
|
:user_profile_name,
|
5052
|
+
:space_name,
|
5052
5053
|
:app_type,
|
5053
5054
|
:app_name,
|
5054
5055
|
:tags,
|
5055
|
-
:resource_spec
|
5056
|
-
:space_name)
|
5056
|
+
:resource_spec)
|
5057
5057
|
SENSITIVE = []
|
5058
5058
|
include Aws::Structure
|
5059
5059
|
end
|
@@ -5764,6 +5764,10 @@ module Aws::SageMaker
|
|
5764
5764
|
# `CreateDomain`.
|
5765
5765
|
# @return [Types::UserSettings]
|
5766
5766
|
#
|
5767
|
+
# @!attribute [rw] domain_settings
|
5768
|
+
# A collection of `Domain` settings.
|
5769
|
+
# @return [Types::DomainSettings]
|
5770
|
+
#
|
5767
5771
|
# @!attribute [rw] subnet_ids
|
5768
5772
|
# The VPC subnets that the domain uses for communication.
|
5769
5773
|
# @return [Array<String>]
|
@@ -5811,10 +5815,6 @@ module Aws::SageMaker
|
|
5811
5815
|
# value must be set to `Service`.
|
5812
5816
|
# @return [String]
|
5813
5817
|
#
|
5814
|
-
# @!attribute [rw] domain_settings
|
5815
|
-
# A collection of `Domain` settings.
|
5816
|
-
# @return [Types::DomainSettings]
|
5817
|
-
#
|
5818
5818
|
# @!attribute [rw] default_space_settings
|
5819
5819
|
# The default settings used to create a space.
|
5820
5820
|
# @return [Types::DefaultSpaceSettings]
|
@@ -5825,6 +5825,7 @@ module Aws::SageMaker
|
|
5825
5825
|
:domain_name,
|
5826
5826
|
:auth_mode,
|
5827
5827
|
:default_user_settings,
|
5828
|
+
:domain_settings,
|
5828
5829
|
:subnet_ids,
|
5829
5830
|
:vpc_id,
|
5830
5831
|
:tags,
|
@@ -5832,7 +5833,6 @@ module Aws::SageMaker
|
|
5832
5833
|
:home_efs_file_system_kms_key_id,
|
5833
5834
|
:kms_key_id,
|
5834
5835
|
:app_security_group_management,
|
5835
|
-
:domain_settings,
|
5836
5836
|
:default_space_settings)
|
5837
5837
|
SENSITIVE = []
|
5838
5838
|
include Aws::Structure
|
@@ -7822,21 +7822,6 @@ module Aws::SageMaker
|
|
7822
7822
|
# not need to pass this option.
|
7823
7823
|
# @return [String]
|
7824
7824
|
#
|
7825
|
-
# @!attribute [rw] customer_metadata_properties
|
7826
|
-
# The metadata properties associated with the model package versions.
|
7827
|
-
# @return [Hash<String,String>]
|
7828
|
-
#
|
7829
|
-
# @!attribute [rw] drift_check_baselines
|
7830
|
-
# Represents the drift check baselines that can be used when the model
|
7831
|
-
# monitor is set using the model package. For more information, see
|
7832
|
-
# the topic on [Drift Detection against Previous Baselines in
|
7833
|
-
# SageMaker Pipelines][1] in the *Amazon SageMaker Developer Guide*.
|
7834
|
-
#
|
7835
|
-
#
|
7836
|
-
#
|
7837
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
|
7838
|
-
# @return [Types::DriftCheckBaselines]
|
7839
|
-
#
|
7840
7825
|
# @!attribute [rw] domain
|
7841
7826
|
# The machine learning domain of your model package and its
|
7842
7827
|
# components. Common machine learning domains include computer vision
|
@@ -7866,6 +7851,21 @@ module Aws::SageMaker
|
|
7866
7851
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_runtime_InvokeEndpoint.html#API_runtime_InvokeEndpoint_RequestSyntax
|
7867
7852
|
# @return [String]
|
7868
7853
|
#
|
7854
|
+
# @!attribute [rw] customer_metadata_properties
|
7855
|
+
# The metadata properties associated with the model package versions.
|
7856
|
+
# @return [Hash<String,String>]
|
7857
|
+
#
|
7858
|
+
# @!attribute [rw] drift_check_baselines
|
7859
|
+
# Represents the drift check baselines that can be used when the model
|
7860
|
+
# monitor is set using the model package. For more information, see
|
7861
|
+
# the topic on [Drift Detection against Previous Baselines in
|
7862
|
+
# SageMaker Pipelines][1] in the *Amazon SageMaker Developer Guide*.
|
7863
|
+
#
|
7864
|
+
#
|
7865
|
+
#
|
7866
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
|
7867
|
+
# @return [Types::DriftCheckBaselines]
|
7868
|
+
#
|
7869
7869
|
# @!attribute [rw] additional_inference_specifications
|
7870
7870
|
# An array of additional Inference Specification objects. Each
|
7871
7871
|
# additional Inference Specification specifies artifacts based on this
|
@@ -7892,11 +7892,11 @@ module Aws::SageMaker
|
|
7892
7892
|
:metadata_properties,
|
7893
7893
|
:model_metrics,
|
7894
7894
|
:client_token,
|
7895
|
-
:customer_metadata_properties,
|
7896
|
-
:drift_check_baselines,
|
7897
7895
|
:domain,
|
7898
7896
|
:task,
|
7899
7897
|
:sample_payload_url,
|
7898
|
+
:customer_metadata_properties,
|
7899
|
+
:drift_check_baselines,
|
7900
7900
|
:additional_inference_specifications,
|
7901
7901
|
:skip_model_validation)
|
7902
7902
|
SENSITIVE = []
|
@@ -8376,6 +8376,10 @@ module Aws::SageMaker
|
|
8376
8376
|
# * `app:RStudioServerPro:relative/path`: Directs users to the
|
8377
8377
|
# relative path in the RStudio application.
|
8378
8378
|
#
|
8379
|
+
# * `app:CodeEditor:relative/path`: Directs users to the relative path
|
8380
|
+
# in the Code Editor, based on Code-OSS, Visual Studio Code - Open
|
8381
|
+
# Source application.
|
8382
|
+
#
|
8379
8383
|
# * `app:Canvas:relative/path`: Directs users to the relative path in
|
8380
8384
|
# the Canvas application.
|
8381
8385
|
# @return [String]
|
@@ -8614,10 +8618,6 @@ module Aws::SageMaker
|
|
8614
8618
|
# A collection of space settings.
|
8615
8619
|
# @return [Types::SpaceSettings]
|
8616
8620
|
#
|
8617
|
-
# @!attribute [rw] space_display_name
|
8618
|
-
# The name of the space that appears in the SageMaker Studio UI.
|
8619
|
-
# @return [String]
|
8620
|
-
#
|
8621
8621
|
# @!attribute [rw] ownership_settings
|
8622
8622
|
# A collection of ownership settings.
|
8623
8623
|
# @return [Types::OwnershipSettings]
|
@@ -8626,6 +8626,10 @@ module Aws::SageMaker
|
|
8626
8626
|
# A collection of space sharing settings.
|
8627
8627
|
# @return [Types::SpaceSharingSettings]
|
8628
8628
|
#
|
8629
|
+
# @!attribute [rw] space_display_name
|
8630
|
+
# The name of the space that appears in the SageMaker Studio UI.
|
8631
|
+
# @return [String]
|
8632
|
+
#
|
8629
8633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateSpaceRequest AWS API Documentation
|
8630
8634
|
#
|
8631
8635
|
class CreateSpaceRequest < Struct.new(
|
@@ -8633,9 +8637,9 @@ module Aws::SageMaker
|
|
8633
8637
|
:space_name,
|
8634
8638
|
:tags,
|
8635
8639
|
:space_settings,
|
8636
|
-
:space_display_name,
|
8637
8640
|
:ownership_settings,
|
8638
|
-
:space_sharing_settings
|
8641
|
+
:space_sharing_settings,
|
8642
|
+
:space_display_name)
|
8639
8643
|
SENSITIVE = []
|
8640
8644
|
include Aws::Structure
|
8641
8645
|
end
|
@@ -10238,6 +10242,11 @@ module Aws::SageMaker
|
|
10238
10242
|
# must be set.
|
10239
10243
|
# @return [String]
|
10240
10244
|
#
|
10245
|
+
# @!attribute [rw] space_name
|
10246
|
+
# The name of the space. If this value is not set, then
|
10247
|
+
# `UserProfileName` must be set.
|
10248
|
+
# @return [String]
|
10249
|
+
#
|
10241
10250
|
# @!attribute [rw] app_type
|
10242
10251
|
# The type of app.
|
10243
10252
|
# @return [String]
|
@@ -10246,19 +10255,14 @@ module Aws::SageMaker
|
|
10246
10255
|
# The name of the app.
|
10247
10256
|
# @return [String]
|
10248
10257
|
#
|
10249
|
-
# @!attribute [rw] space_name
|
10250
|
-
# The name of the space. If this value is not set, then
|
10251
|
-
# `UserProfileName` must be set.
|
10252
|
-
# @return [String]
|
10253
|
-
#
|
10254
10258
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteAppRequest AWS API Documentation
|
10255
10259
|
#
|
10256
10260
|
class DeleteAppRequest < Struct.new(
|
10257
10261
|
:domain_id,
|
10258
10262
|
:user_profile_name,
|
10263
|
+
:space_name,
|
10259
10264
|
:app_type,
|
10260
|
-
:app_name
|
10261
|
-
:space_name)
|
10265
|
+
:app_name)
|
10262
10266
|
SENSITIVE = []
|
10263
10267
|
include Aws::Structure
|
10264
10268
|
end
|
@@ -10364,6 +10368,18 @@ module Aws::SageMaker
|
|
10364
10368
|
include Aws::Structure
|
10365
10369
|
end
|
10366
10370
|
|
10371
|
+
# @!attribute [rw] compilation_job_name
|
10372
|
+
# The name of the compilation job to delete.
|
10373
|
+
# @return [String]
|
10374
|
+
#
|
10375
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteCompilationJobRequest AWS API Documentation
|
10376
|
+
#
|
10377
|
+
class DeleteCompilationJobRequest < Struct.new(
|
10378
|
+
:compilation_job_name)
|
10379
|
+
SENSITIVE = []
|
10380
|
+
include Aws::Structure
|
10381
|
+
end
|
10382
|
+
|
10367
10383
|
# @!attribute [rw] context_name
|
10368
10384
|
# The name of the context to delete.
|
10369
10385
|
# @return [String]
|
@@ -11067,22 +11083,22 @@ module Aws::SageMaker
|
|
11067
11083
|
# strategy with all at once traffic shifting by default.
|
11068
11084
|
# @return [Types::BlueGreenUpdatePolicy]
|
11069
11085
|
#
|
11070
|
-
# @!attribute [rw] auto_rollback_configuration
|
11071
|
-
# Automatic rollback configuration for handling endpoint deployment
|
11072
|
-
# failures and recovery.
|
11073
|
-
# @return [Types::AutoRollbackConfig]
|
11074
|
-
#
|
11075
11086
|
# @!attribute [rw] rolling_update_policy
|
11076
11087
|
# Specifies a rolling deployment strategy for updating a SageMaker
|
11077
11088
|
# endpoint.
|
11078
11089
|
# @return [Types::RollingUpdatePolicy]
|
11079
11090
|
#
|
11091
|
+
# @!attribute [rw] auto_rollback_configuration
|
11092
|
+
# Automatic rollback configuration for handling endpoint deployment
|
11093
|
+
# failures and recovery.
|
11094
|
+
# @return [Types::AutoRollbackConfig]
|
11095
|
+
#
|
11080
11096
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeploymentConfig AWS API Documentation
|
11081
11097
|
#
|
11082
11098
|
class DeploymentConfig < Struct.new(
|
11083
11099
|
:blue_green_update_policy,
|
11084
|
-
:
|
11085
|
-
:
|
11100
|
+
:rolling_update_policy,
|
11101
|
+
:auto_rollback_configuration)
|
11086
11102
|
SENSITIVE = []
|
11087
11103
|
include Aws::Structure
|
11088
11104
|
end
|
@@ -11429,6 +11445,10 @@ module Aws::SageMaker
|
|
11429
11445
|
# must be set.
|
11430
11446
|
# @return [String]
|
11431
11447
|
#
|
11448
|
+
# @!attribute [rw] space_name
|
11449
|
+
# The name of the space.
|
11450
|
+
# @return [String]
|
11451
|
+
#
|
11432
11452
|
# @!attribute [rw] app_type
|
11433
11453
|
# The type of app.
|
11434
11454
|
# @return [String]
|
@@ -11437,18 +11457,14 @@ module Aws::SageMaker
|
|
11437
11457
|
# The name of the app.
|
11438
11458
|
# @return [String]
|
11439
11459
|
#
|
11440
|
-
# @!attribute [rw] space_name
|
11441
|
-
# The name of the space.
|
11442
|
-
# @return [String]
|
11443
|
-
#
|
11444
11460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppRequest AWS API Documentation
|
11445
11461
|
#
|
11446
11462
|
class DescribeAppRequest < Struct.new(
|
11447
11463
|
:domain_id,
|
11448
11464
|
:user_profile_name,
|
11465
|
+
:space_name,
|
11449
11466
|
:app_type,
|
11450
|
-
:app_name
|
11451
|
-
:space_name)
|
11467
|
+
:app_name)
|
11452
11468
|
SENSITIVE = []
|
11453
11469
|
include Aws::Structure
|
11454
11470
|
end
|
@@ -11473,6 +11489,11 @@ module Aws::SageMaker
|
|
11473
11489
|
# The user profile name.
|
11474
11490
|
# @return [String]
|
11475
11491
|
#
|
11492
|
+
# @!attribute [rw] space_name
|
11493
|
+
# The name of the space. If this value is not set, then
|
11494
|
+
# `UserProfileName` must be set.
|
11495
|
+
# @return [String]
|
11496
|
+
#
|
11476
11497
|
# @!attribute [rw] status
|
11477
11498
|
# The status.
|
11478
11499
|
# @return [String]
|
@@ -11501,11 +11522,6 @@ module Aws::SageMaker
|
|
11501
11522
|
# SageMaker image created on the instance.
|
11502
11523
|
# @return [Types::ResourceSpec]
|
11503
11524
|
#
|
11504
|
-
# @!attribute [rw] space_name
|
11505
|
-
# The name of the space. If this value is not set, then
|
11506
|
-
# `UserProfileName` must be set.
|
11507
|
-
# @return [String]
|
11508
|
-
#
|
11509
11525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppResponse AWS API Documentation
|
11510
11526
|
#
|
11511
11527
|
class DescribeAppResponse < Struct.new(
|
@@ -11514,13 +11530,13 @@ module Aws::SageMaker
|
|
11514
11530
|
:app_name,
|
11515
11531
|
:domain_id,
|
11516
11532
|
:user_profile_name,
|
11533
|
+
:space_name,
|
11517
11534
|
:status,
|
11518
11535
|
:last_health_check_timestamp,
|
11519
11536
|
:last_user_activity_timestamp,
|
11520
11537
|
:creation_time,
|
11521
11538
|
:failure_reason,
|
11522
|
-
:resource_spec
|
11523
|
-
:space_name)
|
11539
|
+
:resource_spec)
|
11524
11540
|
SENSITIVE = []
|
11525
11541
|
include Aws::Structure
|
11526
11542
|
end
|
@@ -11783,6 +11799,11 @@ module Aws::SageMaker
|
|
11783
11799
|
# AutoML job V2.
|
11784
11800
|
# @return [Types::AutoMLProblemTypeConfig]
|
11785
11801
|
#
|
11802
|
+
# @!attribute [rw] auto_ml_problem_type_config_name
|
11803
|
+
# Returns the name of the problem type configuration set for the
|
11804
|
+
# AutoML job V2.
|
11805
|
+
# @return [String]
|
11806
|
+
#
|
11786
11807
|
# @!attribute [rw] creation_time
|
11787
11808
|
# Returns the creation time of the AutoML job V2.
|
11788
11809
|
# @return [Time]
|
@@ -11818,6 +11839,14 @@ module Aws::SageMaker
|
|
11818
11839
|
# Returns the secondary status of the AutoML job V2.
|
11819
11840
|
# @return [String]
|
11820
11841
|
#
|
11842
|
+
# @!attribute [rw] auto_ml_job_artifacts
|
11843
|
+
# The artifacts that are generated during an AutoML job.
|
11844
|
+
# @return [Types::AutoMLJobArtifacts]
|
11845
|
+
#
|
11846
|
+
# @!attribute [rw] resolved_attributes
|
11847
|
+
# Returns the resolved attributes used by the AutoML job V2.
|
11848
|
+
# @return [Types::AutoMLResolvedAttributes]
|
11849
|
+
#
|
11821
11850
|
# @!attribute [rw] model_deploy_config
|
11822
11851
|
# Indicates whether the model was deployed automatically to an
|
11823
11852
|
# endpoint and the name of that endpoint if deployed automatically.
|
@@ -11837,19 +11866,6 @@ module Aws::SageMaker
|
|
11837
11866
|
# VPC settings.
|
11838
11867
|
# @return [Types::AutoMLSecurityConfig]
|
11839
11868
|
#
|
11840
|
-
# @!attribute [rw] auto_ml_job_artifacts
|
11841
|
-
# The artifacts that are generated during an AutoML job.
|
11842
|
-
# @return [Types::AutoMLJobArtifacts]
|
11843
|
-
#
|
11844
|
-
# @!attribute [rw] resolved_attributes
|
11845
|
-
# Returns the resolved attributes used by the AutoML job V2.
|
11846
|
-
# @return [Types::AutoMLResolvedAttributes]
|
11847
|
-
#
|
11848
|
-
# @!attribute [rw] auto_ml_problem_type_config_name
|
11849
|
-
# Returns the name of the problem type configuration set for the
|
11850
|
-
# AutoML job V2.
|
11851
|
-
# @return [String]
|
11852
|
-
#
|
11853
11869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAutoMLJobV2Response AWS API Documentation
|
11854
11870
|
#
|
11855
11871
|
class DescribeAutoMLJobV2Response < Struct.new(
|
@@ -11860,6 +11876,7 @@ module Aws::SageMaker
|
|
11860
11876
|
:role_arn,
|
11861
11877
|
:auto_ml_job_objective,
|
11862
11878
|
:auto_ml_problem_type_config,
|
11879
|
+
:auto_ml_problem_type_config_name,
|
11863
11880
|
:creation_time,
|
11864
11881
|
:end_time,
|
11865
11882
|
:last_modified_time,
|
@@ -11868,13 +11885,12 @@ module Aws::SageMaker
|
|
11868
11885
|
:best_candidate,
|
11869
11886
|
:auto_ml_job_status,
|
11870
11887
|
:auto_ml_job_secondary_status,
|
11888
|
+
:auto_ml_job_artifacts,
|
11889
|
+
:resolved_attributes,
|
11871
11890
|
:model_deploy_config,
|
11872
11891
|
:model_deploy_result,
|
11873
11892
|
:data_split_config,
|
11874
|
-
:security_config
|
11875
|
-
:auto_ml_job_artifacts,
|
11876
|
-
:resolved_attributes,
|
11877
|
-
:auto_ml_problem_type_config_name)
|
11893
|
+
:security_config)
|
11878
11894
|
SENSITIVE = []
|
11879
11895
|
include Aws::Structure
|
11880
11896
|
end
|
@@ -12499,7 +12515,7 @@ module Aws::SageMaker
|
|
12499
12515
|
# @!attribute [rw] single_sign_on_application_arn
|
12500
12516
|
# The ARN of the application managed by SageMaker in IAM Identity
|
12501
12517
|
# Center. This value is only returned for domains created after
|
12502
|
-
#
|
12518
|
+
# October 1, 2023.
|
12503
12519
|
# @return [String]
|
12504
12520
|
#
|
12505
12521
|
# @!attribute [rw] status
|
@@ -12518,6 +12534,11 @@ module Aws::SageMaker
|
|
12518
12534
|
# The failure reason.
|
12519
12535
|
# @return [String]
|
12520
12536
|
#
|
12537
|
+
# @!attribute [rw] security_group_id_for_domain_boundary
|
12538
|
+
# The ID of the security group that authorizes traffic between the
|
12539
|
+
# `RSessionGateway` apps and the `RStudioServerPro` app.
|
12540
|
+
# @return [String]
|
12541
|
+
#
|
12521
12542
|
# @!attribute [rw] auth_mode
|
12522
12543
|
# The domain's authentication mode.
|
12523
12544
|
# @return [String]
|
@@ -12527,6 +12548,10 @@ module Aws::SageMaker
|
|
12527
12548
|
# settings are not explicitly specified in a given UserProfile.
|
12528
12549
|
# @return [Types::UserSettings]
|
12529
12550
|
#
|
12551
|
+
# @!attribute [rw] domain_settings
|
12552
|
+
# A collection of `Domain` settings.
|
12553
|
+
# @return [Types::DomainSettings]
|
12554
|
+
#
|
12530
12555
|
# @!attribute [rw] app_network_access_type
|
12531
12556
|
# Specifies the VPC used for non-EFS traffic. The default value is
|
12532
12557
|
# `PublicInternetOnly`.
|
@@ -12559,10 +12584,6 @@ module Aws::SageMaker
|
|
12559
12584
|
# EFS volume attached to the domain.
|
12560
12585
|
# @return [String]
|
12561
12586
|
#
|
12562
|
-
# @!attribute [rw] domain_settings
|
12563
|
-
# A collection of `Domain` settings.
|
12564
|
-
# @return [Types::DomainSettings]
|
12565
|
-
#
|
12566
12587
|
# @!attribute [rw] app_security_group_management
|
12567
12588
|
# The entity that creates and manages the required security groups for
|
12568
12589
|
# inter-app communication in `VPCOnly` mode. Required when
|
@@ -12571,11 +12592,6 @@ module Aws::SageMaker
|
|
12571
12592
|
# is provided.
|
12572
12593
|
# @return [String]
|
12573
12594
|
#
|
12574
|
-
# @!attribute [rw] security_group_id_for_domain_boundary
|
12575
|
-
# The ID of the security group that authorizes traffic between the
|
12576
|
-
# `RSessionGateway` apps and the `RStudioServerPro` app.
|
12577
|
-
# @return [String]
|
12578
|
-
#
|
12579
12595
|
# @!attribute [rw] default_space_settings
|
12580
12596
|
# The default settings used to create a space.
|
12581
12597
|
# @return [Types::DefaultSpaceSettings]
|
@@ -12593,17 +12609,17 @@ module Aws::SageMaker
|
|
12593
12609
|
:creation_time,
|
12594
12610
|
:last_modified_time,
|
12595
12611
|
:failure_reason,
|
12612
|
+
:security_group_id_for_domain_boundary,
|
12596
12613
|
:auth_mode,
|
12597
12614
|
:default_user_settings,
|
12615
|
+
:domain_settings,
|
12598
12616
|
:app_network_access_type,
|
12599
12617
|
:home_efs_file_system_kms_key_id,
|
12600
12618
|
:subnet_ids,
|
12601
12619
|
:url,
|
12602
12620
|
:vpc_id,
|
12603
12621
|
:kms_key_id,
|
12604
|
-
:domain_settings,
|
12605
12622
|
:app_security_group_management,
|
12606
|
-
:security_group_id_for_domain_boundary,
|
12607
12623
|
:default_space_settings)
|
12608
12624
|
SENSITIVE = []
|
12609
12625
|
include Aws::Structure
|
@@ -13749,6 +13765,11 @@ module Aws::SageMaker
|
|
13749
13765
|
# job.
|
13750
13766
|
# @return [Types::HyperParameterTuningJobWarmStartConfig]
|
13751
13767
|
#
|
13768
|
+
# @!attribute [rw] autotune
|
13769
|
+
# A flag to indicate if autotune is enabled for the hyperparameter
|
13770
|
+
# tuning job.
|
13771
|
+
# @return [Types::Autotune]
|
13772
|
+
#
|
13752
13773
|
# @!attribute [rw] failure_reason
|
13753
13774
|
# If the tuning job failed, the reason it failed.
|
13754
13775
|
# @return [String]
|
@@ -13765,11 +13786,6 @@ module Aws::SageMaker
|
|
13765
13786
|
# The total resources consumed by your hyperparameter tuning job.
|
13766
13787
|
# @return [Types::HyperParameterTuningJobConsumedResources]
|
13767
13788
|
#
|
13768
|
-
# @!attribute [rw] autotune
|
13769
|
-
# A flag to indicate if autotune is enabled for the hyperparameter
|
13770
|
-
# tuning job.
|
13771
|
-
# @return [Types::Autotune]
|
13772
|
-
#
|
13773
13789
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeHyperParameterTuningJobResponse AWS API Documentation
|
13774
13790
|
#
|
13775
13791
|
class DescribeHyperParameterTuningJobResponse < Struct.new(
|
@@ -13787,10 +13803,10 @@ module Aws::SageMaker
|
|
13787
13803
|
:best_training_job,
|
13788
13804
|
:overall_best_training_job,
|
13789
13805
|
:warm_start_config,
|
13806
|
+
:autotune,
|
13790
13807
|
:failure_reason,
|
13791
13808
|
:tuning_job_completion_details,
|
13792
|
-
:consumed_resources
|
13793
|
-
:autotune)
|
13809
|
+
:consumed_resources)
|
13794
13810
|
SENSITIVE = []
|
13795
13811
|
include Aws::Structure
|
13796
13812
|
end
|
@@ -15129,21 +15145,6 @@ module Aws::SageMaker
|
|
15129
15145
|
# A description provided for the model approval.
|
15130
15146
|
# @return [String]
|
15131
15147
|
#
|
15132
|
-
# @!attribute [rw] customer_metadata_properties
|
15133
|
-
# The metadata properties associated with the model package versions.
|
15134
|
-
# @return [Hash<String,String>]
|
15135
|
-
#
|
15136
|
-
# @!attribute [rw] drift_check_baselines
|
15137
|
-
# Represents the drift check baselines that can be used when the model
|
15138
|
-
# monitor is set using the model package. For more information, see
|
15139
|
-
# the topic on [Drift Detection against Previous Baselines in
|
15140
|
-
# SageMaker Pipelines][1] in the *Amazon SageMaker Developer Guide*.
|
15141
|
-
#
|
15142
|
-
#
|
15143
|
-
#
|
15144
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
|
15145
|
-
# @return [Types::DriftCheckBaselines]
|
15146
|
-
#
|
15147
15148
|
# @!attribute [rw] domain
|
15148
15149
|
# The machine learning domain of the model package you specified.
|
15149
15150
|
# Common machine learning domains include computer vision and natural
|
@@ -15162,6 +15163,21 @@ module Aws::SageMaker
|
|
15162
15163
|
# archive (.tar.gz suffix).
|
15163
15164
|
# @return [String]
|
15164
15165
|
#
|
15166
|
+
# @!attribute [rw] customer_metadata_properties
|
15167
|
+
# The metadata properties associated with the model package versions.
|
15168
|
+
# @return [Hash<String,String>]
|
15169
|
+
#
|
15170
|
+
# @!attribute [rw] drift_check_baselines
|
15171
|
+
# Represents the drift check baselines that can be used when the model
|
15172
|
+
# monitor is set using the model package. For more information, see
|
15173
|
+
# the topic on [Drift Detection against Previous Baselines in
|
15174
|
+
# SageMaker Pipelines][1] in the *Amazon SageMaker Developer Guide*.
|
15175
|
+
#
|
15176
|
+
#
|
15177
|
+
#
|
15178
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
|
15179
|
+
# @return [Types::DriftCheckBaselines]
|
15180
|
+
#
|
15165
15181
|
# @!attribute [rw] additional_inference_specifications
|
15166
15182
|
# An array of additional Inference Specification objects. Each
|
15167
15183
|
# additional Inference Specification specifies artifacts based on this
|
@@ -15195,11 +15211,11 @@ module Aws::SageMaker
|
|
15195
15211
|
:last_modified_time,
|
15196
15212
|
:last_modified_by,
|
15197
15213
|
:approval_description,
|
15198
|
-
:customer_metadata_properties,
|
15199
|
-
:drift_check_baselines,
|
15200
15214
|
:domain,
|
15201
15215
|
:task,
|
15202
15216
|
:sample_payload_url,
|
15217
|
+
:customer_metadata_properties,
|
15218
|
+
:drift_check_baselines,
|
15203
15219
|
:additional_inference_specifications,
|
15204
15220
|
:skip_model_validation)
|
15205
15221
|
SENSITIVE = []
|
@@ -16082,6 +16098,19 @@ module Aws::SageMaker
|
|
16082
16098
|
# A collection of space settings.
|
16083
16099
|
# @return [Types::SpaceSettings]
|
16084
16100
|
#
|
16101
|
+
# @!attribute [rw] ownership_settings
|
16102
|
+
# The collection of ownership settings for a space.
|
16103
|
+
# @return [Types::OwnershipSettings]
|
16104
|
+
#
|
16105
|
+
# @!attribute [rw] space_sharing_settings
|
16106
|
+
# The collection of space sharing settings for a space.
|
16107
|
+
# @return [Types::SpaceSharingSettings]
|
16108
|
+
#
|
16109
|
+
# @!attribute [rw] space_display_name
|
16110
|
+
# The name of the space that appears in the Amazon SageMaker Studio
|
16111
|
+
# UI.
|
16112
|
+
# @return [String]
|
16113
|
+
#
|
16085
16114
|
# @!attribute [rw] url
|
16086
16115
|
# Returns the URL of the space. If the space is created with Amazon
|
16087
16116
|
# Web Services IAM Identity Center (Successor to Amazon Web Services
|
@@ -16094,21 +16123,11 @@ module Aws::SageMaker
|
|
16094
16123
|
# * Studio Classic: `&redirect=JupyterServer`
|
16095
16124
|
#
|
16096
16125
|
# * JupyterLab: `&redirect=JupyterLab`
|
16097
|
-
# @return [String]
|
16098
16126
|
#
|
16099
|
-
#
|
16100
|
-
#
|
16101
|
-
# UI.
|
16127
|
+
# * Code Editor, based on Code-OSS, Visual Studio Code - Open Source:
|
16128
|
+
# `&redirect=CodeEditor`
|
16102
16129
|
# @return [String]
|
16103
16130
|
#
|
16104
|
-
# @!attribute [rw] ownership_settings
|
16105
|
-
# The collection of ownership settings for a space.
|
16106
|
-
# @return [Types::OwnershipSettings]
|
16107
|
-
#
|
16108
|
-
# @!attribute [rw] space_sharing_settings
|
16109
|
-
# The collection of space sharing settings for a space.
|
16110
|
-
# @return [Types::SpaceSharingSettings]
|
16111
|
-
#
|
16112
16131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeSpaceResponse AWS API Documentation
|
16113
16132
|
#
|
16114
16133
|
class DescribeSpaceResponse < Struct.new(
|
@@ -16121,10 +16140,10 @@ module Aws::SageMaker
|
|
16121
16140
|
:creation_time,
|
16122
16141
|
:failure_reason,
|
16123
16142
|
:space_settings,
|
16124
|
-
:url,
|
16125
|
-
:space_display_name,
|
16126
16143
|
:ownership_settings,
|
16127
|
-
:space_sharing_settings
|
16144
|
+
:space_sharing_settings,
|
16145
|
+
:space_display_name,
|
16146
|
+
:url)
|
16128
16147
|
SENSITIVE = []
|
16129
16148
|
include Aws::Structure
|
16130
16149
|
end
|
@@ -16366,6 +16385,10 @@ module Aws::SageMaker
|
|
16366
16385
|
# that are configured for model training.
|
16367
16386
|
# @return [Types::ResourceConfig]
|
16368
16387
|
#
|
16388
|
+
# @!attribute [rw] warm_pool_status
|
16389
|
+
# The status of the warm pool associated with the training job.
|
16390
|
+
# @return [Types::WarmPoolStatus]
|
16391
|
+
#
|
16369
16392
|
# @!attribute [rw] vpc_config
|
16370
16393
|
# A [VpcConfig][1] object that specifies the VPC that this training
|
16371
16394
|
# job has access to. For more information, see [Protect Training Jobs
|
@@ -16536,18 +16559,14 @@ module Aws::SageMaker
|
|
16536
16559
|
# Profiling status of a training job.
|
16537
16560
|
# @return [String]
|
16538
16561
|
#
|
16539
|
-
# @!attribute [rw] retry_strategy
|
16540
|
-
# The number of times to retry the job when the job fails due to an
|
16541
|
-
# `InternalServerError`.
|
16542
|
-
# @return [Types::RetryStrategy]
|
16543
|
-
#
|
16544
16562
|
# @!attribute [rw] environment
|
16545
16563
|
# The environment variables to set in the Docker container.
|
16546
16564
|
# @return [Hash<String,String>]
|
16547
16565
|
#
|
16548
|
-
# @!attribute [rw]
|
16549
|
-
# The
|
16550
|
-
#
|
16566
|
+
# @!attribute [rw] retry_strategy
|
16567
|
+
# The number of times to retry the job when the job fails due to an
|
16568
|
+
# `InternalServerError`.
|
16569
|
+
# @return [Types::RetryStrategy]
|
16551
16570
|
#
|
16552
16571
|
# @!attribute [rw] infra_check_config
|
16553
16572
|
# Contains information about the infrastructure health check
|
@@ -16572,6 +16591,7 @@ module Aws::SageMaker
|
|
16572
16591
|
:input_data_config,
|
16573
16592
|
:output_data_config,
|
16574
16593
|
:resource_config,
|
16594
|
+
:warm_pool_status,
|
16575
16595
|
:vpc_config,
|
16576
16596
|
:stopping_condition,
|
16577
16597
|
:creation_time,
|
@@ -16595,9 +16615,8 @@ module Aws::SageMaker
|
|
16595
16615
|
:profiler_rule_configurations,
|
16596
16616
|
:profiler_rule_evaluation_statuses,
|
16597
16617
|
:profiling_status,
|
16598
|
-
:retry_strategy,
|
16599
16618
|
:environment,
|
16600
|
-
:
|
16619
|
+
:retry_strategy,
|
16601
16620
|
:infra_check_config)
|
16602
16621
|
SENSITIVE = []
|
16603
16622
|
include Aws::Structure
|
@@ -18396,6 +18415,10 @@ module Aws::SageMaker
|
|
18396
18415
|
# The instance types to use for the load test.
|
18397
18416
|
# @return [String]
|
18398
18417
|
#
|
18418
|
+
# @!attribute [rw] serverless_config
|
18419
|
+
# Specifies the serverless configuration for an endpoint variant.
|
18420
|
+
# @return [Types::ProductionVariantServerlessConfig]
|
18421
|
+
#
|
18399
18422
|
# @!attribute [rw] inference_specification_name
|
18400
18423
|
# The inference specification name in the model package version.
|
18401
18424
|
# @return [String]
|
@@ -18404,17 +18427,13 @@ module Aws::SageMaker
|
|
18404
18427
|
# The parameter you want to benchmark against.
|
18405
18428
|
# @return [Types::EnvironmentParameterRanges]
|
18406
18429
|
#
|
18407
|
-
# @!attribute [rw] serverless_config
|
18408
|
-
# Specifies the serverless configuration for an endpoint variant.
|
18409
|
-
# @return [Types::ProductionVariantServerlessConfig]
|
18410
|
-
#
|
18411
18430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointInputConfiguration AWS API Documentation
|
18412
18431
|
#
|
18413
18432
|
class EndpointInputConfiguration < Struct.new(
|
18414
18433
|
:instance_type,
|
18434
|
+
:serverless_config,
|
18415
18435
|
:inference_specification_name,
|
18416
|
-
:environment_parameter_ranges
|
18417
|
-
:serverless_config)
|
18436
|
+
:environment_parameter_ranges)
|
18418
18437
|
SENSITIVE = []
|
18419
18438
|
include Aws::Structure
|
18420
18439
|
end
|
@@ -21374,6 +21393,15 @@ module Aws::SageMaker
|
|
21374
21393
|
# </note>
|
21375
21394
|
# @return [Types::ResourceConfig]
|
21376
21395
|
#
|
21396
|
+
# @!attribute [rw] hyper_parameter_tuning_resource_config
|
21397
|
+
# The configuration for the hyperparameter tuning resources, including
|
21398
|
+
# the compute instances and storage volumes, used for training jobs
|
21399
|
+
# launched by the tuning job. By default, storage volumes hold model
|
21400
|
+
# artifacts and incremental states. Choose `File` for
|
21401
|
+
# `TrainingInputMode` in the `AlgorithmSpecification` parameter to
|
21402
|
+
# additionally store training data in the storage volume (optional).
|
21403
|
+
# @return [Types::HyperParameterTuningResourceConfig]
|
21404
|
+
#
|
21377
21405
|
# @!attribute [rw] stopping_condition
|
21378
21406
|
# Specifies a limit to how long a model hyperparameter training job
|
21379
21407
|
# can run. It also specifies how long a managed spot training job has
|
@@ -21414,15 +21442,6 @@ module Aws::SageMaker
|
|
21414
21442
|
# `InternalServerError`.
|
21415
21443
|
# @return [Types::RetryStrategy]
|
21416
21444
|
#
|
21417
|
-
# @!attribute [rw] hyper_parameter_tuning_resource_config
|
21418
|
-
# The configuration for the hyperparameter tuning resources, including
|
21419
|
-
# the compute instances and storage volumes, used for training jobs
|
21420
|
-
# launched by the tuning job. By default, storage volumes hold model
|
21421
|
-
# artifacts and incremental states. Choose `File` for
|
21422
|
-
# `TrainingInputMode` in the `AlgorithmSpecification` parameter to
|
21423
|
-
# additionally store training data in the storage volume (optional).
|
21424
|
-
# @return [Types::HyperParameterTuningResourceConfig]
|
21425
|
-
#
|
21426
21445
|
# @!attribute [rw] environment
|
21427
21446
|
# An environment variable that you can pass into the SageMaker
|
21428
21447
|
# [CreateTrainingJob][1] API. You can use an existing [environment
|
@@ -21458,13 +21477,13 @@ module Aws::SageMaker
|
|
21458
21477
|
:vpc_config,
|
21459
21478
|
:output_data_config,
|
21460
21479
|
:resource_config,
|
21480
|
+
:hyper_parameter_tuning_resource_config,
|
21461
21481
|
:stopping_condition,
|
21462
21482
|
:enable_network_isolation,
|
21463
21483
|
:enable_inter_container_traffic_encryption,
|
21464
21484
|
:enable_managed_spot_training,
|
21465
21485
|
:checkpoint_config,
|
21466
21486
|
:retry_strategy,
|
21467
|
-
:hyper_parameter_tuning_resource_config,
|
21468
21487
|
:environment)
|
21469
21488
|
SENSITIVE = []
|
21470
21489
|
include Aws::Structure
|
@@ -21873,15 +21892,6 @@ module Aws::SageMaker
|
|
21873
21892
|
# The error that was created when a hyperparameter tuning job failed.
|
21874
21893
|
# @return [String]
|
21875
21894
|
#
|
21876
|
-
# @!attribute [rw] tags
|
21877
|
-
# The tags associated with a hyperparameter tuning job. For more
|
21878
|
-
# information see [Tagging Amazon Web Services resources][1].
|
21879
|
-
#
|
21880
|
-
#
|
21881
|
-
#
|
21882
|
-
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
21883
|
-
# @return [Array<Types::Tag>]
|
21884
|
-
#
|
21885
21895
|
# @!attribute [rw] tuning_job_completion_details
|
21886
21896
|
# Information about either a current or completed hyperparameter
|
21887
21897
|
# tuning job.
|
@@ -21892,6 +21902,15 @@ module Aws::SageMaker
|
|
21892
21902
|
# job.
|
21893
21903
|
# @return [Types::HyperParameterTuningJobConsumedResources]
|
21894
21904
|
#
|
21905
|
+
# @!attribute [rw] tags
|
21906
|
+
# The tags associated with a hyperparameter tuning job. For more
|
21907
|
+
# information see [Tagging Amazon Web Services resources][1].
|
21908
|
+
#
|
21909
|
+
#
|
21910
|
+
#
|
21911
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
21912
|
+
# @return [Array<Types::Tag>]
|
21913
|
+
#
|
21895
21914
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HyperParameterTuningJobSearchEntity AWS API Documentation
|
21896
21915
|
#
|
21897
21916
|
class HyperParameterTuningJobSearchEntity < Struct.new(
|
@@ -21910,9 +21929,9 @@ module Aws::SageMaker
|
|
21910
21929
|
:overall_best_training_job,
|
21911
21930
|
:warm_start_config,
|
21912
21931
|
:failure_reason,
|
21913
|
-
:tags,
|
21914
21932
|
:tuning_job_completion_details,
|
21915
|
-
:consumed_resources
|
21933
|
+
:consumed_resources,
|
21934
|
+
:tags)
|
21916
21935
|
SENSITIVE = []
|
21917
21936
|
include Aws::Structure
|
21918
21937
|
end
|
@@ -23002,6 +23021,10 @@ module Aws::SageMaker
|
|
23002
23021
|
# A list of recommendations made by Amazon SageMaker Inference
|
23003
23022
|
# Recommender.
|
23004
23023
|
#
|
23024
|
+
# @!attribute [rw] recommendation_id
|
23025
|
+
# The recommendation ID which uniquely identifies each recommendation.
|
23026
|
+
# @return [String]
|
23027
|
+
#
|
23005
23028
|
# @!attribute [rw] metrics
|
23006
23029
|
# The metrics used to decide what recommendation to make.
|
23007
23030
|
# @return [Types::RecommendationMetrics]
|
@@ -23014,10 +23037,6 @@ module Aws::SageMaker
|
|
23014
23037
|
# Defines the model configuration.
|
23015
23038
|
# @return [Types::ModelConfiguration]
|
23016
23039
|
#
|
23017
|
-
# @!attribute [rw] recommendation_id
|
23018
|
-
# The recommendation ID which uniquely identifies each recommendation.
|
23019
|
-
# @return [String]
|
23020
|
-
#
|
23021
23040
|
# @!attribute [rw] invocation_end_time
|
23022
23041
|
# A timestamp that shows when the benchmark completed.
|
23023
23042
|
# @return [Time]
|
@@ -23029,10 +23048,10 @@ module Aws::SageMaker
|
|
23029
23048
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceRecommendation AWS API Documentation
|
23030
23049
|
#
|
23031
23050
|
class InferenceRecommendation < Struct.new(
|
23051
|
+
:recommendation_id,
|
23032
23052
|
:metrics,
|
23033
23053
|
:endpoint_configuration,
|
23034
23054
|
:model_configuration,
|
23035
|
-
:recommendation_id,
|
23036
23055
|
:invocation_end_time,
|
23037
23056
|
:invocation_start_time)
|
23038
23057
|
SENSITIVE = []
|
@@ -23570,6 +23589,11 @@ module Aws::SageMaker
|
|
23570
23589
|
# The configuration for the file system and kernels in a SageMaker image
|
23571
23590
|
# running as a JupyterLab app.
|
23572
23591
|
#
|
23592
|
+
# @!attribute [rw] file_system_config
|
23593
|
+
# The Amazon Elastic File System (EFS) storage configuration for a
|
23594
|
+
# SageMaker image.
|
23595
|
+
# @return [Types::FileSystemConfig]
|
23596
|
+
#
|
23573
23597
|
# @!attribute [rw] container_config
|
23574
23598
|
# The configuration used to run the application image container.
|
23575
23599
|
# @return [Types::ContainerConfig]
|
@@ -23577,6 +23601,7 @@ module Aws::SageMaker
|
|
23577
23601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterLabAppImageConfig AWS API Documentation
|
23578
23602
|
#
|
23579
23603
|
class JupyterLabAppImageConfig < Struct.new(
|
23604
|
+
:file_system_config,
|
23580
23605
|
:container_config)
|
23581
23606
|
SENSITIVE = []
|
23582
23607
|
include Aws::Structure
|
@@ -33560,13 +33585,12 @@ module Aws::SageMaker
|
|
33560
33585
|
# If you use a KMS key ID or an alias of your KMS key, the SageMaker
|
33561
33586
|
# execution role must include permissions to call `kms:Encrypt`. If
|
33562
33587
|
# you don't provide a KMS key ID, SageMaker uses the default KMS key
|
33563
|
-
# for Amazon S3 for your role's account.
|
33564
|
-
#
|
33565
|
-
#
|
33566
|
-
#
|
33567
|
-
#
|
33568
|
-
#
|
33569
|
-
# Simple Storage Service Developer Guide.*
|
33588
|
+
# for Amazon S3 for your role's account. For more information, see
|
33589
|
+
# [KMS-Managed Encryption Keys][1] in the *Amazon Simple Storage
|
33590
|
+
# Service Developer Guide*. If the output data is stored in Amazon S3
|
33591
|
+
# Express One Zone, it is encrypted with server-side encryption with
|
33592
|
+
# Amazon S3 managed keys (SSE-S3). KMS key is not supported for Amazon
|
33593
|
+
# S3 Express One Zone
|
33570
33594
|
#
|
33571
33595
|
# The KMS key policy must grant permission to the IAM role that you
|
33572
33596
|
# specify in your `CreateTrainingJob`, `CreateTransformJob`, or
|
@@ -34144,14 +34168,14 @@ module Aws::SageMaker
|
|
34144
34168
|
# The parallelism configuration applied to the pipeline execution.
|
34145
34169
|
# @return [Types::ParallelismConfiguration]
|
34146
34170
|
#
|
34147
|
-
# @!attribute [rw] pipeline_parameters
|
34148
|
-
# Contains a list of pipeline parameters. This list can be empty.
|
34149
|
-
# @return [Array<Types::Parameter>]
|
34150
|
-
#
|
34151
34171
|
# @!attribute [rw] selective_execution_config
|
34152
34172
|
# The selective execution configuration applied to the pipeline run.
|
34153
34173
|
# @return [Types::SelectiveExecutionConfig]
|
34154
34174
|
#
|
34175
|
+
# @!attribute [rw] pipeline_parameters
|
34176
|
+
# Contains a list of pipeline parameters. This list can be empty.
|
34177
|
+
# @return [Array<Types::Parameter>]
|
34178
|
+
#
|
34155
34179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecution AWS API Documentation
|
34156
34180
|
#
|
34157
34181
|
class PipelineExecution < Struct.new(
|
@@ -34167,8 +34191,8 @@ module Aws::SageMaker
|
|
34167
34191
|
:created_by,
|
34168
34192
|
:last_modified_by,
|
34169
34193
|
:parallelism_configuration,
|
34170
|
-
:
|
34171
|
-
:
|
34194
|
+
:selective_execution_config,
|
34195
|
+
:pipeline_parameters)
|
34172
34196
|
SENSITIVE = []
|
34173
34197
|
include Aws::Structure
|
34174
34198
|
end
|
@@ -34204,15 +34228,6 @@ module Aws::SageMaker
|
|
34204
34228
|
# hit.
|
34205
34229
|
# @return [Types::CacheHitResult]
|
34206
34230
|
#
|
34207
|
-
# @!attribute [rw] attempt_count
|
34208
|
-
# The current attempt of the execution step. For more information, see
|
34209
|
-
# [Retry Policy for SageMaker Pipelines steps][1].
|
34210
|
-
#
|
34211
|
-
#
|
34212
|
-
#
|
34213
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-retry-policy.html
|
34214
|
-
# @return [Integer]
|
34215
|
-
#
|
34216
34231
|
# @!attribute [rw] failure_reason
|
34217
34232
|
# The reason why the step failed execution. This is only returned if
|
34218
34233
|
# the step failed its execution.
|
@@ -34222,6 +34237,15 @@ module Aws::SageMaker
|
|
34222
34237
|
# Metadata to run the pipeline step.
|
34223
34238
|
# @return [Types::PipelineExecutionStepMetadata]
|
34224
34239
|
#
|
34240
|
+
# @!attribute [rw] attempt_count
|
34241
|
+
# The current attempt of the execution step. For more information, see
|
34242
|
+
# [Retry Policy for SageMaker Pipelines steps][1].
|
34243
|
+
#
|
34244
|
+
#
|
34245
|
+
#
|
34246
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-retry-policy.html
|
34247
|
+
# @return [Integer]
|
34248
|
+
#
|
34225
34249
|
# @!attribute [rw] selective_execution_result
|
34226
34250
|
# The ARN from an execution of the current pipeline from which results
|
34227
34251
|
# are reused for this step.
|
@@ -34237,9 +34261,9 @@ module Aws::SageMaker
|
|
34237
34261
|
:end_time,
|
34238
34262
|
:step_status,
|
34239
34263
|
:cache_hit_result,
|
34240
|
-
:attempt_count,
|
34241
34264
|
:failure_reason,
|
34242
34265
|
:metadata,
|
34266
|
+
:attempt_count,
|
34243
34267
|
:selective_execution_result)
|
34244
34268
|
SENSITIVE = []
|
34245
34269
|
include Aws::Structure
|
@@ -34292,6 +34316,10 @@ module Aws::SageMaker
|
|
34292
34316
|
# by this step execution and a list of output parameters.
|
34293
34317
|
# @return [Types::LambdaStepMetadata]
|
34294
34318
|
#
|
34319
|
+
# @!attribute [rw] emr
|
34320
|
+
# The configurations and outcomes of an Amazon EMR step execution.
|
34321
|
+
# @return [Types::EMRStepMetadata]
|
34322
|
+
#
|
34295
34323
|
# @!attribute [rw] quality_check
|
34296
34324
|
# The configurations and outcomes of the check step execution. This
|
34297
34325
|
# includes:
|
@@ -34343,10 +34371,6 @@ module Aws::SageMaker
|
|
34343
34371
|
# `CalculatedBaseline`.
|
34344
34372
|
# @return [Types::ClarifyCheckStepMetadata]
|
34345
34373
|
#
|
34346
|
-
# @!attribute [rw] emr
|
34347
|
-
# The configurations and outcomes of an Amazon EMR step execution.
|
34348
|
-
# @return [Types::EMRStepMetadata]
|
34349
|
-
#
|
34350
34374
|
# @!attribute [rw] fail
|
34351
34375
|
# The configurations and outcomes of a Fail step execution.
|
34352
34376
|
# @return [Types::FailStepMetadata]
|
@@ -34368,9 +34392,9 @@ module Aws::SageMaker
|
|
34368
34392
|
:condition,
|
34369
34393
|
:callback,
|
34370
34394
|
:lambda,
|
34395
|
+
:emr,
|
34371
34396
|
:quality_check,
|
34372
34397
|
:clarify_check,
|
34373
|
-
:emr,
|
34374
34398
|
:fail,
|
34375
34399
|
:auto_ml_job)
|
34376
34400
|
SENSITIVE = []
|
@@ -36488,6 +36512,14 @@ module Aws::SageMaker
|
|
36488
36512
|
# real-time.
|
36489
36513
|
# @return [Array<String>]
|
36490
36514
|
#
|
36515
|
+
# @!attribute [rw] supported_endpoint_type
|
36516
|
+
# The endpoint type to receive recommendations for. By default this is
|
36517
|
+
# null, and the results of the inference recommendation job return a
|
36518
|
+
# combined list of both real-time and serverless benchmarks. By
|
36519
|
+
# specifying a value for this field, you can receive a longer list of
|
36520
|
+
# benchmarks for the desired endpoint type.
|
36521
|
+
# @return [String]
|
36522
|
+
#
|
36491
36523
|
# @!attribute [rw] data_input_config
|
36492
36524
|
# Specifies the name and shape of the expected data inputs for your
|
36493
36525
|
# trained model with a JSON dictionary form. This field is used for
|
@@ -36499,14 +36531,6 @@ module Aws::SageMaker
|
|
36499
36531
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_InputConfig.html#sagemaker-Type-InputConfig-DataInputConfig
|
36500
36532
|
# @return [String]
|
36501
36533
|
#
|
36502
|
-
# @!attribute [rw] supported_endpoint_type
|
36503
|
-
# The endpoint type to receive recommendations for. By default this is
|
36504
|
-
# null, and the results of the inference recommendation job return a
|
36505
|
-
# combined list of both real-time and serverless benchmarks. By
|
36506
|
-
# specifying a value for this field, you can receive a longer list of
|
36507
|
-
# benchmarks for the desired endpoint type.
|
36508
|
-
# @return [String]
|
36509
|
-
#
|
36510
36534
|
# @!attribute [rw] supported_response_mime_types
|
36511
36535
|
# The supported MIME types for the output data.
|
36512
36536
|
# @return [Array<String>]
|
@@ -36521,8 +36545,8 @@ module Aws::SageMaker
|
|
36521
36545
|
:payload_config,
|
36522
36546
|
:nearest_model_name,
|
36523
36547
|
:supported_instance_types,
|
36524
|
-
:data_input_config,
|
36525
36548
|
:supported_endpoint_type,
|
36549
|
+
:data_input_config,
|
36526
36550
|
:supported_response_mime_types)
|
36527
36551
|
SENSITIVE = []
|
36528
36552
|
include Aws::Structure
|
@@ -36535,6 +36559,11 @@ module Aws::SageMaker
|
|
36535
36559
|
# The metrics of recommendations.
|
36536
36560
|
# @return [Types::RecommendationMetrics]
|
36537
36561
|
#
|
36562
|
+
# @!attribute [rw] endpoint_metrics
|
36563
|
+
# The metrics for an existing endpoint compared in an Inference
|
36564
|
+
# Recommender job.
|
36565
|
+
# @return [Types::InferenceMetrics]
|
36566
|
+
#
|
36538
36567
|
# @!attribute [rw] endpoint_configuration
|
36539
36568
|
# The endpoint configuration made by Inference Recommender during a
|
36540
36569
|
# recommendation job.
|
@@ -36549,11 +36578,6 @@ module Aws::SageMaker
|
|
36549
36578
|
# The reason why a benchmark failed.
|
36550
36579
|
# @return [String]
|
36551
36580
|
#
|
36552
|
-
# @!attribute [rw] endpoint_metrics
|
36553
|
-
# The metrics for an existing endpoint compared in an Inference
|
36554
|
-
# Recommender job.
|
36555
|
-
# @return [Types::InferenceMetrics]
|
36556
|
-
#
|
36557
36581
|
# @!attribute [rw] invocation_end_time
|
36558
36582
|
# A timestamp that shows when the benchmark completed.
|
36559
36583
|
# @return [Time]
|
@@ -36566,10 +36590,10 @@ module Aws::SageMaker
|
|
36566
36590
|
#
|
36567
36591
|
class RecommendationJobInferenceBenchmark < Struct.new(
|
36568
36592
|
:metrics,
|
36593
|
+
:endpoint_metrics,
|
36569
36594
|
:endpoint_configuration,
|
36570
36595
|
:model_configuration,
|
36571
36596
|
:failure_reason,
|
36572
|
-
:endpoint_metrics,
|
36573
36597
|
:invocation_end_time,
|
36574
36598
|
:invocation_start_time)
|
36575
36599
|
SENSITIVE = []
|
@@ -36582,6 +36606,10 @@ module Aws::SageMaker
|
|
36582
36606
|
# The Amazon Resource Name (ARN) of a versioned model package.
|
36583
36607
|
# @return [String]
|
36584
36608
|
#
|
36609
|
+
# @!attribute [rw] model_name
|
36610
|
+
# The name of the created model.
|
36611
|
+
# @return [String]
|
36612
|
+
#
|
36585
36613
|
# @!attribute [rw] job_duration_in_seconds
|
36586
36614
|
# Specifies the maximum duration of the job, in seconds. The maximum
|
36587
36615
|
# value is 18,000 seconds.
|
@@ -36655,14 +36683,11 @@ module Aws::SageMaker
|
|
36655
36683
|
# VPC in the inference recommendation job.
|
36656
36684
|
# @return [Types::RecommendationJobVpcConfig]
|
36657
36685
|
#
|
36658
|
-
# @!attribute [rw] model_name
|
36659
|
-
# The name of the created model.
|
36660
|
-
# @return [String]
|
36661
|
-
#
|
36662
36686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobInputConfig AWS API Documentation
|
36663
36687
|
#
|
36664
36688
|
class RecommendationJobInputConfig < Struct.new(
|
36665
36689
|
:model_package_version_arn,
|
36690
|
+
:model_name,
|
36666
36691
|
:job_duration_in_seconds,
|
36667
36692
|
:traffic_pattern,
|
36668
36693
|
:resource_limit,
|
@@ -36670,8 +36695,7 @@ module Aws::SageMaker
|
|
36670
36695
|
:volume_kms_key_id,
|
36671
36696
|
:container_config,
|
36672
36697
|
:endpoints,
|
36673
|
-
:vpc_config
|
36674
|
-
:model_name)
|
36698
|
+
:vpc_config)
|
36675
36699
|
SENSITIVE = []
|
36676
36700
|
include Aws::Structure
|
36677
36701
|
end
|
@@ -37266,15 +37290,15 @@ module Aws::SageMaker
|
|
37266
37290
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ssd-instance-store.html
|
37267
37291
|
# @return [String]
|
37268
37292
|
#
|
37269
|
-
# @!attribute [rw] instance_groups
|
37270
|
-
# The configuration of a heterogeneous cluster in JSON format.
|
37271
|
-
# @return [Array<Types::InstanceGroup>]
|
37272
|
-
#
|
37273
37293
|
# @!attribute [rw] keep_alive_period_in_seconds
|
37274
37294
|
# The duration of time in seconds to retain configured resources in a
|
37275
37295
|
# warm pool for subsequent training jobs.
|
37276
37296
|
# @return [Integer]
|
37277
37297
|
#
|
37298
|
+
# @!attribute [rw] instance_groups
|
37299
|
+
# The configuration of a heterogeneous cluster in JSON format.
|
37300
|
+
# @return [Array<Types::InstanceGroup>]
|
37301
|
+
#
|
37278
37302
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ResourceConfig AWS API Documentation
|
37279
37303
|
#
|
37280
37304
|
class ResourceConfig < Struct.new(
|
@@ -37282,8 +37306,8 @@ module Aws::SageMaker
|
|
37282
37306
|
:instance_count,
|
37283
37307
|
:volume_size_in_gb,
|
37284
37308
|
:volume_kms_key_id,
|
37285
|
-
:
|
37286
|
-
:
|
37309
|
+
:keep_alive_period_in_seconds,
|
37310
|
+
:instance_groups)
|
37287
37311
|
SENSITIVE = []
|
37288
37312
|
include Aws::Structure
|
37289
37313
|
end
|
@@ -37384,7 +37408,8 @@ module Aws::SageMaker
|
|
37384
37408
|
# @return [String]
|
37385
37409
|
#
|
37386
37410
|
# @!attribute [rw] sage_maker_image_version_alias
|
37387
|
-
# The SageMakerImageVersionAlias.
|
37411
|
+
# The SageMakerImageVersionAlias of the image to launch with. This
|
37412
|
+
# value is in SemVer 2.0.0 versioning format.
|
37388
37413
|
# @return [String]
|
37389
37414
|
#
|
37390
37415
|
# @!attribute [rw] instance_type
|
@@ -38060,27 +38085,27 @@ module Aws::SageMaker
|
|
38060
38085
|
# composed of features and values per features.
|
38061
38086
|
# @return [Types::FeatureGroup]
|
38062
38087
|
#
|
38063
|
-
# @!attribute [rw] project
|
38064
|
-
# The properties of a project.
|
38065
|
-
# @return [Types::Project]
|
38066
|
-
#
|
38067
38088
|
# @!attribute [rw] feature_metadata
|
38068
38089
|
# The feature metadata used to search through the features.
|
38069
38090
|
# @return [Types::FeatureMetadata]
|
38070
38091
|
#
|
38092
|
+
# @!attribute [rw] project
|
38093
|
+
# The properties of a project.
|
38094
|
+
# @return [Types::Project]
|
38095
|
+
#
|
38071
38096
|
# @!attribute [rw] hyper_parameter_tuning_job
|
38072
38097
|
# The properties of a hyperparameter tuning job.
|
38073
38098
|
# @return [Types::HyperParameterTuningJobSearchEntity]
|
38074
38099
|
#
|
38075
|
-
# @!attribute [rw] model
|
38076
|
-
# A model displayed in the Amazon SageMaker Model Dashboard.
|
38077
|
-
# @return [Types::ModelDashboardModel]
|
38078
|
-
#
|
38079
38100
|
# @!attribute [rw] model_card
|
38080
38101
|
# An Amazon SageMaker Model Card that documents details about a
|
38081
38102
|
# machine learning model.
|
38082
38103
|
# @return [Types::ModelCard]
|
38083
38104
|
#
|
38105
|
+
# @!attribute [rw] model
|
38106
|
+
# A model displayed in the Amazon SageMaker Model Dashboard.
|
38107
|
+
# @return [Types::ModelDashboardModel]
|
38108
|
+
#
|
38084
38109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchRecord AWS API Documentation
|
38085
38110
|
#
|
38086
38111
|
class SearchRecord < Struct.new(
|
@@ -38094,11 +38119,11 @@ module Aws::SageMaker
|
|
38094
38119
|
:pipeline,
|
38095
38120
|
:pipeline_execution,
|
38096
38121
|
:feature_group,
|
38097
|
-
:project,
|
38098
38122
|
:feature_metadata,
|
38123
|
+
:project,
|
38099
38124
|
:hyper_parameter_tuning_job,
|
38100
|
-
:
|
38101
|
-
:
|
38125
|
+
:model_card,
|
38126
|
+
:model)
|
38102
38127
|
SENSITIVE = []
|
38103
38128
|
include Aws::Structure
|
38104
38129
|
end
|
@@ -38785,10 +38810,6 @@ module Aws::SageMaker
|
|
38785
38810
|
# The last modified time.
|
38786
38811
|
# @return [Time]
|
38787
38812
|
#
|
38788
|
-
# @!attribute [rw] space_display_name
|
38789
|
-
# The name of the space that appears in the Studio UI.
|
38790
|
-
# @return [String]
|
38791
|
-
#
|
38792
38813
|
# @!attribute [rw] space_settings_summary
|
38793
38814
|
# Specifies summary information about the space settings.
|
38794
38815
|
# @return [Types::SpaceSettingsSummary]
|
@@ -38801,6 +38822,10 @@ module Aws::SageMaker
|
|
38801
38822
|
# Specifies summary information about the ownership settings.
|
38802
38823
|
# @return [Types::OwnershipSettingsSummary]
|
38803
38824
|
#
|
38825
|
+
# @!attribute [rw] space_display_name
|
38826
|
+
# The name of the space that appears in the Studio UI.
|
38827
|
+
# @return [String]
|
38828
|
+
#
|
38804
38829
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceDetails AWS API Documentation
|
38805
38830
|
#
|
38806
38831
|
class SpaceDetails < Struct.new(
|
@@ -38809,10 +38834,10 @@ module Aws::SageMaker
|
|
38809
38834
|
:status,
|
38810
38835
|
:creation_time,
|
38811
38836
|
:last_modified_time,
|
38812
|
-
:space_display_name,
|
38813
38837
|
:space_settings_summary,
|
38814
38838
|
:space_sharing_settings_summary,
|
38815
|
-
:ownership_settings_summary
|
38839
|
+
:ownership_settings_summary,
|
38840
|
+
:space_display_name)
|
38816
38841
|
SENSITIVE = []
|
38817
38842
|
include Aws::Structure
|
38818
38843
|
end
|
@@ -38848,22 +38873,22 @@ module Aws::SageMaker
|
|
38848
38873
|
# The KernelGateway app settings.
|
38849
38874
|
# @return [Types::KernelGatewayAppSettings]
|
38850
38875
|
#
|
38851
|
-
# @!attribute [rw] jupyter_lab_app_settings
|
38852
|
-
# The settings for the JupyterLab application.
|
38853
|
-
# @return [Types::SpaceJupyterLabAppSettings]
|
38854
|
-
#
|
38855
38876
|
# @!attribute [rw] code_editor_app_settings
|
38856
38877
|
# The Code Editor application settings.
|
38857
38878
|
# @return [Types::SpaceCodeEditorAppSettings]
|
38858
38879
|
#
|
38859
|
-
# @!attribute [rw]
|
38860
|
-
# The
|
38861
|
-
# @return [Types::
|
38880
|
+
# @!attribute [rw] jupyter_lab_app_settings
|
38881
|
+
# The settings for the JupyterLab application.
|
38882
|
+
# @return [Types::SpaceJupyterLabAppSettings]
|
38862
38883
|
#
|
38863
38884
|
# @!attribute [rw] app_type
|
38864
38885
|
# The type of app created within the space.
|
38865
38886
|
# @return [String]
|
38866
38887
|
#
|
38888
|
+
# @!attribute [rw] space_storage_settings
|
38889
|
+
# The storage settings for a private space.
|
38890
|
+
# @return [Types::SpaceStorageSettings]
|
38891
|
+
#
|
38867
38892
|
# @!attribute [rw] custom_file_systems
|
38868
38893
|
# A file system, created by you, that you assign to a space for an
|
38869
38894
|
# Amazon SageMaker Domain. Permitted users can access this file system
|
@@ -38875,10 +38900,10 @@ module Aws::SageMaker
|
|
38875
38900
|
class SpaceSettings < Struct.new(
|
38876
38901
|
:jupyter_server_app_settings,
|
38877
38902
|
:kernel_gateway_app_settings,
|
38878
|
-
:jupyter_lab_app_settings,
|
38879
38903
|
:code_editor_app_settings,
|
38880
|
-
:
|
38904
|
+
:jupyter_lab_app_settings,
|
38881
38905
|
:app_type,
|
38906
|
+
:space_storage_settings,
|
38882
38907
|
:custom_file_systems)
|
38883
38908
|
SENSITIVE = []
|
38884
38909
|
include Aws::Structure
|
@@ -39913,12 +39938,24 @@ module Aws::SageMaker
|
|
39913
39938
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-set-hyperparameters.html
|
39914
39939
|
# @return [Hash<String,String>]
|
39915
39940
|
#
|
39941
|
+
# @!attribute [rw] model_access_config
|
39942
|
+
# The access configuration file for the ML model. You can explicitly
|
39943
|
+
# accept the model end-user license agreement (EULA) within the
|
39944
|
+
# `ModelAccessConfig`. For more information, see [End-user license
|
39945
|
+
# agreements][1].
|
39946
|
+
#
|
39947
|
+
#
|
39948
|
+
#
|
39949
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/jumpstart-foundation-models-choose.html#jumpstart-foundation-models-choose-eula
|
39950
|
+
# @return [Types::ModelAccessConfig]
|
39951
|
+
#
|
39916
39952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TextGenerationJobConfig AWS API Documentation
|
39917
39953
|
#
|
39918
39954
|
class TextGenerationJobConfig < Struct.new(
|
39919
39955
|
:completion_criteria,
|
39920
39956
|
:base_model_name,
|
39921
|
-
:text_generation_hyper_parameters
|
39957
|
+
:text_generation_hyper_parameters,
|
39958
|
+
:model_access_config)
|
39922
39959
|
SENSITIVE = []
|
39923
39960
|
include Aws::Structure
|
39924
39961
|
end
|
@@ -41065,6 +41102,11 @@ module Aws::SageMaker
|
|
41065
41102
|
# Describes the results of a transform job.
|
41066
41103
|
# @return [Types::TransformOutput]
|
41067
41104
|
#
|
41105
|
+
# @!attribute [rw] data_capture_config
|
41106
|
+
# Configuration to control how SageMaker captures inference data for
|
41107
|
+
# batch transform jobs.
|
41108
|
+
# @return [Types::BatchDataCaptureConfig]
|
41109
|
+
#
|
41068
41110
|
# @!attribute [rw] transform_resources
|
41069
41111
|
# Describes the resources, including ML instance types and ML instance
|
41070
41112
|
# count, to use for transform job.
|
@@ -41132,11 +41174,6 @@ module Aws::SageMaker
|
|
41132
41174
|
# A list of tags associated with the transform job.
|
41133
41175
|
# @return [Array<Types::Tag>]
|
41134
41176
|
#
|
41135
|
-
# @!attribute [rw] data_capture_config
|
41136
|
-
# Configuration to control how SageMaker captures inference data for
|
41137
|
-
# batch transform jobs.
|
41138
|
-
# @return [Types::BatchDataCaptureConfig]
|
41139
|
-
#
|
41140
41177
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TransformJob AWS API Documentation
|
41141
41178
|
#
|
41142
41179
|
class TransformJob < Struct.new(
|
@@ -41152,6 +41189,7 @@ module Aws::SageMaker
|
|
41152
41189
|
:environment,
|
41153
41190
|
:transform_input,
|
41154
41191
|
:transform_output,
|
41192
|
+
:data_capture_config,
|
41155
41193
|
:transform_resources,
|
41156
41194
|
:creation_time,
|
41157
41195
|
:transform_start_time,
|
@@ -41160,8 +41198,7 @@ module Aws::SageMaker
|
|
41160
41198
|
:auto_ml_job_arn,
|
41161
41199
|
:data_processing,
|
41162
41200
|
:experiment_config,
|
41163
|
-
:tags
|
41164
|
-
:data_capture_config)
|
41201
|
+
:tags)
|
41165
41202
|
SENSITIVE = []
|
41166
41203
|
include Aws::Structure
|
41167
41204
|
end
|
@@ -42582,10 +42619,6 @@ module Aws::SageMaker
|
|
42582
42619
|
# A collection of `DomainSettings` configuration values to update.
|
42583
42620
|
# @return [Types::DomainSettingsForUpdate]
|
42584
42621
|
#
|
42585
|
-
# @!attribute [rw] default_space_settings
|
42586
|
-
# The default settings used to create a space within the Domain.
|
42587
|
-
# @return [Types::DefaultSpaceSettings]
|
42588
|
-
#
|
42589
42622
|
# @!attribute [rw] app_security_group_management
|
42590
42623
|
# The entity that creates and manages the required security groups for
|
42591
42624
|
# inter-app communication in `VPCOnly` mode. Required when
|
@@ -42595,6 +42628,10 @@ module Aws::SageMaker
|
|
42595
42628
|
# value must be set to `Service`.
|
42596
42629
|
# @return [String]
|
42597
42630
|
#
|
42631
|
+
# @!attribute [rw] default_space_settings
|
42632
|
+
# The default settings used to create a space within the Domain.
|
42633
|
+
# @return [Types::DefaultSpaceSettings]
|
42634
|
+
#
|
42598
42635
|
# @!attribute [rw] subnet_ids
|
42599
42636
|
# The VPC subnets that Studio uses for communication.
|
42600
42637
|
#
|
@@ -42626,8 +42663,8 @@ module Aws::SageMaker
|
|
42626
42663
|
:domain_id,
|
42627
42664
|
:default_user_settings,
|
42628
42665
|
:domain_settings_for_update,
|
42629
|
-
:default_space_settings,
|
42630
42666
|
:app_security_group_management,
|
42667
|
+
:default_space_settings,
|
42631
42668
|
:subnet_ids,
|
42632
42669
|
:app_network_access_type)
|
42633
42670
|
SENSITIVE = []
|
@@ -44179,14 +44216,14 @@ module Aws::SageMaker
|
|
44179
44216
|
# The Canvas app settings.
|
44180
44217
|
# @return [Types::CanvasAppSettings]
|
44181
44218
|
#
|
44182
|
-
# @!attribute [rw] jupyter_lab_app_settings
|
44183
|
-
# The settings for the JupyterLab application.
|
44184
|
-
# @return [Types::JupyterLabAppSettings]
|
44185
|
-
#
|
44186
44219
|
# @!attribute [rw] code_editor_app_settings
|
44187
44220
|
# The Code Editor application settings.
|
44188
44221
|
# @return [Types::CodeEditorAppSettings]
|
44189
44222
|
#
|
44223
|
+
# @!attribute [rw] jupyter_lab_app_settings
|
44224
|
+
# The settings for the JupyterLab application.
|
44225
|
+
# @return [Types::JupyterLabAppSettings]
|
44226
|
+
#
|
44190
44227
|
# @!attribute [rw] space_storage_settings
|
44191
44228
|
# The storage settings for a private space.
|
44192
44229
|
# @return [Types::DefaultSpaceStorageSettings]
|
@@ -44231,8 +44268,8 @@ module Aws::SageMaker
|
|
44231
44268
|
:r_studio_server_pro_app_settings,
|
44232
44269
|
:r_session_app_settings,
|
44233
44270
|
:canvas_app_settings,
|
44234
|
-
:jupyter_lab_app_settings,
|
44235
44271
|
:code_editor_app_settings,
|
44272
|
+
:jupyter_lab_app_settings,
|
44236
44273
|
:space_storage_settings,
|
44237
44274
|
:default_landing_uri,
|
44238
44275
|
:studio_web_portal,
|