aws-sdk-sagemaker 1.223.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +851 -378
- data/lib/aws-sdk-sagemaker/client_api.rb +257 -71
- 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 +837 -275
- 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,20 +1287,22 @@ module Aws::SageMaker
|
|
1283
1287
|
# The creation time.
|
1284
1288
|
# @return [Time]
|
1285
1289
|
#
|
1286
|
-
# @!attribute [rw]
|
1287
|
-
#
|
1288
|
-
#
|
1290
|
+
# @!attribute [rw] resource_spec
|
1291
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
1292
|
+
# version, and the instance type that the version runs on.
|
1293
|
+
# @return [Types::ResourceSpec]
|
1289
1294
|
#
|
1290
1295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AppDetails AWS API Documentation
|
1291
1296
|
#
|
1292
1297
|
class AppDetails < Struct.new(
|
1293
1298
|
:domain_id,
|
1294
1299
|
:user_profile_name,
|
1300
|
+
:space_name,
|
1295
1301
|
:app_type,
|
1296
1302
|
:app_name,
|
1297
1303
|
:status,
|
1298
1304
|
:creation_time,
|
1299
|
-
:
|
1305
|
+
:resource_spec)
|
1300
1306
|
SENSITIVE = []
|
1301
1307
|
include Aws::Structure
|
1302
1308
|
end
|
@@ -1325,6 +1331,11 @@ module Aws::SageMaker
|
|
1325
1331
|
# image.
|
1326
1332
|
# @return [Types::KernelGatewayImageConfig]
|
1327
1333
|
#
|
1334
|
+
# @!attribute [rw] jupyter_lab_app_image_config
|
1335
|
+
# The configuration for the file system and the runtime, such as the
|
1336
|
+
# environment variables and entry point.
|
1337
|
+
# @return [Types::JupyterLabAppImageConfig]
|
1338
|
+
#
|
1328
1339
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AppImageConfigDetails AWS API Documentation
|
1329
1340
|
#
|
1330
1341
|
class AppImageConfigDetails < Struct.new(
|
@@ -1332,7 +1343,8 @@ module Aws::SageMaker
|
|
1332
1343
|
:app_image_config_name,
|
1333
1344
|
:creation_time,
|
1334
1345
|
:last_modified_time,
|
1335
|
-
:kernel_gateway_image_config
|
1346
|
+
:kernel_gateway_image_config,
|
1347
|
+
:jupyter_lab_app_image_config)
|
1336
1348
|
SENSITIVE = []
|
1337
1349
|
include Aws::Structure
|
1338
1350
|
end
|
@@ -2231,17 +2243,17 @@ module Aws::SageMaker
|
|
2231
2243
|
# settings.
|
2232
2244
|
# @return [Types::AutoMLSecurityConfig]
|
2233
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
|
+
#
|
2234
2251
|
# @!attribute [rw] data_split_config
|
2235
2252
|
# The configuration for splitting the input training dataset.
|
2236
2253
|
#
|
2237
2254
|
# Type: AutoMLDataSplitConfig
|
2238
2255
|
# @return [Types::AutoMLDataSplitConfig]
|
2239
2256
|
#
|
2240
|
-
# @!attribute [rw] candidate_generation_config
|
2241
|
-
# The configuration for generating a candidate for an AutoML job
|
2242
|
-
# (optional).
|
2243
|
-
# @return [Types::AutoMLCandidateGenerationConfig]
|
2244
|
-
#
|
2245
2257
|
# @!attribute [rw] mode
|
2246
2258
|
# The method that Autopilot uses to train the data. You can either
|
2247
2259
|
# specify the mode manually or let Autopilot choose for you based on
|
@@ -2276,8 +2288,8 @@ module Aws::SageMaker
|
|
2276
2288
|
class AutoMLJobConfig < Struct.new(
|
2277
2289
|
:completion_criteria,
|
2278
2290
|
:security_config,
|
2279
|
-
:data_split_config,
|
2280
2291
|
:candidate_generation_config,
|
2292
|
+
:data_split_config,
|
2281
2293
|
:mode)
|
2282
2294
|
SENSITIVE = []
|
2283
2295
|
include Aws::Structure
|
@@ -2487,16 +2499,16 @@ module Aws::SageMaker
|
|
2487
2499
|
# classification problem type.
|
2488
2500
|
# @return [Types::TextClassificationJobConfig]
|
2489
2501
|
#
|
2490
|
-
# @!attribute [rw] tabular_job_config
|
2491
|
-
# Settings used to configure an AutoML job V2 for the tabular problem
|
2492
|
-
# type (regression, classification).
|
2493
|
-
# @return [Types::TabularJobConfig]
|
2494
|
-
#
|
2495
2502
|
# @!attribute [rw] time_series_forecasting_job_config
|
2496
2503
|
# Settings used to configure an AutoML job V2 for the time-series
|
2497
2504
|
# forecasting problem type.
|
2498
2505
|
# @return [Types::TimeSeriesForecastingJobConfig]
|
2499
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
|
+
#
|
2500
2512
|
# @!attribute [rw] text_generation_job_config
|
2501
2513
|
# Settings used to configure an AutoML job V2 for the text generation
|
2502
2514
|
# (LLMs fine-tuning) problem type.
|
@@ -2518,8 +2530,8 @@ module Aws::SageMaker
|
|
2518
2530
|
class AutoMLProblemTypeConfig < Struct.new(
|
2519
2531
|
:image_classification_job_config,
|
2520
2532
|
:text_classification_job_config,
|
2521
|
-
:tabular_job_config,
|
2522
2533
|
:time_series_forecasting_job_config,
|
2534
|
+
:tabular_job_config,
|
2523
2535
|
:text_generation_job_config,
|
2524
2536
|
:unknown)
|
2525
2537
|
SENSITIVE = []
|
@@ -2528,8 +2540,8 @@ module Aws::SageMaker
|
|
2528
2540
|
|
2529
2541
|
class ImageClassificationJobConfig < AutoMLProblemTypeConfig; end
|
2530
2542
|
class TextClassificationJobConfig < AutoMLProblemTypeConfig; end
|
2531
|
-
class TabularJobConfig < AutoMLProblemTypeConfig; end
|
2532
2543
|
class TimeSeriesForecastingJobConfig < AutoMLProblemTypeConfig; end
|
2544
|
+
class TabularJobConfig < AutoMLProblemTypeConfig; end
|
2533
2545
|
class TextGenerationJobConfig < AutoMLProblemTypeConfig; end
|
2534
2546
|
class Unknown < AutoMLProblemTypeConfig; end
|
2535
2547
|
end
|
@@ -3214,14 +3226,14 @@ module Aws::SageMaker
|
|
3214
3226
|
# The settings for connecting to an external data source with OAuth.
|
3215
3227
|
# @return [Array<Types::IdentityProviderOAuthSetting>]
|
3216
3228
|
#
|
3217
|
-
# @!attribute [rw] kendra_settings
|
3218
|
-
# The settings for document querying.
|
3219
|
-
# @return [Types::KendraSettings]
|
3220
|
-
#
|
3221
3229
|
# @!attribute [rw] direct_deploy_settings
|
3222
3230
|
# The model deployment settings for the SageMaker Canvas application.
|
3223
3231
|
# @return [Types::DirectDeploySettings]
|
3224
3232
|
#
|
3233
|
+
# @!attribute [rw] kendra_settings
|
3234
|
+
# The settings for document querying.
|
3235
|
+
# @return [Types::KendraSettings]
|
3236
|
+
#
|
3225
3237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CanvasAppSettings AWS API Documentation
|
3226
3238
|
#
|
3227
3239
|
class CanvasAppSettings < Struct.new(
|
@@ -3229,8 +3241,8 @@ module Aws::SageMaker
|
|
3229
3241
|
:model_register_settings,
|
3230
3242
|
:workspace_settings,
|
3231
3243
|
:identity_provider_o_auth_settings,
|
3232
|
-
:
|
3233
|
-
:
|
3244
|
+
:direct_deploy_settings,
|
3245
|
+
:kendra_settings)
|
3234
3246
|
SENSITIVE = []
|
3235
3247
|
include Aws::Structure
|
3236
3248
|
end
|
@@ -4169,6 +4181,34 @@ module Aws::SageMaker
|
|
4169
4181
|
include Aws::Structure
|
4170
4182
|
end
|
4171
4183
|
|
4184
|
+
# The Code Editor application settings.
|
4185
|
+
#
|
4186
|
+
# For more information about Code Editor, see [Get started with Code
|
4187
|
+
# Editor in Amazon SageMaker][1].
|
4188
|
+
#
|
4189
|
+
#
|
4190
|
+
#
|
4191
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/code-editor.html
|
4192
|
+
#
|
4193
|
+
# @!attribute [rw] default_resource_spec
|
4194
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
4195
|
+
# version, and the instance type that the version runs on.
|
4196
|
+
# @return [Types::ResourceSpec]
|
4197
|
+
#
|
4198
|
+
# @!attribute [rw] lifecycle_config_arns
|
4199
|
+
# The Amazon Resource Name (ARN) of the Code Editor application
|
4200
|
+
# lifecycle configuration.
|
4201
|
+
# @return [Array<String>]
|
4202
|
+
#
|
4203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CodeEditorAppSettings AWS API Documentation
|
4204
|
+
#
|
4205
|
+
class CodeEditorAppSettings < Struct.new(
|
4206
|
+
:default_resource_spec,
|
4207
|
+
:lifecycle_config_arns)
|
4208
|
+
SENSITIVE = []
|
4209
|
+
include Aws::Structure
|
4210
|
+
end
|
4211
|
+
|
4172
4212
|
# A Git repository that SageMaker automatically displays to users for
|
4173
4213
|
# cloning in the JupyterServer application.
|
4174
4214
|
#
|
@@ -4427,6 +4467,31 @@ module Aws::SageMaker
|
|
4427
4467
|
include Aws::Structure
|
4428
4468
|
end
|
4429
4469
|
|
4470
|
+
# The configuration used to run the application image container.
|
4471
|
+
#
|
4472
|
+
# @!attribute [rw] container_arguments
|
4473
|
+
# The arguments for the container when you're running the
|
4474
|
+
# application.
|
4475
|
+
# @return [Array<String>]
|
4476
|
+
#
|
4477
|
+
# @!attribute [rw] container_entrypoint
|
4478
|
+
# The entrypoint used to run the application in the container.
|
4479
|
+
# @return [Array<String>]
|
4480
|
+
#
|
4481
|
+
# @!attribute [rw] container_environment_variables
|
4482
|
+
# The environment variables to set in the container
|
4483
|
+
# @return [Hash<String,String>]
|
4484
|
+
#
|
4485
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ContainerConfig AWS API Documentation
|
4486
|
+
#
|
4487
|
+
class ContainerConfig < Struct.new(
|
4488
|
+
:container_arguments,
|
4489
|
+
:container_entrypoint,
|
4490
|
+
:container_environment_variables)
|
4491
|
+
SENSITIVE = []
|
4492
|
+
include Aws::Structure
|
4493
|
+
end
|
4494
|
+
|
4430
4495
|
# Describes the container, as part of model definition.
|
4431
4496
|
#
|
4432
4497
|
# @!attribute [rw] container_hostname
|
@@ -4527,6 +4592,16 @@ module Aws::SageMaker
|
|
4527
4592
|
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
|
4528
4593
|
# @return [String]
|
4529
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
|
+
#
|
4530
4605
|
# @!attribute [rw] environment
|
4531
4606
|
# The environment variables to set in the Docker container. Each key
|
4532
4607
|
# and value in the `Environment` string to string map can have length
|
@@ -4546,16 +4621,6 @@ module Aws::SageMaker
|
|
4546
4621
|
# Specifies additional configuration for multi-model endpoints.
|
4547
4622
|
# @return [Types::MultiModelConfig]
|
4548
4623
|
#
|
4549
|
-
# @!attribute [rw] model_data_source
|
4550
|
-
# Specifies the location of ML model data to deploy.
|
4551
|
-
#
|
4552
|
-
# <note markdown="1"> Currently you cannot use `ModelDataSource` in conjunction with
|
4553
|
-
# SageMaker batch transform, SageMaker serverless endpoints, SageMaker
|
4554
|
-
# multi-model endpoints, and SageMaker Marketplace.
|
4555
|
-
#
|
4556
|
-
# </note>
|
4557
|
-
# @return [Types::ModelDataSource]
|
4558
|
-
#
|
4559
4624
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ContainerDefinition AWS API Documentation
|
4560
4625
|
#
|
4561
4626
|
class ContainerDefinition < Struct.new(
|
@@ -4564,11 +4629,11 @@ module Aws::SageMaker
|
|
4564
4629
|
:image_config,
|
4565
4630
|
:mode,
|
4566
4631
|
:model_data_url,
|
4632
|
+
:model_data_source,
|
4567
4633
|
:environment,
|
4568
4634
|
:model_package_name,
|
4569
4635
|
:inference_specification_name,
|
4570
|
-
:multi_model_config
|
4571
|
-
:model_data_source)
|
4636
|
+
:multi_model_config)
|
4572
4637
|
SENSITIVE = []
|
4573
4638
|
include Aws::Structure
|
4574
4639
|
end
|
@@ -4908,12 +4973,20 @@ module Aws::SageMaker
|
|
4908
4973
|
# JupyterLab.
|
4909
4974
|
# @return [Types::KernelGatewayImageConfig]
|
4910
4975
|
#
|
4976
|
+
# @!attribute [rw] jupyter_lab_app_image_config
|
4977
|
+
# The `JupyterLabAppImageConfig`. You can only specify one image
|
4978
|
+
# kernel in the `AppImageConfig` API. This kernel is shown to users
|
4979
|
+
# before the image starts. After the image runs, all kernels are
|
4980
|
+
# visible in JupyterLab.
|
4981
|
+
# @return [Types::JupyterLabAppImageConfig]
|
4982
|
+
#
|
4911
4983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppImageConfigRequest AWS API Documentation
|
4912
4984
|
#
|
4913
4985
|
class CreateAppImageConfigRequest < Struct.new(
|
4914
4986
|
:app_image_config_name,
|
4915
4987
|
:tags,
|
4916
|
-
:kernel_gateway_image_config
|
4988
|
+
:kernel_gateway_image_config,
|
4989
|
+
:jupyter_lab_app_image_config)
|
4917
4990
|
SENSITIVE = []
|
4918
4991
|
include Aws::Structure
|
4919
4992
|
end
|
@@ -4939,6 +5012,11 @@ module Aws::SageMaker
|
|
4939
5012
|
# must be set.
|
4940
5013
|
# @return [String]
|
4941
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
|
+
#
|
4942
5020
|
# @!attribute [rw] app_type
|
4943
5021
|
# The type of app.
|
4944
5022
|
# @return [String]
|
@@ -4966,21 +5044,16 @@ module Aws::SageMaker
|
|
4966
5044
|
# </note>
|
4967
5045
|
# @return [Types::ResourceSpec]
|
4968
5046
|
#
|
4969
|
-
# @!attribute [rw] space_name
|
4970
|
-
# The name of the space. If this value is not set, then
|
4971
|
-
# `UserProfileName` must be set.
|
4972
|
-
# @return [String]
|
4973
|
-
#
|
4974
5047
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppRequest AWS API Documentation
|
4975
5048
|
#
|
4976
5049
|
class CreateAppRequest < Struct.new(
|
4977
5050
|
:domain_id,
|
4978
5051
|
:user_profile_name,
|
5052
|
+
:space_name,
|
4979
5053
|
:app_type,
|
4980
5054
|
:app_name,
|
4981
5055
|
:tags,
|
4982
|
-
:resource_spec
|
4983
|
-
:space_name)
|
5056
|
+
:resource_spec)
|
4984
5057
|
SENSITIVE = []
|
4985
5058
|
include Aws::Structure
|
4986
5059
|
end
|
@@ -5691,6 +5764,10 @@ module Aws::SageMaker
|
|
5691
5764
|
# `CreateDomain`.
|
5692
5765
|
# @return [Types::UserSettings]
|
5693
5766
|
#
|
5767
|
+
# @!attribute [rw] domain_settings
|
5768
|
+
# A collection of `Domain` settings.
|
5769
|
+
# @return [Types::DomainSettings]
|
5770
|
+
#
|
5694
5771
|
# @!attribute [rw] subnet_ids
|
5695
5772
|
# The VPC subnets that the domain uses for communication.
|
5696
5773
|
# @return [Array<String>]
|
@@ -5738,10 +5815,6 @@ module Aws::SageMaker
|
|
5738
5815
|
# value must be set to `Service`.
|
5739
5816
|
# @return [String]
|
5740
5817
|
#
|
5741
|
-
# @!attribute [rw] domain_settings
|
5742
|
-
# A collection of `Domain` settings.
|
5743
|
-
# @return [Types::DomainSettings]
|
5744
|
-
#
|
5745
5818
|
# @!attribute [rw] default_space_settings
|
5746
5819
|
# The default settings used to create a space.
|
5747
5820
|
# @return [Types::DefaultSpaceSettings]
|
@@ -5752,6 +5825,7 @@ module Aws::SageMaker
|
|
5752
5825
|
:domain_name,
|
5753
5826
|
:auth_mode,
|
5754
5827
|
:default_user_settings,
|
5828
|
+
:domain_settings,
|
5755
5829
|
:subnet_ids,
|
5756
5830
|
:vpc_id,
|
5757
5831
|
:tags,
|
@@ -5759,7 +5833,6 @@ module Aws::SageMaker
|
|
5759
5833
|
:home_efs_file_system_kms_key_id,
|
5760
5834
|
:kms_key_id,
|
5761
5835
|
:app_security_group_management,
|
5762
|
-
:domain_settings,
|
5763
5836
|
:default_space_settings)
|
5764
5837
|
SENSITIVE = []
|
5765
5838
|
include Aws::Structure
|
@@ -7749,21 +7822,6 @@ module Aws::SageMaker
|
|
7749
7822
|
# not need to pass this option.
|
7750
7823
|
# @return [String]
|
7751
7824
|
#
|
7752
|
-
# @!attribute [rw] customer_metadata_properties
|
7753
|
-
# The metadata properties associated with the model package versions.
|
7754
|
-
# @return [Hash<String,String>]
|
7755
|
-
#
|
7756
|
-
# @!attribute [rw] drift_check_baselines
|
7757
|
-
# Represents the drift check baselines that can be used when the model
|
7758
|
-
# monitor is set using the model package. For more information, see
|
7759
|
-
# the topic on [Drift Detection against Previous Baselines in
|
7760
|
-
# SageMaker Pipelines][1] in the *Amazon SageMaker Developer Guide*.
|
7761
|
-
#
|
7762
|
-
#
|
7763
|
-
#
|
7764
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
|
7765
|
-
# @return [Types::DriftCheckBaselines]
|
7766
|
-
#
|
7767
7825
|
# @!attribute [rw] domain
|
7768
7826
|
# The machine learning domain of your model package and its
|
7769
7827
|
# components. Common machine learning domains include computer vision
|
@@ -7793,6 +7851,21 @@ module Aws::SageMaker
|
|
7793
7851
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_runtime_InvokeEndpoint.html#API_runtime_InvokeEndpoint_RequestSyntax
|
7794
7852
|
# @return [String]
|
7795
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
|
+
#
|
7796
7869
|
# @!attribute [rw] additional_inference_specifications
|
7797
7870
|
# An array of additional Inference Specification objects. Each
|
7798
7871
|
# additional Inference Specification specifies artifacts based on this
|
@@ -7819,11 +7892,11 @@ module Aws::SageMaker
|
|
7819
7892
|
:metadata_properties,
|
7820
7893
|
:model_metrics,
|
7821
7894
|
:client_token,
|
7822
|
-
:customer_metadata_properties,
|
7823
|
-
:drift_check_baselines,
|
7824
7895
|
:domain,
|
7825
7896
|
:task,
|
7826
7897
|
:sample_payload_url,
|
7898
|
+
:customer_metadata_properties,
|
7899
|
+
:drift_check_baselines,
|
7827
7900
|
:additional_inference_specifications,
|
7828
7901
|
:skip_model_validation)
|
7829
7902
|
SENSITIVE = []
|
@@ -8303,6 +8376,10 @@ module Aws::SageMaker
|
|
8303
8376
|
# * `app:RStudioServerPro:relative/path`: Directs users to the
|
8304
8377
|
# relative path in the RStudio application.
|
8305
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
|
+
#
|
8306
8383
|
# * `app:Canvas:relative/path`: Directs users to the relative path in
|
8307
8384
|
# the Canvas application.
|
8308
8385
|
# @return [String]
|
@@ -8541,13 +8618,28 @@ module Aws::SageMaker
|
|
8541
8618
|
# A collection of space settings.
|
8542
8619
|
# @return [Types::SpaceSettings]
|
8543
8620
|
#
|
8621
|
+
# @!attribute [rw] ownership_settings
|
8622
|
+
# A collection of ownership settings.
|
8623
|
+
# @return [Types::OwnershipSettings]
|
8624
|
+
#
|
8625
|
+
# @!attribute [rw] space_sharing_settings
|
8626
|
+
# A collection of space sharing settings.
|
8627
|
+
# @return [Types::SpaceSharingSettings]
|
8628
|
+
#
|
8629
|
+
# @!attribute [rw] space_display_name
|
8630
|
+
# The name of the space that appears in the SageMaker Studio UI.
|
8631
|
+
# @return [String]
|
8632
|
+
#
|
8544
8633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateSpaceRequest AWS API Documentation
|
8545
8634
|
#
|
8546
8635
|
class CreateSpaceRequest < Struct.new(
|
8547
8636
|
:domain_id,
|
8548
8637
|
:space_name,
|
8549
8638
|
:tags,
|
8550
|
-
:space_settings
|
8639
|
+
:space_settings,
|
8640
|
+
:ownership_settings,
|
8641
|
+
:space_sharing_settings,
|
8642
|
+
:space_display_name)
|
8551
8643
|
SENSITIVE = []
|
8552
8644
|
include Aws::Structure
|
8553
8645
|
end
|
@@ -9412,6 +9504,56 @@ module Aws::SageMaker
|
|
9412
9504
|
include Aws::Structure
|
9413
9505
|
end
|
9414
9506
|
|
9507
|
+
# A file system, created by you, that you assign to a user profile or
|
9508
|
+
# space for an Amazon SageMaker Domain. Permitted users can access this
|
9509
|
+
# file system in Amazon SageMaker Studio.
|
9510
|
+
#
|
9511
|
+
# @note CustomFileSystem is a union - when making an API calls you must set exactly one of the members.
|
9512
|
+
#
|
9513
|
+
# @note CustomFileSystem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CustomFileSystem corresponding to the set member.
|
9514
|
+
#
|
9515
|
+
# @!attribute [rw] efs_file_system
|
9516
|
+
# A custom file system in Amazon EFS.
|
9517
|
+
# @return [Types::EFSFileSystem]
|
9518
|
+
#
|
9519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomFileSystem AWS API Documentation
|
9520
|
+
#
|
9521
|
+
class CustomFileSystem < Struct.new(
|
9522
|
+
:efs_file_system,
|
9523
|
+
:unknown)
|
9524
|
+
SENSITIVE = []
|
9525
|
+
include Aws::Structure
|
9526
|
+
include Aws::Structure::Union
|
9527
|
+
|
9528
|
+
class EfsFileSystem < CustomFileSystem; end
|
9529
|
+
class Unknown < CustomFileSystem; end
|
9530
|
+
end
|
9531
|
+
|
9532
|
+
# The settings for assigning a custom file system to a user profile or
|
9533
|
+
# space for an Amazon SageMaker Domain. Permitted users can access this
|
9534
|
+
# file system in Amazon SageMaker Studio.
|
9535
|
+
#
|
9536
|
+
# @note CustomFileSystemConfig is a union - when making an API calls you must set exactly one of the members.
|
9537
|
+
#
|
9538
|
+
# @note CustomFileSystemConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CustomFileSystemConfig corresponding to the set member.
|
9539
|
+
#
|
9540
|
+
# @!attribute [rw] efs_file_system_config
|
9541
|
+
# The settings for a custom Amazon EFS file system.
|
9542
|
+
# @return [Types::EFSFileSystemConfig]
|
9543
|
+
#
|
9544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomFileSystemConfig AWS API Documentation
|
9545
|
+
#
|
9546
|
+
class CustomFileSystemConfig < Struct.new(
|
9547
|
+
:efs_file_system_config,
|
9548
|
+
:unknown)
|
9549
|
+
SENSITIVE = []
|
9550
|
+
include Aws::Structure
|
9551
|
+
include Aws::Structure::Union
|
9552
|
+
|
9553
|
+
class EfsFileSystemConfig < CustomFileSystemConfig; end
|
9554
|
+
class Unknown < CustomFileSystemConfig; end
|
9555
|
+
end
|
9556
|
+
|
9415
9557
|
# A custom SageMaker image. For more information, see [Bring your own
|
9416
9558
|
# SageMaker image][1].
|
9417
9559
|
#
|
@@ -9441,6 +9583,26 @@ module Aws::SageMaker
|
|
9441
9583
|
include Aws::Structure
|
9442
9584
|
end
|
9443
9585
|
|
9586
|
+
# Details about the POSIX identity that is used for file system
|
9587
|
+
# operations.
|
9588
|
+
#
|
9589
|
+
# @!attribute [rw] uid
|
9590
|
+
# The POSIX user ID.
|
9591
|
+
# @return [Integer]
|
9592
|
+
#
|
9593
|
+
# @!attribute [rw] gid
|
9594
|
+
# The POSIX group ID.
|
9595
|
+
# @return [Integer]
|
9596
|
+
#
|
9597
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomPosixUserConfig AWS API Documentation
|
9598
|
+
#
|
9599
|
+
class CustomPosixUserConfig < Struct.new(
|
9600
|
+
:uid,
|
9601
|
+
:gid)
|
9602
|
+
SENSITIVE = []
|
9603
|
+
include Aws::Structure
|
9604
|
+
end
|
9605
|
+
|
9444
9606
|
# A customized metric.
|
9445
9607
|
#
|
9446
9608
|
# @!attribute [rw] metric_name
|
@@ -9959,6 +10121,26 @@ module Aws::SageMaker
|
|
9959
10121
|
include Aws::Structure
|
9960
10122
|
end
|
9961
10123
|
|
10124
|
+
# A collection of default EBS storage settings that applies to private
|
10125
|
+
# spaces created within a domain or user profile.
|
10126
|
+
#
|
10127
|
+
# @!attribute [rw] default_ebs_volume_size_in_gb
|
10128
|
+
# The default size of the EBS storage volume for a private space.
|
10129
|
+
# @return [Integer]
|
10130
|
+
#
|
10131
|
+
# @!attribute [rw] maximum_ebs_volume_size_in_gb
|
10132
|
+
# The maximum size of the EBS storage volume for a private space.
|
10133
|
+
# @return [Integer]
|
10134
|
+
#
|
10135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DefaultEbsStorageSettings AWS API Documentation
|
10136
|
+
#
|
10137
|
+
class DefaultEbsStorageSettings < Struct.new(
|
10138
|
+
:default_ebs_volume_size_in_gb,
|
10139
|
+
:maximum_ebs_volume_size_in_gb)
|
10140
|
+
SENSITIVE = []
|
10141
|
+
include Aws::Structure
|
10142
|
+
end
|
10143
|
+
|
9962
10144
|
# A collection of settings that apply to spaces created in the Domain.
|
9963
10145
|
#
|
9964
10146
|
# @!attribute [rw] execution_role
|
@@ -9989,6 +10171,20 @@ module Aws::SageMaker
|
|
9989
10171
|
include Aws::Structure
|
9990
10172
|
end
|
9991
10173
|
|
10174
|
+
# The default storage settings for a private space.
|
10175
|
+
#
|
10176
|
+
# @!attribute [rw] default_ebs_storage_settings
|
10177
|
+
# The default EBS storage settings for a private space.
|
10178
|
+
# @return [Types::DefaultEbsStorageSettings]
|
10179
|
+
#
|
10180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DefaultSpaceStorageSettings AWS API Documentation
|
10181
|
+
#
|
10182
|
+
class DefaultSpaceStorageSettings < Struct.new(
|
10183
|
+
:default_ebs_storage_settings)
|
10184
|
+
SENSITIVE = []
|
10185
|
+
include Aws::Structure
|
10186
|
+
end
|
10187
|
+
|
9992
10188
|
# @!attribute [rw] action_name
|
9993
10189
|
# The name of the action to delete.
|
9994
10190
|
# @return [String]
|
@@ -10046,6 +10242,11 @@ module Aws::SageMaker
|
|
10046
10242
|
# must be set.
|
10047
10243
|
# @return [String]
|
10048
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
|
+
#
|
10049
10250
|
# @!attribute [rw] app_type
|
10050
10251
|
# The type of app.
|
10051
10252
|
# @return [String]
|
@@ -10054,19 +10255,14 @@ module Aws::SageMaker
|
|
10054
10255
|
# The name of the app.
|
10055
10256
|
# @return [String]
|
10056
10257
|
#
|
10057
|
-
# @!attribute [rw] space_name
|
10058
|
-
# The name of the space. If this value is not set, then
|
10059
|
-
# `UserProfileName` must be set.
|
10060
|
-
# @return [String]
|
10061
|
-
#
|
10062
10258
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteAppRequest AWS API Documentation
|
10063
10259
|
#
|
10064
10260
|
class DeleteAppRequest < Struct.new(
|
10065
10261
|
:domain_id,
|
10066
10262
|
:user_profile_name,
|
10263
|
+
:space_name,
|
10067
10264
|
:app_type,
|
10068
|
-
:app_name
|
10069
|
-
:space_name)
|
10265
|
+
:app_name)
|
10070
10266
|
SENSITIVE = []
|
10071
10267
|
include Aws::Structure
|
10072
10268
|
end
|
@@ -10172,6 +10368,18 @@ module Aws::SageMaker
|
|
10172
10368
|
include Aws::Structure
|
10173
10369
|
end
|
10174
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
|
+
|
10175
10383
|
# @!attribute [rw] context_name
|
10176
10384
|
# The name of the context to delete.
|
10177
10385
|
# @return [String]
|
@@ -10875,22 +11083,22 @@ module Aws::SageMaker
|
|
10875
11083
|
# strategy with all at once traffic shifting by default.
|
10876
11084
|
# @return [Types::BlueGreenUpdatePolicy]
|
10877
11085
|
#
|
10878
|
-
# @!attribute [rw] auto_rollback_configuration
|
10879
|
-
# Automatic rollback configuration for handling endpoint deployment
|
10880
|
-
# failures and recovery.
|
10881
|
-
# @return [Types::AutoRollbackConfig]
|
10882
|
-
#
|
10883
11086
|
# @!attribute [rw] rolling_update_policy
|
10884
11087
|
# Specifies a rolling deployment strategy for updating a SageMaker
|
10885
11088
|
# endpoint.
|
10886
11089
|
# @return [Types::RollingUpdatePolicy]
|
10887
11090
|
#
|
11091
|
+
# @!attribute [rw] auto_rollback_configuration
|
11092
|
+
# Automatic rollback configuration for handling endpoint deployment
|
11093
|
+
# failures and recovery.
|
11094
|
+
# @return [Types::AutoRollbackConfig]
|
11095
|
+
#
|
10888
11096
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeploymentConfig AWS API Documentation
|
10889
11097
|
#
|
10890
11098
|
class DeploymentConfig < Struct.new(
|
10891
11099
|
:blue_green_update_policy,
|
10892
|
-
:
|
10893
|
-
:
|
11100
|
+
:rolling_update_policy,
|
11101
|
+
:auto_rollback_configuration)
|
10894
11102
|
SENSITIVE = []
|
10895
11103
|
include Aws::Structure
|
10896
11104
|
end
|
@@ -11211,6 +11419,10 @@ module Aws::SageMaker
|
|
11211
11419
|
# The configuration of a KernelGateway app.
|
11212
11420
|
# @return [Types::KernelGatewayImageConfig]
|
11213
11421
|
#
|
11422
|
+
# @!attribute [rw] jupyter_lab_app_image_config
|
11423
|
+
# The configuration of the JupyterLab app.
|
11424
|
+
# @return [Types::JupyterLabAppImageConfig]
|
11425
|
+
#
|
11214
11426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppImageConfigResponse AWS API Documentation
|
11215
11427
|
#
|
11216
11428
|
class DescribeAppImageConfigResponse < Struct.new(
|
@@ -11218,7 +11430,8 @@ module Aws::SageMaker
|
|
11218
11430
|
:app_image_config_name,
|
11219
11431
|
:creation_time,
|
11220
11432
|
:last_modified_time,
|
11221
|
-
:kernel_gateway_image_config
|
11433
|
+
:kernel_gateway_image_config,
|
11434
|
+
:jupyter_lab_app_image_config)
|
11222
11435
|
SENSITIVE = []
|
11223
11436
|
include Aws::Structure
|
11224
11437
|
end
|
@@ -11232,6 +11445,10 @@ module Aws::SageMaker
|
|
11232
11445
|
# must be set.
|
11233
11446
|
# @return [String]
|
11234
11447
|
#
|
11448
|
+
# @!attribute [rw] space_name
|
11449
|
+
# The name of the space.
|
11450
|
+
# @return [String]
|
11451
|
+
#
|
11235
11452
|
# @!attribute [rw] app_type
|
11236
11453
|
# The type of app.
|
11237
11454
|
# @return [String]
|
@@ -11240,18 +11457,14 @@ module Aws::SageMaker
|
|
11240
11457
|
# The name of the app.
|
11241
11458
|
# @return [String]
|
11242
11459
|
#
|
11243
|
-
# @!attribute [rw] space_name
|
11244
|
-
# The name of the space.
|
11245
|
-
# @return [String]
|
11246
|
-
#
|
11247
11460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppRequest AWS API Documentation
|
11248
11461
|
#
|
11249
11462
|
class DescribeAppRequest < Struct.new(
|
11250
11463
|
:domain_id,
|
11251
11464
|
:user_profile_name,
|
11465
|
+
:space_name,
|
11252
11466
|
:app_type,
|
11253
|
-
:app_name
|
11254
|
-
:space_name)
|
11467
|
+
:app_name)
|
11255
11468
|
SENSITIVE = []
|
11256
11469
|
include Aws::Structure
|
11257
11470
|
end
|
@@ -11276,6 +11489,11 @@ module Aws::SageMaker
|
|
11276
11489
|
# The user profile name.
|
11277
11490
|
# @return [String]
|
11278
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
|
+
#
|
11279
11497
|
# @!attribute [rw] status
|
11280
11498
|
# The status.
|
11281
11499
|
# @return [String]
|
@@ -11304,11 +11522,6 @@ module Aws::SageMaker
|
|
11304
11522
|
# SageMaker image created on the instance.
|
11305
11523
|
# @return [Types::ResourceSpec]
|
11306
11524
|
#
|
11307
|
-
# @!attribute [rw] space_name
|
11308
|
-
# The name of the space. If this value is not set, then
|
11309
|
-
# `UserProfileName` must be set.
|
11310
|
-
# @return [String]
|
11311
|
-
#
|
11312
11525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppResponse AWS API Documentation
|
11313
11526
|
#
|
11314
11527
|
class DescribeAppResponse < Struct.new(
|
@@ -11317,13 +11530,13 @@ module Aws::SageMaker
|
|
11317
11530
|
:app_name,
|
11318
11531
|
:domain_id,
|
11319
11532
|
:user_profile_name,
|
11533
|
+
:space_name,
|
11320
11534
|
:status,
|
11321
11535
|
:last_health_check_timestamp,
|
11322
11536
|
:last_user_activity_timestamp,
|
11323
11537
|
:creation_time,
|
11324
11538
|
:failure_reason,
|
11325
|
-
:resource_spec
|
11326
|
-
:space_name)
|
11539
|
+
:resource_spec)
|
11327
11540
|
SENSITIVE = []
|
11328
11541
|
include Aws::Structure
|
11329
11542
|
end
|
@@ -11586,6 +11799,11 @@ module Aws::SageMaker
|
|
11586
11799
|
# AutoML job V2.
|
11587
11800
|
# @return [Types::AutoMLProblemTypeConfig]
|
11588
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
|
+
#
|
11589
11807
|
# @!attribute [rw] creation_time
|
11590
11808
|
# Returns the creation time of the AutoML job V2.
|
11591
11809
|
# @return [Time]
|
@@ -11621,6 +11839,14 @@ module Aws::SageMaker
|
|
11621
11839
|
# Returns the secondary status of the AutoML job V2.
|
11622
11840
|
# @return [String]
|
11623
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
|
+
#
|
11624
11850
|
# @!attribute [rw] model_deploy_config
|
11625
11851
|
# Indicates whether the model was deployed automatically to an
|
11626
11852
|
# endpoint and the name of that endpoint if deployed automatically.
|
@@ -11640,19 +11866,6 @@ module Aws::SageMaker
|
|
11640
11866
|
# VPC settings.
|
11641
11867
|
# @return [Types::AutoMLSecurityConfig]
|
11642
11868
|
#
|
11643
|
-
# @!attribute [rw] auto_ml_job_artifacts
|
11644
|
-
# The artifacts that are generated during an AutoML job.
|
11645
|
-
# @return [Types::AutoMLJobArtifacts]
|
11646
|
-
#
|
11647
|
-
# @!attribute [rw] resolved_attributes
|
11648
|
-
# Returns the resolved attributes used by the AutoML job V2.
|
11649
|
-
# @return [Types::AutoMLResolvedAttributes]
|
11650
|
-
#
|
11651
|
-
# @!attribute [rw] auto_ml_problem_type_config_name
|
11652
|
-
# Returns the name of the problem type configuration set for the
|
11653
|
-
# AutoML job V2.
|
11654
|
-
# @return [String]
|
11655
|
-
#
|
11656
11869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAutoMLJobV2Response AWS API Documentation
|
11657
11870
|
#
|
11658
11871
|
class DescribeAutoMLJobV2Response < Struct.new(
|
@@ -11663,6 +11876,7 @@ module Aws::SageMaker
|
|
11663
11876
|
:role_arn,
|
11664
11877
|
:auto_ml_job_objective,
|
11665
11878
|
:auto_ml_problem_type_config,
|
11879
|
+
:auto_ml_problem_type_config_name,
|
11666
11880
|
:creation_time,
|
11667
11881
|
:end_time,
|
11668
11882
|
:last_modified_time,
|
@@ -11671,13 +11885,12 @@ module Aws::SageMaker
|
|
11671
11885
|
:best_candidate,
|
11672
11886
|
:auto_ml_job_status,
|
11673
11887
|
:auto_ml_job_secondary_status,
|
11888
|
+
:auto_ml_job_artifacts,
|
11889
|
+
:resolved_attributes,
|
11674
11890
|
:model_deploy_config,
|
11675
11891
|
:model_deploy_result,
|
11676
11892
|
:data_split_config,
|
11677
|
-
:security_config
|
11678
|
-
:auto_ml_job_artifacts,
|
11679
|
-
:resolved_attributes,
|
11680
|
-
:auto_ml_problem_type_config_name)
|
11893
|
+
:security_config)
|
11681
11894
|
SENSITIVE = []
|
11682
11895
|
include Aws::Structure
|
11683
11896
|
end
|
@@ -12302,7 +12515,7 @@ module Aws::SageMaker
|
|
12302
12515
|
# @!attribute [rw] single_sign_on_application_arn
|
12303
12516
|
# The ARN of the application managed by SageMaker in IAM Identity
|
12304
12517
|
# Center. This value is only returned for domains created after
|
12305
|
-
#
|
12518
|
+
# October 1, 2023.
|
12306
12519
|
# @return [String]
|
12307
12520
|
#
|
12308
12521
|
# @!attribute [rw] status
|
@@ -12321,6 +12534,11 @@ module Aws::SageMaker
|
|
12321
12534
|
# The failure reason.
|
12322
12535
|
# @return [String]
|
12323
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
|
+
#
|
12324
12542
|
# @!attribute [rw] auth_mode
|
12325
12543
|
# The domain's authentication mode.
|
12326
12544
|
# @return [String]
|
@@ -12330,6 +12548,10 @@ module Aws::SageMaker
|
|
12330
12548
|
# settings are not explicitly specified in a given UserProfile.
|
12331
12549
|
# @return [Types::UserSettings]
|
12332
12550
|
#
|
12551
|
+
# @!attribute [rw] domain_settings
|
12552
|
+
# A collection of `Domain` settings.
|
12553
|
+
# @return [Types::DomainSettings]
|
12554
|
+
#
|
12333
12555
|
# @!attribute [rw] app_network_access_type
|
12334
12556
|
# Specifies the VPC used for non-EFS traffic. The default value is
|
12335
12557
|
# `PublicInternetOnly`.
|
@@ -12362,10 +12584,6 @@ module Aws::SageMaker
|
|
12362
12584
|
# EFS volume attached to the domain.
|
12363
12585
|
# @return [String]
|
12364
12586
|
#
|
12365
|
-
# @!attribute [rw] domain_settings
|
12366
|
-
# A collection of `Domain` settings.
|
12367
|
-
# @return [Types::DomainSettings]
|
12368
|
-
#
|
12369
12587
|
# @!attribute [rw] app_security_group_management
|
12370
12588
|
# The entity that creates and manages the required security groups for
|
12371
12589
|
# inter-app communication in `VPCOnly` mode. Required when
|
@@ -12374,11 +12592,6 @@ module Aws::SageMaker
|
|
12374
12592
|
# is provided.
|
12375
12593
|
# @return [String]
|
12376
12594
|
#
|
12377
|
-
# @!attribute [rw] security_group_id_for_domain_boundary
|
12378
|
-
# The ID of the security group that authorizes traffic between the
|
12379
|
-
# `RSessionGateway` apps and the `RStudioServerPro` app.
|
12380
|
-
# @return [String]
|
12381
|
-
#
|
12382
12595
|
# @!attribute [rw] default_space_settings
|
12383
12596
|
# The default settings used to create a space.
|
12384
12597
|
# @return [Types::DefaultSpaceSettings]
|
@@ -12396,17 +12609,17 @@ module Aws::SageMaker
|
|
12396
12609
|
:creation_time,
|
12397
12610
|
:last_modified_time,
|
12398
12611
|
:failure_reason,
|
12612
|
+
:security_group_id_for_domain_boundary,
|
12399
12613
|
:auth_mode,
|
12400
12614
|
:default_user_settings,
|
12615
|
+
:domain_settings,
|
12401
12616
|
:app_network_access_type,
|
12402
12617
|
:home_efs_file_system_kms_key_id,
|
12403
12618
|
:subnet_ids,
|
12404
12619
|
:url,
|
12405
12620
|
:vpc_id,
|
12406
12621
|
:kms_key_id,
|
12407
|
-
:domain_settings,
|
12408
12622
|
:app_security_group_management,
|
12409
|
-
:security_group_id_for_domain_boundary,
|
12410
12623
|
:default_space_settings)
|
12411
12624
|
SENSITIVE = []
|
12412
12625
|
include Aws::Structure
|
@@ -13552,6 +13765,11 @@ module Aws::SageMaker
|
|
13552
13765
|
# job.
|
13553
13766
|
# @return [Types::HyperParameterTuningJobWarmStartConfig]
|
13554
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
|
+
#
|
13555
13773
|
# @!attribute [rw] failure_reason
|
13556
13774
|
# If the tuning job failed, the reason it failed.
|
13557
13775
|
# @return [String]
|
@@ -13568,11 +13786,6 @@ module Aws::SageMaker
|
|
13568
13786
|
# The total resources consumed by your hyperparameter tuning job.
|
13569
13787
|
# @return [Types::HyperParameterTuningJobConsumedResources]
|
13570
13788
|
#
|
13571
|
-
# @!attribute [rw] autotune
|
13572
|
-
# A flag to indicate if autotune is enabled for the hyperparameter
|
13573
|
-
# tuning job.
|
13574
|
-
# @return [Types::Autotune]
|
13575
|
-
#
|
13576
13789
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeHyperParameterTuningJobResponse AWS API Documentation
|
13577
13790
|
#
|
13578
13791
|
class DescribeHyperParameterTuningJobResponse < Struct.new(
|
@@ -13590,10 +13803,10 @@ module Aws::SageMaker
|
|
13590
13803
|
:best_training_job,
|
13591
13804
|
:overall_best_training_job,
|
13592
13805
|
:warm_start_config,
|
13806
|
+
:autotune,
|
13593
13807
|
:failure_reason,
|
13594
13808
|
:tuning_job_completion_details,
|
13595
|
-
:consumed_resources
|
13596
|
-
:autotune)
|
13809
|
+
:consumed_resources)
|
13597
13810
|
SENSITIVE = []
|
13598
13811
|
include Aws::Structure
|
13599
13812
|
end
|
@@ -14932,21 +15145,6 @@ module Aws::SageMaker
|
|
14932
15145
|
# A description provided for the model approval.
|
14933
15146
|
# @return [String]
|
14934
15147
|
#
|
14935
|
-
# @!attribute [rw] customer_metadata_properties
|
14936
|
-
# The metadata properties associated with the model package versions.
|
14937
|
-
# @return [Hash<String,String>]
|
14938
|
-
#
|
14939
|
-
# @!attribute [rw] drift_check_baselines
|
14940
|
-
# Represents the drift check baselines that can be used when the model
|
14941
|
-
# monitor is set using the model package. For more information, see
|
14942
|
-
# the topic on [Drift Detection against Previous Baselines in
|
14943
|
-
# SageMaker Pipelines][1] in the *Amazon SageMaker Developer Guide*.
|
14944
|
-
#
|
14945
|
-
#
|
14946
|
-
#
|
14947
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-quality-clarify-baseline-lifecycle.html#pipelines-quality-clarify-baseline-drift-detection
|
14948
|
-
# @return [Types::DriftCheckBaselines]
|
14949
|
-
#
|
14950
15148
|
# @!attribute [rw] domain
|
14951
15149
|
# The machine learning domain of the model package you specified.
|
14952
15150
|
# Common machine learning domains include computer vision and natural
|
@@ -14965,6 +15163,21 @@ module Aws::SageMaker
|
|
14965
15163
|
# archive (.tar.gz suffix).
|
14966
15164
|
# @return [String]
|
14967
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
|
+
#
|
14968
15181
|
# @!attribute [rw] additional_inference_specifications
|
14969
15182
|
# An array of additional Inference Specification objects. Each
|
14970
15183
|
# additional Inference Specification specifies artifacts based on this
|
@@ -14998,11 +15211,11 @@ module Aws::SageMaker
|
|
14998
15211
|
:last_modified_time,
|
14999
15212
|
:last_modified_by,
|
15000
15213
|
:approval_description,
|
15001
|
-
:customer_metadata_properties,
|
15002
|
-
:drift_check_baselines,
|
15003
15214
|
:domain,
|
15004
15215
|
:task,
|
15005
15216
|
:sample_payload_url,
|
15217
|
+
:customer_metadata_properties,
|
15218
|
+
:drift_check_baselines,
|
15006
15219
|
:additional_inference_specifications,
|
15007
15220
|
:skip_model_validation)
|
15008
15221
|
SENSITIVE = []
|
@@ -15885,6 +16098,19 @@ module Aws::SageMaker
|
|
15885
16098
|
# A collection of space settings.
|
15886
16099
|
# @return [Types::SpaceSettings]
|
15887
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
|
+
#
|
15888
16114
|
# @!attribute [rw] url
|
15889
16115
|
# Returns the URL of the space. If the space is created with Amazon
|
15890
16116
|
# Web Services IAM Identity Center (Successor to Amazon Web Services
|
@@ -15897,6 +16123,9 @@ module Aws::SageMaker
|
|
15897
16123
|
# * Studio Classic: `&redirect=JupyterServer`
|
15898
16124
|
#
|
15899
16125
|
# * JupyterLab: `&redirect=JupyterLab`
|
16126
|
+
#
|
16127
|
+
# * Code Editor, based on Code-OSS, Visual Studio Code - Open Source:
|
16128
|
+
# `&redirect=CodeEditor`
|
15900
16129
|
# @return [String]
|
15901
16130
|
#
|
15902
16131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeSpaceResponse AWS API Documentation
|
@@ -15911,6 +16140,9 @@ module Aws::SageMaker
|
|
15911
16140
|
:creation_time,
|
15912
16141
|
:failure_reason,
|
15913
16142
|
:space_settings,
|
16143
|
+
:ownership_settings,
|
16144
|
+
:space_sharing_settings,
|
16145
|
+
:space_display_name,
|
15914
16146
|
:url)
|
15915
16147
|
SENSITIVE = []
|
15916
16148
|
include Aws::Structure
|
@@ -16153,6 +16385,10 @@ module Aws::SageMaker
|
|
16153
16385
|
# that are configured for model training.
|
16154
16386
|
# @return [Types::ResourceConfig]
|
16155
16387
|
#
|
16388
|
+
# @!attribute [rw] warm_pool_status
|
16389
|
+
# The status of the warm pool associated with the training job.
|
16390
|
+
# @return [Types::WarmPoolStatus]
|
16391
|
+
#
|
16156
16392
|
# @!attribute [rw] vpc_config
|
16157
16393
|
# A [VpcConfig][1] object that specifies the VPC that this training
|
16158
16394
|
# job has access to. For more information, see [Protect Training Jobs
|
@@ -16323,18 +16559,14 @@ module Aws::SageMaker
|
|
16323
16559
|
# Profiling status of a training job.
|
16324
16560
|
# @return [String]
|
16325
16561
|
#
|
16326
|
-
# @!attribute [rw] retry_strategy
|
16327
|
-
# The number of times to retry the job when the job fails due to an
|
16328
|
-
# `InternalServerError`.
|
16329
|
-
# @return [Types::RetryStrategy]
|
16330
|
-
#
|
16331
16562
|
# @!attribute [rw] environment
|
16332
16563
|
# The environment variables to set in the Docker container.
|
16333
16564
|
# @return [Hash<String,String>]
|
16334
16565
|
#
|
16335
|
-
# @!attribute [rw]
|
16336
|
-
# The
|
16337
|
-
#
|
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]
|
16338
16570
|
#
|
16339
16571
|
# @!attribute [rw] infra_check_config
|
16340
16572
|
# Contains information about the infrastructure health check
|
@@ -16359,6 +16591,7 @@ module Aws::SageMaker
|
|
16359
16591
|
:input_data_config,
|
16360
16592
|
:output_data_config,
|
16361
16593
|
:resource_config,
|
16594
|
+
:warm_pool_status,
|
16362
16595
|
:vpc_config,
|
16363
16596
|
:stopping_condition,
|
16364
16597
|
:creation_time,
|
@@ -16382,9 +16615,8 @@ module Aws::SageMaker
|
|
16382
16615
|
:profiler_rule_configurations,
|
16383
16616
|
:profiler_rule_evaluation_statuses,
|
16384
16617
|
:profiling_status,
|
16385
|
-
:retry_strategy,
|
16386
16618
|
:environment,
|
16387
|
-
:
|
16619
|
+
:retry_strategy,
|
16388
16620
|
:infra_check_config)
|
16389
16621
|
SENSITIVE = []
|
16390
16622
|
include Aws::Structure
|
@@ -17480,6 +17712,44 @@ module Aws::SageMaker
|
|
17480
17712
|
include Aws::Structure
|
17481
17713
|
end
|
17482
17714
|
|
17715
|
+
# A file system, created by you in Amazon EFS, that you assign to a user
|
17716
|
+
# profile or space for an Amazon SageMaker Domain. Permitted users can
|
17717
|
+
# access this file system in Amazon SageMaker Studio.
|
17718
|
+
#
|
17719
|
+
# @!attribute [rw] file_system_id
|
17720
|
+
# The ID of your Amazon EFS file system.
|
17721
|
+
# @return [String]
|
17722
|
+
#
|
17723
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EFSFileSystem AWS API Documentation
|
17724
|
+
#
|
17725
|
+
class EFSFileSystem < Struct.new(
|
17726
|
+
:file_system_id)
|
17727
|
+
SENSITIVE = []
|
17728
|
+
include Aws::Structure
|
17729
|
+
end
|
17730
|
+
|
17731
|
+
# The settings for assigning a custom Amazon EFS file system to a user
|
17732
|
+
# profile or space for an Amazon SageMaker Domain.
|
17733
|
+
#
|
17734
|
+
# @!attribute [rw] file_system_id
|
17735
|
+
# The ID of your Amazon EFS file system.
|
17736
|
+
# @return [String]
|
17737
|
+
#
|
17738
|
+
# @!attribute [rw] file_system_path
|
17739
|
+
# The path to the file system directory that is accessible in Amazon
|
17740
|
+
# SageMaker Studio. Permitted users can access only this directory and
|
17741
|
+
# below.
|
17742
|
+
# @return [String]
|
17743
|
+
#
|
17744
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EFSFileSystemConfig AWS API Documentation
|
17745
|
+
#
|
17746
|
+
class EFSFileSystemConfig < Struct.new(
|
17747
|
+
:file_system_id,
|
17748
|
+
:file_system_path)
|
17749
|
+
SENSITIVE = []
|
17750
|
+
include Aws::Structure
|
17751
|
+
end
|
17752
|
+
|
17483
17753
|
# The configurations and outcomes of an Amazon EMR step execution.
|
17484
17754
|
#
|
17485
17755
|
# @!attribute [rw] cluster_id
|
@@ -17510,6 +17780,20 @@ module Aws::SageMaker
|
|
17510
17780
|
include Aws::Structure
|
17511
17781
|
end
|
17512
17782
|
|
17783
|
+
# A collection of EBS storage settings that applies to private spaces.
|
17784
|
+
#
|
17785
|
+
# @!attribute [rw] ebs_volume_size_in_gb
|
17786
|
+
# The size of an EBS storage volume for a private space.
|
17787
|
+
# @return [Integer]
|
17788
|
+
#
|
17789
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EbsStorageSettings AWS API Documentation
|
17790
|
+
#
|
17791
|
+
class EbsStorageSettings < Struct.new(
|
17792
|
+
:ebs_volume_size_in_gb)
|
17793
|
+
SENSITIVE = []
|
17794
|
+
include Aws::Structure
|
17795
|
+
end
|
17796
|
+
|
17513
17797
|
# A directed edge connecting two lineage entities.
|
17514
17798
|
#
|
17515
17799
|
# @!attribute [rw] source_arn
|
@@ -18131,6 +18415,10 @@ module Aws::SageMaker
|
|
18131
18415
|
# The instance types to use for the load test.
|
18132
18416
|
# @return [String]
|
18133
18417
|
#
|
18418
|
+
# @!attribute [rw] serverless_config
|
18419
|
+
# Specifies the serverless configuration for an endpoint variant.
|
18420
|
+
# @return [Types::ProductionVariantServerlessConfig]
|
18421
|
+
#
|
18134
18422
|
# @!attribute [rw] inference_specification_name
|
18135
18423
|
# The inference specification name in the model package version.
|
18136
18424
|
# @return [String]
|
@@ -18139,17 +18427,13 @@ module Aws::SageMaker
|
|
18139
18427
|
# The parameter you want to benchmark against.
|
18140
18428
|
# @return [Types::EnvironmentParameterRanges]
|
18141
18429
|
#
|
18142
|
-
# @!attribute [rw] serverless_config
|
18143
|
-
# Specifies the serverless configuration for an endpoint variant.
|
18144
|
-
# @return [Types::ProductionVariantServerlessConfig]
|
18145
|
-
#
|
18146
18430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointInputConfiguration AWS API Documentation
|
18147
18431
|
#
|
18148
18432
|
class EndpointInputConfiguration < Struct.new(
|
18149
18433
|
:instance_type,
|
18434
|
+
:serverless_config,
|
18150
18435
|
:inference_specification_name,
|
18151
|
-
:environment_parameter_ranges
|
18152
|
-
:serverless_config)
|
18436
|
+
:environment_parameter_ranges)
|
18153
18437
|
SENSITIVE = []
|
18154
18438
|
include Aws::Structure
|
18155
18439
|
end
|
@@ -21109,6 +21393,15 @@ module Aws::SageMaker
|
|
21109
21393
|
# </note>
|
21110
21394
|
# @return [Types::ResourceConfig]
|
21111
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
|
+
#
|
21112
21405
|
# @!attribute [rw] stopping_condition
|
21113
21406
|
# Specifies a limit to how long a model hyperparameter training job
|
21114
21407
|
# can run. It also specifies how long a managed spot training job has
|
@@ -21149,15 +21442,6 @@ module Aws::SageMaker
|
|
21149
21442
|
# `InternalServerError`.
|
21150
21443
|
# @return [Types::RetryStrategy]
|
21151
21444
|
#
|
21152
|
-
# @!attribute [rw] hyper_parameter_tuning_resource_config
|
21153
|
-
# The configuration for the hyperparameter tuning resources, including
|
21154
|
-
# the compute instances and storage volumes, used for training jobs
|
21155
|
-
# launched by the tuning job. By default, storage volumes hold model
|
21156
|
-
# artifacts and incremental states. Choose `File` for
|
21157
|
-
# `TrainingInputMode` in the `AlgorithmSpecification` parameter to
|
21158
|
-
# additionally store training data in the storage volume (optional).
|
21159
|
-
# @return [Types::HyperParameterTuningResourceConfig]
|
21160
|
-
#
|
21161
21445
|
# @!attribute [rw] environment
|
21162
21446
|
# An environment variable that you can pass into the SageMaker
|
21163
21447
|
# [CreateTrainingJob][1] API. You can use an existing [environment
|
@@ -21193,13 +21477,13 @@ module Aws::SageMaker
|
|
21193
21477
|
:vpc_config,
|
21194
21478
|
:output_data_config,
|
21195
21479
|
:resource_config,
|
21480
|
+
:hyper_parameter_tuning_resource_config,
|
21196
21481
|
:stopping_condition,
|
21197
21482
|
:enable_network_isolation,
|
21198
21483
|
:enable_inter_container_traffic_encryption,
|
21199
21484
|
:enable_managed_spot_training,
|
21200
21485
|
:checkpoint_config,
|
21201
21486
|
:retry_strategy,
|
21202
|
-
:hyper_parameter_tuning_resource_config,
|
21203
21487
|
:environment)
|
21204
21488
|
SENSITIVE = []
|
21205
21489
|
include Aws::Structure
|
@@ -21608,15 +21892,6 @@ module Aws::SageMaker
|
|
21608
21892
|
# The error that was created when a hyperparameter tuning job failed.
|
21609
21893
|
# @return [String]
|
21610
21894
|
#
|
21611
|
-
# @!attribute [rw] tags
|
21612
|
-
# The tags associated with a hyperparameter tuning job. For more
|
21613
|
-
# information see [Tagging Amazon Web Services resources][1].
|
21614
|
-
#
|
21615
|
-
#
|
21616
|
-
#
|
21617
|
-
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
21618
|
-
# @return [Array<Types::Tag>]
|
21619
|
-
#
|
21620
21895
|
# @!attribute [rw] tuning_job_completion_details
|
21621
21896
|
# Information about either a current or completed hyperparameter
|
21622
21897
|
# tuning job.
|
@@ -21627,6 +21902,15 @@ module Aws::SageMaker
|
|
21627
21902
|
# job.
|
21628
21903
|
# @return [Types::HyperParameterTuningJobConsumedResources]
|
21629
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
|
+
#
|
21630
21914
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HyperParameterTuningJobSearchEntity AWS API Documentation
|
21631
21915
|
#
|
21632
21916
|
class HyperParameterTuningJobSearchEntity < Struct.new(
|
@@ -21645,9 +21929,9 @@ module Aws::SageMaker
|
|
21645
21929
|
:overall_best_training_job,
|
21646
21930
|
:warm_start_config,
|
21647
21931
|
:failure_reason,
|
21648
|
-
:tags,
|
21649
21932
|
:tuning_job_completion_details,
|
21650
|
-
:consumed_resources
|
21933
|
+
:consumed_resources,
|
21934
|
+
:tags)
|
21651
21935
|
SENSITIVE = []
|
21652
21936
|
include Aws::Structure
|
21653
21937
|
end
|
@@ -22737,6 +23021,10 @@ module Aws::SageMaker
|
|
22737
23021
|
# A list of recommendations made by Amazon SageMaker Inference
|
22738
23022
|
# Recommender.
|
22739
23023
|
#
|
23024
|
+
# @!attribute [rw] recommendation_id
|
23025
|
+
# The recommendation ID which uniquely identifies each recommendation.
|
23026
|
+
# @return [String]
|
23027
|
+
#
|
22740
23028
|
# @!attribute [rw] metrics
|
22741
23029
|
# The metrics used to decide what recommendation to make.
|
22742
23030
|
# @return [Types::RecommendationMetrics]
|
@@ -22749,10 +23037,6 @@ module Aws::SageMaker
|
|
22749
23037
|
# Defines the model configuration.
|
22750
23038
|
# @return [Types::ModelConfiguration]
|
22751
23039
|
#
|
22752
|
-
# @!attribute [rw] recommendation_id
|
22753
|
-
# The recommendation ID which uniquely identifies each recommendation.
|
22754
|
-
# @return [String]
|
22755
|
-
#
|
22756
23040
|
# @!attribute [rw] invocation_end_time
|
22757
23041
|
# A timestamp that shows when the benchmark completed.
|
22758
23042
|
# @return [Time]
|
@@ -22764,10 +23048,10 @@ module Aws::SageMaker
|
|
22764
23048
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceRecommendation AWS API Documentation
|
22765
23049
|
#
|
22766
23050
|
class InferenceRecommendation < Struct.new(
|
23051
|
+
:recommendation_id,
|
22767
23052
|
:metrics,
|
22768
23053
|
:endpoint_configuration,
|
22769
23054
|
:model_configuration,
|
22770
|
-
:recommendation_id,
|
22771
23055
|
:invocation_end_time,
|
22772
23056
|
:invocation_start_time)
|
22773
23057
|
SENSITIVE = []
|
@@ -23302,6 +23586,61 @@ module Aws::SageMaker
|
|
23302
23586
|
include Aws::Structure
|
23303
23587
|
end
|
23304
23588
|
|
23589
|
+
# The configuration for the file system and kernels in a SageMaker image
|
23590
|
+
# running as a JupyterLab app.
|
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
|
+
#
|
23597
|
+
# @!attribute [rw] container_config
|
23598
|
+
# The configuration used to run the application image container.
|
23599
|
+
# @return [Types::ContainerConfig]
|
23600
|
+
#
|
23601
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterLabAppImageConfig AWS API Documentation
|
23602
|
+
#
|
23603
|
+
class JupyterLabAppImageConfig < Struct.new(
|
23604
|
+
:file_system_config,
|
23605
|
+
:container_config)
|
23606
|
+
SENSITIVE = []
|
23607
|
+
include Aws::Structure
|
23608
|
+
end
|
23609
|
+
|
23610
|
+
# The settings for the JupyterLab application.
|
23611
|
+
#
|
23612
|
+
# @!attribute [rw] default_resource_spec
|
23613
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
23614
|
+
# version, and the instance type that the version runs on.
|
23615
|
+
# @return [Types::ResourceSpec]
|
23616
|
+
#
|
23617
|
+
# @!attribute [rw] custom_images
|
23618
|
+
# A list of custom SageMaker images that are configured to run as a
|
23619
|
+
# JupyterLab app.
|
23620
|
+
# @return [Array<Types::CustomImage>]
|
23621
|
+
#
|
23622
|
+
# @!attribute [rw] lifecycle_config_arns
|
23623
|
+
# The Amazon Resource Name (ARN) of the lifecycle configurations
|
23624
|
+
# attached to the user profile or domain. To remove a lifecycle
|
23625
|
+
# config, you must set `LifecycleConfigArns` to an empty list.
|
23626
|
+
# @return [Array<String>]
|
23627
|
+
#
|
23628
|
+
# @!attribute [rw] code_repositories
|
23629
|
+
# A list of Git repositories that SageMaker automatically displays to
|
23630
|
+
# users for cloning in the JupyterLab application.
|
23631
|
+
# @return [Array<Types::CodeRepository>]
|
23632
|
+
#
|
23633
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterLabAppSettings AWS API Documentation
|
23634
|
+
#
|
23635
|
+
class JupyterLabAppSettings < Struct.new(
|
23636
|
+
:default_resource_spec,
|
23637
|
+
:custom_images,
|
23638
|
+
:lifecycle_config_arns,
|
23639
|
+
:code_repositories)
|
23640
|
+
SENSITIVE = []
|
23641
|
+
include Aws::Structure
|
23642
|
+
end
|
23643
|
+
|
23305
23644
|
# The JupyterServer app settings.
|
23306
23645
|
#
|
23307
23646
|
# @!attribute [rw] default_resource_spec
|
@@ -33246,13 +33585,12 @@ module Aws::SageMaker
|
|
33246
33585
|
# If you use a KMS key ID or an alias of your KMS key, the SageMaker
|
33247
33586
|
# execution role must include permissions to call `kms:Encrypt`. If
|
33248
33587
|
# you don't provide a KMS key ID, SageMaker uses the default KMS key
|
33249
|
-
# for Amazon S3 for your role's account.
|
33250
|
-
#
|
33251
|
-
#
|
33252
|
-
#
|
33253
|
-
#
|
33254
|
-
#
|
33255
|
-
# 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
|
33256
33594
|
#
|
33257
33595
|
# The KMS key policy must grant permission to the IAM role that you
|
33258
33596
|
# specify in your `CreateTrainingJob`, `CreateTransformJob`, or
|
@@ -33306,6 +33644,34 @@ module Aws::SageMaker
|
|
33306
33644
|
include Aws::Structure
|
33307
33645
|
end
|
33308
33646
|
|
33647
|
+
# The collection of ownership settings for a space.
|
33648
|
+
#
|
33649
|
+
# @!attribute [rw] owner_user_profile_name
|
33650
|
+
# The user profile who is the owner of the private space.
|
33651
|
+
# @return [String]
|
33652
|
+
#
|
33653
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OwnershipSettings AWS API Documentation
|
33654
|
+
#
|
33655
|
+
class OwnershipSettings < Struct.new(
|
33656
|
+
:owner_user_profile_name)
|
33657
|
+
SENSITIVE = []
|
33658
|
+
include Aws::Structure
|
33659
|
+
end
|
33660
|
+
|
33661
|
+
# Specifies summary information about the ownership settings.
|
33662
|
+
#
|
33663
|
+
# @!attribute [rw] owner_user_profile_name
|
33664
|
+
# The user profile who is the owner of the private space.
|
33665
|
+
# @return [String]
|
33666
|
+
#
|
33667
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OwnershipSettingsSummary AWS API Documentation
|
33668
|
+
#
|
33669
|
+
class OwnershipSettingsSummary < Struct.new(
|
33670
|
+
:owner_user_profile_name)
|
33671
|
+
SENSITIVE = []
|
33672
|
+
include Aws::Structure
|
33673
|
+
end
|
33674
|
+
|
33309
33675
|
# Configuration that controls the parallelism of the pipeline. By
|
33310
33676
|
# default, the parallelism configuration specified applies to all
|
33311
33677
|
# executions of the pipeline unless overridden.
|
@@ -33802,14 +34168,14 @@ module Aws::SageMaker
|
|
33802
34168
|
# The parallelism configuration applied to the pipeline execution.
|
33803
34169
|
# @return [Types::ParallelismConfiguration]
|
33804
34170
|
#
|
33805
|
-
# @!attribute [rw] pipeline_parameters
|
33806
|
-
# Contains a list of pipeline parameters. This list can be empty.
|
33807
|
-
# @return [Array<Types::Parameter>]
|
33808
|
-
#
|
33809
34171
|
# @!attribute [rw] selective_execution_config
|
33810
34172
|
# The selective execution configuration applied to the pipeline run.
|
33811
34173
|
# @return [Types::SelectiveExecutionConfig]
|
33812
34174
|
#
|
34175
|
+
# @!attribute [rw] pipeline_parameters
|
34176
|
+
# Contains a list of pipeline parameters. This list can be empty.
|
34177
|
+
# @return [Array<Types::Parameter>]
|
34178
|
+
#
|
33813
34179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecution AWS API Documentation
|
33814
34180
|
#
|
33815
34181
|
class PipelineExecution < Struct.new(
|
@@ -33825,8 +34191,8 @@ module Aws::SageMaker
|
|
33825
34191
|
:created_by,
|
33826
34192
|
:last_modified_by,
|
33827
34193
|
:parallelism_configuration,
|
33828
|
-
:
|
33829
|
-
:
|
34194
|
+
:selective_execution_config,
|
34195
|
+
:pipeline_parameters)
|
33830
34196
|
SENSITIVE = []
|
33831
34197
|
include Aws::Structure
|
33832
34198
|
end
|
@@ -33862,15 +34228,6 @@ module Aws::SageMaker
|
|
33862
34228
|
# hit.
|
33863
34229
|
# @return [Types::CacheHitResult]
|
33864
34230
|
#
|
33865
|
-
# @!attribute [rw] attempt_count
|
33866
|
-
# The current attempt of the execution step. For more information, see
|
33867
|
-
# [Retry Policy for SageMaker Pipelines steps][1].
|
33868
|
-
#
|
33869
|
-
#
|
33870
|
-
#
|
33871
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-retry-policy.html
|
33872
|
-
# @return [Integer]
|
33873
|
-
#
|
33874
34231
|
# @!attribute [rw] failure_reason
|
33875
34232
|
# The reason why the step failed execution. This is only returned if
|
33876
34233
|
# the step failed its execution.
|
@@ -33880,6 +34237,15 @@ module Aws::SageMaker
|
|
33880
34237
|
# Metadata to run the pipeline step.
|
33881
34238
|
# @return [Types::PipelineExecutionStepMetadata]
|
33882
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
|
+
#
|
33883
34249
|
# @!attribute [rw] selective_execution_result
|
33884
34250
|
# The ARN from an execution of the current pipeline from which results
|
33885
34251
|
# are reused for this step.
|
@@ -33895,9 +34261,9 @@ module Aws::SageMaker
|
|
33895
34261
|
:end_time,
|
33896
34262
|
:step_status,
|
33897
34263
|
:cache_hit_result,
|
33898
|
-
:attempt_count,
|
33899
34264
|
:failure_reason,
|
33900
34265
|
:metadata,
|
34266
|
+
:attempt_count,
|
33901
34267
|
:selective_execution_result)
|
33902
34268
|
SENSITIVE = []
|
33903
34269
|
include Aws::Structure
|
@@ -33950,6 +34316,10 @@ module Aws::SageMaker
|
|
33950
34316
|
# by this step execution and a list of output parameters.
|
33951
34317
|
# @return [Types::LambdaStepMetadata]
|
33952
34318
|
#
|
34319
|
+
# @!attribute [rw] emr
|
34320
|
+
# The configurations and outcomes of an Amazon EMR step execution.
|
34321
|
+
# @return [Types::EMRStepMetadata]
|
34322
|
+
#
|
33953
34323
|
# @!attribute [rw] quality_check
|
33954
34324
|
# The configurations and outcomes of the check step execution. This
|
33955
34325
|
# includes:
|
@@ -34001,10 +34371,6 @@ module Aws::SageMaker
|
|
34001
34371
|
# `CalculatedBaseline`.
|
34002
34372
|
# @return [Types::ClarifyCheckStepMetadata]
|
34003
34373
|
#
|
34004
|
-
# @!attribute [rw] emr
|
34005
|
-
# The configurations and outcomes of an Amazon EMR step execution.
|
34006
|
-
# @return [Types::EMRStepMetadata]
|
34007
|
-
#
|
34008
34374
|
# @!attribute [rw] fail
|
34009
34375
|
# The configurations and outcomes of a Fail step execution.
|
34010
34376
|
# @return [Types::FailStepMetadata]
|
@@ -34026,9 +34392,9 @@ module Aws::SageMaker
|
|
34026
34392
|
:condition,
|
34027
34393
|
:callback,
|
34028
34394
|
:lambda,
|
34395
|
+
:emr,
|
34029
34396
|
:quality_check,
|
34030
34397
|
:clarify_check,
|
34031
|
-
:emr,
|
34032
34398
|
:fail,
|
34033
34399
|
:auto_ml_job)
|
34034
34400
|
SENSITIVE = []
|
@@ -36146,6 +36512,14 @@ module Aws::SageMaker
|
|
36146
36512
|
# real-time.
|
36147
36513
|
# @return [Array<String>]
|
36148
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
|
+
#
|
36149
36523
|
# @!attribute [rw] data_input_config
|
36150
36524
|
# Specifies the name and shape of the expected data inputs for your
|
36151
36525
|
# trained model with a JSON dictionary form. This field is used for
|
@@ -36157,14 +36531,6 @@ module Aws::SageMaker
|
|
36157
36531
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_InputConfig.html#sagemaker-Type-InputConfig-DataInputConfig
|
36158
36532
|
# @return [String]
|
36159
36533
|
#
|
36160
|
-
# @!attribute [rw] supported_endpoint_type
|
36161
|
-
# The endpoint type to receive recommendations for. By default this is
|
36162
|
-
# null, and the results of the inference recommendation job return a
|
36163
|
-
# combined list of both real-time and serverless benchmarks. By
|
36164
|
-
# specifying a value for this field, you can receive a longer list of
|
36165
|
-
# benchmarks for the desired endpoint type.
|
36166
|
-
# @return [String]
|
36167
|
-
#
|
36168
36534
|
# @!attribute [rw] supported_response_mime_types
|
36169
36535
|
# The supported MIME types for the output data.
|
36170
36536
|
# @return [Array<String>]
|
@@ -36179,8 +36545,8 @@ module Aws::SageMaker
|
|
36179
36545
|
:payload_config,
|
36180
36546
|
:nearest_model_name,
|
36181
36547
|
:supported_instance_types,
|
36182
|
-
:data_input_config,
|
36183
36548
|
:supported_endpoint_type,
|
36549
|
+
:data_input_config,
|
36184
36550
|
:supported_response_mime_types)
|
36185
36551
|
SENSITIVE = []
|
36186
36552
|
include Aws::Structure
|
@@ -36193,6 +36559,11 @@ module Aws::SageMaker
|
|
36193
36559
|
# The metrics of recommendations.
|
36194
36560
|
# @return [Types::RecommendationMetrics]
|
36195
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
|
+
#
|
36196
36567
|
# @!attribute [rw] endpoint_configuration
|
36197
36568
|
# The endpoint configuration made by Inference Recommender during a
|
36198
36569
|
# recommendation job.
|
@@ -36207,11 +36578,6 @@ module Aws::SageMaker
|
|
36207
36578
|
# The reason why a benchmark failed.
|
36208
36579
|
# @return [String]
|
36209
36580
|
#
|
36210
|
-
# @!attribute [rw] endpoint_metrics
|
36211
|
-
# The metrics for an existing endpoint compared in an Inference
|
36212
|
-
# Recommender job.
|
36213
|
-
# @return [Types::InferenceMetrics]
|
36214
|
-
#
|
36215
36581
|
# @!attribute [rw] invocation_end_time
|
36216
36582
|
# A timestamp that shows when the benchmark completed.
|
36217
36583
|
# @return [Time]
|
@@ -36224,10 +36590,10 @@ module Aws::SageMaker
|
|
36224
36590
|
#
|
36225
36591
|
class RecommendationJobInferenceBenchmark < Struct.new(
|
36226
36592
|
:metrics,
|
36593
|
+
:endpoint_metrics,
|
36227
36594
|
:endpoint_configuration,
|
36228
36595
|
:model_configuration,
|
36229
36596
|
:failure_reason,
|
36230
|
-
:endpoint_metrics,
|
36231
36597
|
:invocation_end_time,
|
36232
36598
|
:invocation_start_time)
|
36233
36599
|
SENSITIVE = []
|
@@ -36240,6 +36606,10 @@ module Aws::SageMaker
|
|
36240
36606
|
# The Amazon Resource Name (ARN) of a versioned model package.
|
36241
36607
|
# @return [String]
|
36242
36608
|
#
|
36609
|
+
# @!attribute [rw] model_name
|
36610
|
+
# The name of the created model.
|
36611
|
+
# @return [String]
|
36612
|
+
#
|
36243
36613
|
# @!attribute [rw] job_duration_in_seconds
|
36244
36614
|
# Specifies the maximum duration of the job, in seconds. The maximum
|
36245
36615
|
# value is 18,000 seconds.
|
@@ -36313,14 +36683,11 @@ module Aws::SageMaker
|
|
36313
36683
|
# VPC in the inference recommendation job.
|
36314
36684
|
# @return [Types::RecommendationJobVpcConfig]
|
36315
36685
|
#
|
36316
|
-
# @!attribute [rw] model_name
|
36317
|
-
# The name of the created model.
|
36318
|
-
# @return [String]
|
36319
|
-
#
|
36320
36686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobInputConfig AWS API Documentation
|
36321
36687
|
#
|
36322
36688
|
class RecommendationJobInputConfig < Struct.new(
|
36323
36689
|
:model_package_version_arn,
|
36690
|
+
:model_name,
|
36324
36691
|
:job_duration_in_seconds,
|
36325
36692
|
:traffic_pattern,
|
36326
36693
|
:resource_limit,
|
@@ -36328,8 +36695,7 @@ module Aws::SageMaker
|
|
36328
36695
|
:volume_kms_key_id,
|
36329
36696
|
:container_config,
|
36330
36697
|
:endpoints,
|
36331
|
-
:vpc_config
|
36332
|
-
:model_name)
|
36698
|
+
:vpc_config)
|
36333
36699
|
SENSITIVE = []
|
36334
36700
|
include Aws::Structure
|
36335
36701
|
end
|
@@ -36924,15 +37290,15 @@ module Aws::SageMaker
|
|
36924
37290
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ssd-instance-store.html
|
36925
37291
|
# @return [String]
|
36926
37292
|
#
|
36927
|
-
# @!attribute [rw] instance_groups
|
36928
|
-
# The configuration of a heterogeneous cluster in JSON format.
|
36929
|
-
# @return [Array<Types::InstanceGroup>]
|
36930
|
-
#
|
36931
37293
|
# @!attribute [rw] keep_alive_period_in_seconds
|
36932
37294
|
# The duration of time in seconds to retain configured resources in a
|
36933
37295
|
# warm pool for subsequent training jobs.
|
36934
37296
|
# @return [Integer]
|
36935
37297
|
#
|
37298
|
+
# @!attribute [rw] instance_groups
|
37299
|
+
# The configuration of a heterogeneous cluster in JSON format.
|
37300
|
+
# @return [Array<Types::InstanceGroup>]
|
37301
|
+
#
|
36936
37302
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ResourceConfig AWS API Documentation
|
36937
37303
|
#
|
36938
37304
|
class ResourceConfig < Struct.new(
|
@@ -36940,8 +37306,8 @@ module Aws::SageMaker
|
|
36940
37306
|
:instance_count,
|
36941
37307
|
:volume_size_in_gb,
|
36942
37308
|
:volume_kms_key_id,
|
36943
|
-
:
|
36944
|
-
:
|
37309
|
+
:keep_alive_period_in_seconds,
|
37310
|
+
:instance_groups)
|
36945
37311
|
SENSITIVE = []
|
36946
37312
|
include Aws::Structure
|
36947
37313
|
end
|
@@ -37042,7 +37408,8 @@ module Aws::SageMaker
|
|
37042
37408
|
# @return [String]
|
37043
37409
|
#
|
37044
37410
|
# @!attribute [rw] sage_maker_image_version_alias
|
37045
|
-
# The SageMakerImageVersionAlias.
|
37411
|
+
# The SageMakerImageVersionAlias of the image to launch with. This
|
37412
|
+
# value is in SemVer 2.0.0 versioning format.
|
37046
37413
|
# @return [String]
|
37047
37414
|
#
|
37048
37415
|
# @!attribute [rw] instance_type
|
@@ -37718,27 +38085,27 @@ module Aws::SageMaker
|
|
37718
38085
|
# composed of features and values per features.
|
37719
38086
|
# @return [Types::FeatureGroup]
|
37720
38087
|
#
|
37721
|
-
# @!attribute [rw] project
|
37722
|
-
# The properties of a project.
|
37723
|
-
# @return [Types::Project]
|
37724
|
-
#
|
37725
38088
|
# @!attribute [rw] feature_metadata
|
37726
38089
|
# The feature metadata used to search through the features.
|
37727
38090
|
# @return [Types::FeatureMetadata]
|
37728
38091
|
#
|
38092
|
+
# @!attribute [rw] project
|
38093
|
+
# The properties of a project.
|
38094
|
+
# @return [Types::Project]
|
38095
|
+
#
|
37729
38096
|
# @!attribute [rw] hyper_parameter_tuning_job
|
37730
38097
|
# The properties of a hyperparameter tuning job.
|
37731
38098
|
# @return [Types::HyperParameterTuningJobSearchEntity]
|
37732
38099
|
#
|
37733
|
-
# @!attribute [rw] model
|
37734
|
-
# A model displayed in the Amazon SageMaker Model Dashboard.
|
37735
|
-
# @return [Types::ModelDashboardModel]
|
37736
|
-
#
|
37737
38100
|
# @!attribute [rw] model_card
|
37738
38101
|
# An Amazon SageMaker Model Card that documents details about a
|
37739
38102
|
# machine learning model.
|
37740
38103
|
# @return [Types::ModelCard]
|
37741
38104
|
#
|
38105
|
+
# @!attribute [rw] model
|
38106
|
+
# A model displayed in the Amazon SageMaker Model Dashboard.
|
38107
|
+
# @return [Types::ModelDashboardModel]
|
38108
|
+
#
|
37742
38109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchRecord AWS API Documentation
|
37743
38110
|
#
|
37744
38111
|
class SearchRecord < Struct.new(
|
@@ -37752,11 +38119,11 @@ module Aws::SageMaker
|
|
37752
38119
|
:pipeline,
|
37753
38120
|
:pipeline_execution,
|
37754
38121
|
:feature_group,
|
37755
|
-
:project,
|
37756
38122
|
:feature_metadata,
|
38123
|
+
:project,
|
37757
38124
|
:hyper_parameter_tuning_job,
|
37758
|
-
:
|
37759
|
-
:
|
38125
|
+
:model_card,
|
38126
|
+
:model)
|
37760
38127
|
SENSITIVE = []
|
37761
38128
|
include Aws::Structure
|
37762
38129
|
end
|
@@ -38406,6 +38773,21 @@ module Aws::SageMaker
|
|
38406
38773
|
include Aws::Structure
|
38407
38774
|
end
|
38408
38775
|
|
38776
|
+
# The application settings for a Code Editor space.
|
38777
|
+
#
|
38778
|
+
# @!attribute [rw] default_resource_spec
|
38779
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
38780
|
+
# version, and the instance type that the version runs on.
|
38781
|
+
# @return [Types::ResourceSpec]
|
38782
|
+
#
|
38783
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceCodeEditorAppSettings AWS API Documentation
|
38784
|
+
#
|
38785
|
+
class SpaceCodeEditorAppSettings < Struct.new(
|
38786
|
+
:default_resource_spec)
|
38787
|
+
SENSITIVE = []
|
38788
|
+
include Aws::Structure
|
38789
|
+
end
|
38790
|
+
|
38409
38791
|
# The space's details.
|
38410
38792
|
#
|
38411
38793
|
# @!attribute [rw] domain_id
|
@@ -38428,6 +38810,22 @@ module Aws::SageMaker
|
|
38428
38810
|
# The last modified time.
|
38429
38811
|
# @return [Time]
|
38430
38812
|
#
|
38813
|
+
# @!attribute [rw] space_settings_summary
|
38814
|
+
# Specifies summary information about the space settings.
|
38815
|
+
# @return [Types::SpaceSettingsSummary]
|
38816
|
+
#
|
38817
|
+
# @!attribute [rw] space_sharing_settings_summary
|
38818
|
+
# Specifies summary information about the space sharing settings.
|
38819
|
+
# @return [Types::SpaceSharingSettingsSummary]
|
38820
|
+
#
|
38821
|
+
# @!attribute [rw] ownership_settings_summary
|
38822
|
+
# Specifies summary information about the ownership settings.
|
38823
|
+
# @return [Types::OwnershipSettingsSummary]
|
38824
|
+
#
|
38825
|
+
# @!attribute [rw] space_display_name
|
38826
|
+
# The name of the space that appears in the Studio UI.
|
38827
|
+
# @return [String]
|
38828
|
+
#
|
38431
38829
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceDetails AWS API Documentation
|
38432
38830
|
#
|
38433
38831
|
class SpaceDetails < Struct.new(
|
@@ -38435,7 +38833,32 @@ module Aws::SageMaker
|
|
38435
38833
|
:space_name,
|
38436
38834
|
:status,
|
38437
38835
|
:creation_time,
|
38438
|
-
:last_modified_time
|
38836
|
+
:last_modified_time,
|
38837
|
+
:space_settings_summary,
|
38838
|
+
:space_sharing_settings_summary,
|
38839
|
+
:ownership_settings_summary,
|
38840
|
+
:space_display_name)
|
38841
|
+
SENSITIVE = []
|
38842
|
+
include Aws::Structure
|
38843
|
+
end
|
38844
|
+
|
38845
|
+
# The settings for the JupyterLab application within a space.
|
38846
|
+
#
|
38847
|
+
# @!attribute [rw] default_resource_spec
|
38848
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
38849
|
+
# version, and the instance type that the version runs on.
|
38850
|
+
# @return [Types::ResourceSpec]
|
38851
|
+
#
|
38852
|
+
# @!attribute [rw] code_repositories
|
38853
|
+
# A list of Git repositories that SageMaker automatically displays to
|
38854
|
+
# users for cloning in the JupyterLab application.
|
38855
|
+
# @return [Array<Types::CodeRepository>]
|
38856
|
+
#
|
38857
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceJupyterLabAppSettings AWS API Documentation
|
38858
|
+
#
|
38859
|
+
class SpaceJupyterLabAppSettings < Struct.new(
|
38860
|
+
:default_resource_spec,
|
38861
|
+
:code_repositories)
|
38439
38862
|
SENSITIVE = []
|
38440
38863
|
include Aws::Structure
|
38441
38864
|
end
|
@@ -38450,11 +38873,99 @@ module Aws::SageMaker
|
|
38450
38873
|
# The KernelGateway app settings.
|
38451
38874
|
# @return [Types::KernelGatewayAppSettings]
|
38452
38875
|
#
|
38876
|
+
# @!attribute [rw] code_editor_app_settings
|
38877
|
+
# The Code Editor application settings.
|
38878
|
+
# @return [Types::SpaceCodeEditorAppSettings]
|
38879
|
+
#
|
38880
|
+
# @!attribute [rw] jupyter_lab_app_settings
|
38881
|
+
# The settings for the JupyterLab application.
|
38882
|
+
# @return [Types::SpaceJupyterLabAppSettings]
|
38883
|
+
#
|
38884
|
+
# @!attribute [rw] app_type
|
38885
|
+
# The type of app created within the space.
|
38886
|
+
# @return [String]
|
38887
|
+
#
|
38888
|
+
# @!attribute [rw] space_storage_settings
|
38889
|
+
# The storage settings for a private space.
|
38890
|
+
# @return [Types::SpaceStorageSettings]
|
38891
|
+
#
|
38892
|
+
# @!attribute [rw] custom_file_systems
|
38893
|
+
# A file system, created by you, that you assign to a space for an
|
38894
|
+
# Amazon SageMaker Domain. Permitted users can access this file system
|
38895
|
+
# in Amazon SageMaker Studio.
|
38896
|
+
# @return [Array<Types::CustomFileSystem>]
|
38897
|
+
#
|
38453
38898
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSettings AWS API Documentation
|
38454
38899
|
#
|
38455
38900
|
class SpaceSettings < Struct.new(
|
38456
38901
|
:jupyter_server_app_settings,
|
38457
|
-
:kernel_gateway_app_settings
|
38902
|
+
:kernel_gateway_app_settings,
|
38903
|
+
:code_editor_app_settings,
|
38904
|
+
:jupyter_lab_app_settings,
|
38905
|
+
:app_type,
|
38906
|
+
:space_storage_settings,
|
38907
|
+
:custom_file_systems)
|
38908
|
+
SENSITIVE = []
|
38909
|
+
include Aws::Structure
|
38910
|
+
end
|
38911
|
+
|
38912
|
+
# Specifies summary information about the space settings.
|
38913
|
+
#
|
38914
|
+
# @!attribute [rw] app_type
|
38915
|
+
# The type of app created within the space.
|
38916
|
+
# @return [String]
|
38917
|
+
#
|
38918
|
+
# @!attribute [rw] space_storage_settings
|
38919
|
+
# The storage settings for a private space.
|
38920
|
+
# @return [Types::SpaceStorageSettings]
|
38921
|
+
#
|
38922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSettingsSummary AWS API Documentation
|
38923
|
+
#
|
38924
|
+
class SpaceSettingsSummary < Struct.new(
|
38925
|
+
:app_type,
|
38926
|
+
:space_storage_settings)
|
38927
|
+
SENSITIVE = []
|
38928
|
+
include Aws::Structure
|
38929
|
+
end
|
38930
|
+
|
38931
|
+
# A collection of space sharing settings.
|
38932
|
+
#
|
38933
|
+
# @!attribute [rw] sharing_type
|
38934
|
+
# Specifies the sharing type of the space.
|
38935
|
+
# @return [String]
|
38936
|
+
#
|
38937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSharingSettings AWS API Documentation
|
38938
|
+
#
|
38939
|
+
class SpaceSharingSettings < Struct.new(
|
38940
|
+
:sharing_type)
|
38941
|
+
SENSITIVE = []
|
38942
|
+
include Aws::Structure
|
38943
|
+
end
|
38944
|
+
|
38945
|
+
# Specifies summary information about the space sharing settings.
|
38946
|
+
#
|
38947
|
+
# @!attribute [rw] sharing_type
|
38948
|
+
# Specifies the sharing type of the space.
|
38949
|
+
# @return [String]
|
38950
|
+
#
|
38951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSharingSettingsSummary AWS API Documentation
|
38952
|
+
#
|
38953
|
+
class SpaceSharingSettingsSummary < Struct.new(
|
38954
|
+
:sharing_type)
|
38955
|
+
SENSITIVE = []
|
38956
|
+
include Aws::Structure
|
38957
|
+
end
|
38958
|
+
|
38959
|
+
# The storage settings for a private space.
|
38960
|
+
#
|
38961
|
+
# @!attribute [rw] ebs_storage_settings
|
38962
|
+
# A collection of EBS storage settings for a private space.
|
38963
|
+
# @return [Types::EbsStorageSettings]
|
38964
|
+
#
|
38965
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceStorageSettings AWS API Documentation
|
38966
|
+
#
|
38967
|
+
class SpaceStorageSettings < Struct.new(
|
38968
|
+
:ebs_storage_settings)
|
38458
38969
|
SENSITIVE = []
|
38459
38970
|
include Aws::Structure
|
38460
38971
|
end
|
@@ -39427,12 +39938,24 @@ module Aws::SageMaker
|
|
39427
39938
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-set-hyperparameters.html
|
39428
39939
|
# @return [Hash<String,String>]
|
39429
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
|
+
#
|
39430
39952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TextGenerationJobConfig AWS API Documentation
|
39431
39953
|
#
|
39432
39954
|
class TextGenerationJobConfig < Struct.new(
|
39433
39955
|
:completion_criteria,
|
39434
39956
|
:base_model_name,
|
39435
|
-
:text_generation_hyper_parameters
|
39957
|
+
:text_generation_hyper_parameters,
|
39958
|
+
:model_access_config)
|
39436
39959
|
SENSITIVE = []
|
39437
39960
|
include Aws::Structure
|
39438
39961
|
end
|
@@ -40579,6 +41102,11 @@ module Aws::SageMaker
|
|
40579
41102
|
# Describes the results of a transform job.
|
40580
41103
|
# @return [Types::TransformOutput]
|
40581
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
|
+
#
|
40582
41110
|
# @!attribute [rw] transform_resources
|
40583
41111
|
# Describes the resources, including ML instance types and ML instance
|
40584
41112
|
# count, to use for transform job.
|
@@ -40646,11 +41174,6 @@ module Aws::SageMaker
|
|
40646
41174
|
# A list of tags associated with the transform job.
|
40647
41175
|
# @return [Array<Types::Tag>]
|
40648
41176
|
#
|
40649
|
-
# @!attribute [rw] data_capture_config
|
40650
|
-
# Configuration to control how SageMaker captures inference data for
|
40651
|
-
# batch transform jobs.
|
40652
|
-
# @return [Types::BatchDataCaptureConfig]
|
40653
|
-
#
|
40654
41177
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TransformJob AWS API Documentation
|
40655
41178
|
#
|
40656
41179
|
class TransformJob < Struct.new(
|
@@ -40666,6 +41189,7 @@ module Aws::SageMaker
|
|
40666
41189
|
:environment,
|
40667
41190
|
:transform_input,
|
40668
41191
|
:transform_output,
|
41192
|
+
:data_capture_config,
|
40669
41193
|
:transform_resources,
|
40670
41194
|
:creation_time,
|
40671
41195
|
:transform_start_time,
|
@@ -40674,8 +41198,7 @@ module Aws::SageMaker
|
|
40674
41198
|
:auto_ml_job_arn,
|
40675
41199
|
:data_processing,
|
40676
41200
|
:experiment_config,
|
40677
|
-
:tags
|
40678
|
-
:data_capture_config)
|
41201
|
+
:tags)
|
40679
41202
|
SENSITIVE = []
|
40680
41203
|
include Aws::Structure
|
40681
41204
|
end
|
@@ -41860,11 +42383,16 @@ module Aws::SageMaker
|
|
41860
42383
|
# The new KernelGateway app to run on the image.
|
41861
42384
|
# @return [Types::KernelGatewayImageConfig]
|
41862
42385
|
#
|
42386
|
+
# @!attribute [rw] jupyter_lab_app_image_config
|
42387
|
+
# The JupyterLab app running on the image.
|
42388
|
+
# @return [Types::JupyterLabAppImageConfig]
|
42389
|
+
#
|
41863
42390
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateAppImageConfigRequest AWS API Documentation
|
41864
42391
|
#
|
41865
42392
|
class UpdateAppImageConfigRequest < Struct.new(
|
41866
42393
|
:app_image_config_name,
|
41867
|
-
:kernel_gateway_image_config
|
42394
|
+
:kernel_gateway_image_config,
|
42395
|
+
:jupyter_lab_app_image_config)
|
41868
42396
|
SENSITIVE = []
|
41869
42397
|
include Aws::Structure
|
41870
42398
|
end
|
@@ -42091,10 +42619,6 @@ module Aws::SageMaker
|
|
42091
42619
|
# A collection of `DomainSettings` configuration values to update.
|
42092
42620
|
# @return [Types::DomainSettingsForUpdate]
|
42093
42621
|
#
|
42094
|
-
# @!attribute [rw] default_space_settings
|
42095
|
-
# The default settings used to create a space within the Domain.
|
42096
|
-
# @return [Types::DefaultSpaceSettings]
|
42097
|
-
#
|
42098
42622
|
# @!attribute [rw] app_security_group_management
|
42099
42623
|
# The entity that creates and manages the required security groups for
|
42100
42624
|
# inter-app communication in `VPCOnly` mode. Required when
|
@@ -42104,6 +42628,10 @@ module Aws::SageMaker
|
|
42104
42628
|
# value must be set to `Service`.
|
42105
42629
|
# @return [String]
|
42106
42630
|
#
|
42631
|
+
# @!attribute [rw] default_space_settings
|
42632
|
+
# The default settings used to create a space within the Domain.
|
42633
|
+
# @return [Types::DefaultSpaceSettings]
|
42634
|
+
#
|
42107
42635
|
# @!attribute [rw] subnet_ids
|
42108
42636
|
# The VPC subnets that Studio uses for communication.
|
42109
42637
|
#
|
@@ -42135,8 +42663,8 @@ module Aws::SageMaker
|
|
42135
42663
|
:domain_id,
|
42136
42664
|
:default_user_settings,
|
42137
42665
|
:domain_settings_for_update,
|
42138
|
-
:default_space_settings,
|
42139
42666
|
:app_security_group_management,
|
42667
|
+
:default_space_settings,
|
42140
42668
|
:subnet_ids,
|
42141
42669
|
:app_network_access_type)
|
42142
42670
|
SENSITIVE = []
|
@@ -43216,12 +43744,18 @@ module Aws::SageMaker
|
|
43216
43744
|
# A collection of space settings.
|
43217
43745
|
# @return [Types::SpaceSettings]
|
43218
43746
|
#
|
43747
|
+
# @!attribute [rw] space_display_name
|
43748
|
+
# The name of the space that appears in the Amazon SageMaker Studio
|
43749
|
+
# UI.
|
43750
|
+
# @return [String]
|
43751
|
+
#
|
43219
43752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateSpaceRequest AWS API Documentation
|
43220
43753
|
#
|
43221
43754
|
class UpdateSpaceRequest < Struct.new(
|
43222
43755
|
:domain_id,
|
43223
43756
|
:space_name,
|
43224
|
-
:space_settings
|
43757
|
+
:space_settings,
|
43758
|
+
:space_display_name)
|
43225
43759
|
SENSITIVE = []
|
43226
43760
|
include Aws::Structure
|
43227
43761
|
end
|
@@ -43682,6 +44216,18 @@ module Aws::SageMaker
|
|
43682
44216
|
# The Canvas app settings.
|
43683
44217
|
# @return [Types::CanvasAppSettings]
|
43684
44218
|
#
|
44219
|
+
# @!attribute [rw] code_editor_app_settings
|
44220
|
+
# The Code Editor application settings.
|
44221
|
+
# @return [Types::CodeEditorAppSettings]
|
44222
|
+
#
|
44223
|
+
# @!attribute [rw] jupyter_lab_app_settings
|
44224
|
+
# The settings for the JupyterLab application.
|
44225
|
+
# @return [Types::JupyterLabAppSettings]
|
44226
|
+
#
|
44227
|
+
# @!attribute [rw] space_storage_settings
|
44228
|
+
# The storage settings for a private space.
|
44229
|
+
# @return [Types::DefaultSpaceStorageSettings]
|
44230
|
+
#
|
43685
44231
|
# @!attribute [rw] default_landing_uri
|
43686
44232
|
# The default experience that the user is directed to when accessing
|
43687
44233
|
# the domain. The supported values are:
|
@@ -43699,6 +44245,17 @@ module Aws::SageMaker
|
|
43699
44245
|
# default experience for the domain.
|
43700
44246
|
# @return [String]
|
43701
44247
|
#
|
44248
|
+
# @!attribute [rw] custom_posix_user_config
|
44249
|
+
# Details about the POSIX identity that is used for file system
|
44250
|
+
# operations.
|
44251
|
+
# @return [Types::CustomPosixUserConfig]
|
44252
|
+
#
|
44253
|
+
# @!attribute [rw] custom_file_system_configs
|
44254
|
+
# The settings for assigning a custom file system to a user profile.
|
44255
|
+
# Permitted users can access this file system in Amazon SageMaker
|
44256
|
+
# Studio.
|
44257
|
+
# @return [Array<Types::CustomFileSystemConfig>]
|
44258
|
+
#
|
43702
44259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
|
43703
44260
|
#
|
43704
44261
|
class UserSettings < Struct.new(
|
@@ -43711,8 +44268,13 @@ module Aws::SageMaker
|
|
43711
44268
|
:r_studio_server_pro_app_settings,
|
43712
44269
|
:r_session_app_settings,
|
43713
44270
|
:canvas_app_settings,
|
44271
|
+
:code_editor_app_settings,
|
44272
|
+
:jupyter_lab_app_settings,
|
44273
|
+
:space_storage_settings,
|
43714
44274
|
:default_landing_uri,
|
43715
|
-
:studio_web_portal
|
44275
|
+
:studio_web_portal,
|
44276
|
+
:custom_posix_user_config,
|
44277
|
+
:custom_file_system_configs)
|
43716
44278
|
SENSITIVE = []
|
43717
44279
|
include Aws::Structure
|
43718
44280
|
end
|