aws-sdk-sagemaker 1.277.0 → 1.278.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +203 -190
- data/lib/aws-sdk-sagemaker/types.rb +226 -205
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +16 -16
- data/sig/types.rbs +9 -9
- metadata +2 -2
@@ -310,6 +310,13 @@ module Aws::SageMaker
|
|
310
310
|
# Specifies the training algorithm to use in a [CreateTrainingJob][1]
|
311
311
|
# request.
|
312
312
|
#
|
313
|
+
# SageMaker uses its own SageMaker account credentials to pull and
|
314
|
+
# access built-in algorithms so built-in algorithms are universally
|
315
|
+
# accessible across all Amazon Web Services accounts. As a result,
|
316
|
+
# built-in algorithms have standard, unrestricted access. You cannot
|
317
|
+
# restrict built-in algorithms using IAM roles. Use custom algorithms if
|
318
|
+
# you require specific access controls.
|
319
|
+
#
|
313
320
|
# For more information about algorithms provided by SageMaker, see
|
314
321
|
# [Algorithms][2]. For information about using your own algorithms, see
|
315
322
|
# [Using Your Own Algorithms with Amazon SageMaker][3].
|
@@ -1297,7 +1304,7 @@ module Aws::SageMaker
|
|
1297
1304
|
include Aws::Structure
|
1298
1305
|
end
|
1299
1306
|
|
1300
|
-
# Details about an Amazon SageMaker app.
|
1307
|
+
# Details about an Amazon SageMaker AI app.
|
1301
1308
|
#
|
1302
1309
|
# @!attribute [rw] domain_id
|
1303
1310
|
# The domain ID.
|
@@ -1328,7 +1335,7 @@ module Aws::SageMaker
|
|
1328
1335
|
# @return [Time]
|
1329
1336
|
#
|
1330
1337
|
# @!attribute [rw] resource_spec
|
1331
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
1338
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
1332
1339
|
# version, and the instance type that the version runs on.
|
1333
1340
|
# @return [Types::ResourceSpec]
|
1334
1341
|
#
|
@@ -1347,7 +1354,7 @@ module Aws::SageMaker
|
|
1347
1354
|
include Aws::Structure
|
1348
1355
|
end
|
1349
1356
|
|
1350
|
-
# The configuration for running a SageMaker image as a KernelGateway
|
1357
|
+
# The configuration for running a SageMaker AI image as a KernelGateway
|
1351
1358
|
# app.
|
1352
1359
|
#
|
1353
1360
|
# @!attribute [rw] app_image_config_arn
|
@@ -1368,7 +1375,7 @@ module Aws::SageMaker
|
|
1368
1375
|
#
|
1369
1376
|
# @!attribute [rw] kernel_gateway_image_config
|
1370
1377
|
# The configuration for the file system and kernels in the SageMaker
|
1371
|
-
# image.
|
1378
|
+
# AI image.
|
1372
1379
|
# @return [Types::KernelGatewayImageConfig]
|
1373
1380
|
#
|
1374
1381
|
# @!attribute [rw] jupyter_lab_app_image_config
|
@@ -2720,7 +2727,7 @@ module Aws::SageMaker
|
|
2720
2727
|
# The data type.
|
2721
2728
|
#
|
2722
2729
|
# * If you choose `S3Prefix`, `S3Uri` identifies a key name prefix.
|
2723
|
-
# SageMaker uses all objects that match the specified key name
|
2730
|
+
# SageMaker AI uses all objects that match the specified key name
|
2724
2731
|
# prefix for model training.
|
2725
2732
|
#
|
2726
2733
|
# The `S3Prefix` should have the following format:
|
@@ -2729,7 +2736,7 @@ module Aws::SageMaker
|
|
2729
2736
|
#
|
2730
2737
|
# * If you choose `ManifestFile`, `S3Uri` identifies an object that is
|
2731
2738
|
# a manifest file containing a list of object keys that you want
|
2732
|
-
# SageMaker to use for model training.
|
2739
|
+
# SageMaker AI to use for model training.
|
2733
2740
|
#
|
2734
2741
|
# A `ManifestFile` should have the format shown below:
|
2735
2742
|
#
|
@@ -3506,16 +3513,16 @@ module Aws::SageMaker
|
|
3506
3513
|
end
|
3507
3514
|
|
3508
3515
|
# Configuration specifying how to treat different headers. If no headers
|
3509
|
-
# are specified Amazon SageMaker will by default base64 encode when
|
3516
|
+
# are specified Amazon SageMaker AI will by default base64 encode when
|
3510
3517
|
# capturing the data.
|
3511
3518
|
#
|
3512
3519
|
# @!attribute [rw] csv_content_types
|
3513
|
-
# The list of all content type headers that Amazon SageMaker will
|
3520
|
+
# The list of all content type headers that Amazon SageMaker AI will
|
3514
3521
|
# treat as CSV and capture accordingly.
|
3515
3522
|
# @return [Array<String>]
|
3516
3523
|
#
|
3517
3524
|
# @!attribute [rw] json_content_types
|
3518
|
-
# The list of all content type headers that SageMaker will treat as
|
3525
|
+
# The list of all content type headers that SageMaker AI will treat as
|
3519
3526
|
# JSON and capture accordingly.
|
3520
3527
|
# @return [Array<String>]
|
3521
3528
|
#
|
@@ -4722,7 +4729,7 @@ module Aws::SageMaker
|
|
4722
4729
|
#
|
4723
4730
|
# @!attribute [rw] file_system_config
|
4724
4731
|
# The Amazon Elastic File System storage configuration for a SageMaker
|
4725
|
-
# image.
|
4732
|
+
# AI image.
|
4726
4733
|
# @return [Types::FileSystemConfig]
|
4727
4734
|
#
|
4728
4735
|
# @!attribute [rw] container_config
|
@@ -4748,7 +4755,7 @@ module Aws::SageMaker
|
|
4748
4755
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/code-editor.html
|
4749
4756
|
#
|
4750
4757
|
# @!attribute [rw] default_resource_spec
|
4751
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
4758
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
4752
4759
|
# version, and the instance type that the version runs on.
|
4753
4760
|
# @return [Types::ResourceSpec]
|
4754
4761
|
#
|
@@ -4785,7 +4792,7 @@ module Aws::SageMaker
|
|
4785
4792
|
include Aws::Structure
|
4786
4793
|
end
|
4787
4794
|
|
4788
|
-
# A Git repository that SageMaker automatically displays to users for
|
4795
|
+
# A Git repository that SageMaker AI automatically displays to users for
|
4789
4796
|
# cloning in the JupyterServer application.
|
4790
4797
|
#
|
4791
4798
|
# @!attribute [rw] repository_url
|
@@ -5773,7 +5780,7 @@ module Aws::SageMaker
|
|
5773
5780
|
#
|
5774
5781
|
# @!attribute [rw] resource_spec
|
5775
5782
|
# The instance type and the Amazon Resource Name (ARN) of the
|
5776
|
-
# SageMaker image created on the instance.
|
5783
|
+
# SageMaker AI image created on the instance.
|
5777
5784
|
#
|
5778
5785
|
# <note markdown="1"> The value of `InstanceType` passed as part of the `ResourceSpec` in
|
5779
5786
|
# the `CreateApp` call overrides the value passed as part of the
|
@@ -6281,9 +6288,10 @@ module Aws::SageMaker
|
|
6281
6288
|
#
|
6282
6289
|
# @!attribute [rw] role_arn
|
6283
6290
|
# The Amazon Resource Name (ARN) of an IAM role that enables Amazon
|
6284
|
-
# SageMaker to perform tasks on your behalf.
|
6291
|
+
# SageMaker AI to perform tasks on your behalf.
|
6285
6292
|
#
|
6286
|
-
# During model compilation, Amazon SageMaker needs your permission
|
6293
|
+
# During model compilation, Amazon SageMaker AI needs your permission
|
6294
|
+
# to:
|
6287
6295
|
#
|
6288
6296
|
# * Read input data from an S3 bucket
|
6289
6297
|
#
|
@@ -6294,9 +6302,9 @@ module Aws::SageMaker
|
|
6294
6302
|
# * Publish metrics to Amazon CloudWatch
|
6295
6303
|
#
|
6296
6304
|
# You grant permissions for all of these tasks to an IAM role. To pass
|
6297
|
-
# this role to Amazon SageMaker, the caller of this API must have
|
6298
|
-
# `iam:PassRole` permission. For more information, see [Amazon
|
6299
|
-
# SageMaker Roles.][1]
|
6305
|
+
# this role to Amazon SageMaker AI, the caller of this API must have
|
6306
|
+
# the `iam:PassRole` permission. For more information, see [Amazon
|
6307
|
+
# SageMaker AI Roles.][1]
|
6300
6308
|
#
|
6301
6309
|
#
|
6302
6310
|
#
|
@@ -6335,7 +6343,7 @@ module Aws::SageMaker
|
|
6335
6343
|
#
|
6336
6344
|
# @!attribute [rw] stopping_condition
|
6337
6345
|
# Specifies a limit to how long a model compilation job can run. When
|
6338
|
-
# the job reaches the time limit, Amazon SageMaker ends the
|
6346
|
+
# the job reaches the time limit, Amazon SageMaker AI ends the
|
6339
6347
|
# compilation job. Use this API to cap model training costs.
|
6340
6348
|
# @return [Types::StoppingCondition]
|
6341
6349
|
#
|
@@ -6367,7 +6375,7 @@ module Aws::SageMaker
|
|
6367
6375
|
|
6368
6376
|
# @!attribute [rw] compilation_job_arn
|
6369
6377
|
# If the action is successful, the service sends back an HTTP 200
|
6370
|
-
# response. Amazon SageMaker returns the following data in JSON
|
6378
|
+
# response. Amazon SageMaker AI returns the following data in JSON
|
6371
6379
|
# format:
|
6372
6380
|
#
|
6373
6381
|
# * `CompilationJobArn`: The Amazon Resource Name (ARN) of the
|
@@ -6529,7 +6537,7 @@ module Aws::SageMaker
|
|
6529
6537
|
#
|
6530
6538
|
# @!attribute [rw] role_arn
|
6531
6539
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
6532
|
-
# can assume to perform tasks on your behalf.
|
6540
|
+
# AI can assume to perform tasks on your behalf.
|
6533
6541
|
# @return [String]
|
6534
6542
|
#
|
6535
6543
|
# @!attribute [rw] stopping_condition
|
@@ -6666,7 +6674,7 @@ module Aws::SageMaker
|
|
6666
6674
|
# `PublicInternetOnly`.
|
6667
6675
|
#
|
6668
6676
|
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
6669
|
-
# Amazon SageMaker, which allows direct internet access
|
6677
|
+
# Amazon SageMaker AI, which allows direct internet access
|
6670
6678
|
#
|
6671
6679
|
# * `VpcOnly` - All traffic is through the specified VPC and subnets
|
6672
6680
|
# @return [String]
|
@@ -6676,7 +6684,7 @@ module Aws::SageMaker
|
|
6676
6684
|
# @return [String]
|
6677
6685
|
#
|
6678
6686
|
# @!attribute [rw] kms_key_id
|
6679
|
-
# SageMaker uses Amazon Web Services KMS to encrypt EFS and EBS
|
6687
|
+
# SageMaker AI uses Amazon Web Services KMS to encrypt EFS and EBS
|
6680
6688
|
# volumes attached to the domain with an Amazon Web Services managed
|
6681
6689
|
# key by default. For more control, specify a customer managed key.
|
6682
6690
|
# @return [String]
|
@@ -6866,7 +6874,7 @@ module Aws::SageMaker
|
|
6866
6874
|
# @return [Array<Types::ProductionVariant>]
|
6867
6875
|
#
|
6868
6876
|
# @!attribute [rw] data_capture_config
|
6869
|
-
# Configuration to control how SageMaker captures inference data.
|
6877
|
+
# Configuration to control how SageMaker AI captures inference data.
|
6870
6878
|
# @return [Types::DataCaptureConfig]
|
6871
6879
|
#
|
6872
6880
|
# @!attribute [rw] tags
|
@@ -6952,11 +6960,11 @@ module Aws::SageMaker
|
|
6952
6960
|
#
|
6953
6961
|
# @!attribute [rw] execution_role_arn
|
6954
6962
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
6955
|
-
# can assume to perform actions on your behalf. For more
|
6956
|
-
# see [SageMaker Roles][1].
|
6963
|
+
# AI can assume to perform actions on your behalf. For more
|
6964
|
+
# information, see [SageMaker AI Roles][1].
|
6957
6965
|
#
|
6958
|
-
# <note markdown="1"> To be able to pass this role to Amazon SageMaker, the caller of
|
6959
|
-
# action must have the `iam:PassRole` permission.
|
6966
|
+
# <note markdown="1"> To be able to pass this role to Amazon SageMaker AI, the caller of
|
6967
|
+
# this action must have the `iam:PassRole` permission.
|
6960
6968
|
#
|
6961
6969
|
# </note>
|
6962
6970
|
#
|
@@ -7642,7 +7650,7 @@ module Aws::SageMaker
|
|
7642
7650
|
# @return [String]
|
7643
7651
|
#
|
7644
7652
|
# @!attribute [rw] role_arn
|
7645
|
-
# The ARN of an IAM role that enables Amazon SageMaker to perform
|
7653
|
+
# The ARN of an IAM role that enables Amazon SageMaker AI to perform
|
7646
7654
|
# tasks on your behalf.
|
7647
7655
|
# @return [String]
|
7648
7656
|
#
|
@@ -7717,16 +7725,16 @@ module Aws::SageMaker
|
|
7717
7725
|
# @return [String]
|
7718
7726
|
#
|
7719
7727
|
# @!attribute [rw] job_type
|
7720
|
-
# Indicates SageMaker job type compatibility.
|
7728
|
+
# Indicates SageMaker AI job type compatibility.
|
7721
7729
|
#
|
7722
|
-
# * `TRAINING`: The image version is compatible with SageMaker
|
7730
|
+
# * `TRAINING`: The image version is compatible with SageMaker AI
|
7723
7731
|
# training jobs.
|
7724
7732
|
#
|
7725
|
-
# * `INFERENCE`: The image version is compatible with SageMaker
|
7733
|
+
# * `INFERENCE`: The image version is compatible with SageMaker AI
|
7726
7734
|
# inference jobs.
|
7727
7735
|
#
|
7728
7736
|
# * `NOTEBOOK_KERNEL`: The image version is compatible with SageMaker
|
7729
|
-
# notebook kernels.
|
7737
|
+
# AI notebook kernels.
|
7730
7738
|
# @return [String]
|
7731
7739
|
#
|
7732
7740
|
# @!attribute [rw] ml_framework
|
@@ -8408,7 +8416,7 @@ module Aws::SageMaker
|
|
8408
8416
|
#
|
8409
8417
|
# @!attribute [rw] role_arn
|
8410
8418
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
8411
|
-
# can assume to perform tasks on your behalf.
|
8419
|
+
# AI can assume to perform tasks on your behalf.
|
8412
8420
|
# @return [String]
|
8413
8421
|
#
|
8414
8422
|
# @!attribute [rw] stopping_condition
|
@@ -8592,7 +8600,7 @@ module Aws::SageMaker
|
|
8592
8600
|
#
|
8593
8601
|
# @!attribute [rw] role_arn
|
8594
8602
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
8595
|
-
# can assume to perform tasks on your behalf.
|
8603
|
+
# AI can assume to perform tasks on your behalf.
|
8596
8604
|
# @return [String]
|
8597
8605
|
#
|
8598
8606
|
# @!attribute [rw] stopping_condition
|
@@ -9028,7 +9036,7 @@ module Aws::SageMaker
|
|
9028
9036
|
#
|
9029
9037
|
# @!attribute [rw] role_arn
|
9030
9038
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
9031
|
-
# can assume to perform tasks on your behalf.
|
9039
|
+
# AI can assume to perform tasks on your behalf.
|
9032
9040
|
# @return [String]
|
9033
9041
|
#
|
9034
9042
|
# @!attribute [rw] stopping_condition
|
@@ -9134,13 +9142,14 @@ module Aws::SageMaker
|
|
9134
9142
|
#
|
9135
9143
|
# @!attribute [rw] role_arn
|
9136
9144
|
# When you send any requests to Amazon Web Services resources from the
|
9137
|
-
# notebook instance, SageMaker assumes this role to perform tasks
|
9138
|
-
# your behalf. You must grant this role necessary permissions so
|
9139
|
-
# SageMaker can perform these tasks. The policy must allow the
|
9140
|
-
# SageMaker service principal (sagemaker.amazonaws.com) permissions
|
9141
|
-
# assume this role. For more information, see [SageMaker
|
9142
|
-
#
|
9143
|
-
#
|
9145
|
+
# notebook instance, SageMaker AI assumes this role to perform tasks
|
9146
|
+
# on your behalf. You must grant this role necessary permissions so
|
9147
|
+
# SageMaker AI can perform these tasks. The policy must allow the
|
9148
|
+
# SageMaker AI service principal (sagemaker.amazonaws.com) permissions
|
9149
|
+
# to assume this role. For more information, see [SageMaker AI
|
9150
|
+
# Roles][1].
|
9151
|
+
#
|
9152
|
+
# <note markdown="1"> To be able to pass this role to SageMaker AI, the caller of this API
|
9144
9153
|
# must have the `iam:PassRole` permission.
|
9145
9154
|
#
|
9146
9155
|
# </note>
|
@@ -9152,7 +9161,7 @@ module Aws::SageMaker
|
|
9152
9161
|
#
|
9153
9162
|
# @!attribute [rw] kms_key_id
|
9154
9163
|
# The Amazon Resource Name (ARN) of a Amazon Web Services Key
|
9155
|
-
# Management Service key that SageMaker uses to encrypt data on the
|
9164
|
+
# Management Service key that SageMaker AI uses to encrypt data on the
|
9156
9165
|
# storage volume attached to your notebook instance. The KMS key you
|
9157
9166
|
# provide must be enabled. For information, see [Enabling and
|
9158
9167
|
# Disabling Keys][1] in the *Amazon Web Services Key Management
|
@@ -9185,10 +9194,10 @@ module Aws::SageMaker
|
|
9185
9194
|
# @return [String]
|
9186
9195
|
#
|
9187
9196
|
# @!attribute [rw] direct_internet_access
|
9188
|
-
# Sets whether SageMaker provides internet access to the notebook
|
9197
|
+
# Sets whether SageMaker AI provides internet access to the notebook
|
9189
9198
|
# instance. If you set this to `Disabled` this notebook instance is
|
9190
9199
|
# able to access resources only in your VPC, and is not be able to
|
9191
|
-
# connect to SageMaker training and endpoint services unless you
|
9200
|
+
# connect to SageMaker AI training and endpoint services unless you
|
9192
9201
|
# configure a NAT Gateway in your VPC.
|
9193
9202
|
#
|
9194
9203
|
# For more information, see [Notebook Instances Are Internet-Enabled
|
@@ -9220,7 +9229,8 @@ module Aws::SageMaker
|
|
9220
9229
|
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
9221
9230
|
# Git repository. When you open a notebook instance, it opens in the
|
9222
9231
|
# directory that contains this repository. For more information, see
|
9223
|
-
# [Associating Git Repositories with SageMaker Notebook
|
9232
|
+
# [Associating Git Repositories with SageMaker AI Notebook
|
9233
|
+
# Instances][2].
|
9224
9234
|
#
|
9225
9235
|
#
|
9226
9236
|
#
|
@@ -9235,7 +9245,7 @@ module Aws::SageMaker
|
|
9235
9245
|
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
9236
9246
|
# repository. These repositories are cloned at the same level as the
|
9237
9247
|
# default repository of your notebook instance. For more information,
|
9238
|
-
# see [Associating Git Repositories with SageMaker Notebook
|
9248
|
+
# see [Associating Git Repositories with SageMaker AI Notebook
|
9239
9249
|
# Instances][2].
|
9240
9250
|
#
|
9241
9251
|
#
|
@@ -9343,9 +9353,9 @@ module Aws::SageMaker
|
|
9343
9353
|
#
|
9344
9354
|
# @!attribute [rw] role_arn
|
9345
9355
|
# The Amazon Resource Name (ARN) of an IAM role that enables Amazon
|
9346
|
-
# SageMaker to perform tasks on your behalf.
|
9356
|
+
# SageMaker AI to perform tasks on your behalf.
|
9347
9357
|
#
|
9348
|
-
# During model optimization, Amazon SageMaker needs your permission
|
9358
|
+
# During model optimization, Amazon SageMaker AI needs your permission
|
9349
9359
|
# to:
|
9350
9360
|
#
|
9351
9361
|
# * Read input data from an S3 bucket
|
@@ -9357,9 +9367,9 @@ module Aws::SageMaker
|
|
9357
9367
|
# * Publish metrics to Amazon CloudWatch
|
9358
9368
|
#
|
9359
9369
|
# You grant permissions for all of these tasks to an IAM role. To pass
|
9360
|
-
# this role to Amazon SageMaker, the caller of this API must have
|
9361
|
-
# `iam:PassRole` permission. For more information, see [Amazon
|
9362
|
-
# SageMaker Roles.][1]
|
9370
|
+
# this role to Amazon SageMaker AI, the caller of this API must have
|
9371
|
+
# the `iam:PassRole` permission. For more information, see [Amazon
|
9372
|
+
# SageMaker AI Roles.][1]
|
9363
9373
|
#
|
9364
9374
|
#
|
9365
9375
|
#
|
@@ -10008,13 +10018,13 @@ module Aws::SageMaker
|
|
10008
10018
|
end
|
10009
10019
|
|
10010
10020
|
# @!attribute [rw] studio_lifecycle_config_name
|
10011
|
-
# The name of the Amazon SageMaker Studio Lifecycle Configuration
|
10012
|
-
# create.
|
10021
|
+
# The name of the Amazon SageMaker AI Studio Lifecycle Configuration
|
10022
|
+
# to create.
|
10013
10023
|
# @return [String]
|
10014
10024
|
#
|
10015
10025
|
# @!attribute [rw] studio_lifecycle_config_content
|
10016
|
-
# The content of your Amazon SageMaker Studio Lifecycle
|
10017
|
-
# script. This content must be base64 encoded.
|
10026
|
+
# The content of your Amazon SageMaker AI Studio Lifecycle
|
10027
|
+
# Configuration script. This content must be base64 encoded.
|
10018
10028
|
# @return [String]
|
10019
10029
|
#
|
10020
10030
|
# @!attribute [rw] studio_lifecycle_config_app_type
|
@@ -10918,8 +10928,8 @@ module Aws::SageMaker
|
|
10918
10928
|
end
|
10919
10929
|
|
10920
10930
|
# A file system, created by you, that you assign to a user profile or
|
10921
|
-
# space for an Amazon SageMaker Domain. Permitted users can access
|
10922
|
-
# file system in Amazon SageMaker Studio.
|
10931
|
+
# space for an Amazon SageMaker AI Domain. Permitted users can access
|
10932
|
+
# this file system in Amazon SageMaker AI Studio.
|
10923
10933
|
#
|
10924
10934
|
# @note CustomFileSystem is a union - when making an API calls you must set exactly one of the members.
|
10925
10935
|
#
|
@@ -10949,8 +10959,8 @@ module Aws::SageMaker
|
|
10949
10959
|
end
|
10950
10960
|
|
10951
10961
|
# The settings for assigning a custom file system to a user profile or
|
10952
|
-
# space for an Amazon SageMaker Domain. Permitted users can access
|
10953
|
-
# file system in Amazon SageMaker Studio.
|
10962
|
+
# space for an Amazon SageMaker AI Domain. Permitted users can access
|
10963
|
+
# this file system in Amazon SageMaker AI Studio.
|
10954
10964
|
#
|
10955
10965
|
# @note CustomFileSystemConfig is a union - when making an API calls you must set exactly one of the members.
|
10956
10966
|
#
|
@@ -10979,8 +10989,8 @@ module Aws::SageMaker
|
|
10979
10989
|
class Unknown < CustomFileSystemConfig; end
|
10980
10990
|
end
|
10981
10991
|
|
10982
|
-
# A custom SageMaker image. For more information, see [Bring your own
|
10983
|
-
# SageMaker image][1].
|
10992
|
+
# A custom SageMaker AI image. For more information, see [Bring your own
|
10993
|
+
# SageMaker AI image][1].
|
10984
10994
|
#
|
10985
10995
|
#
|
10986
10996
|
#
|
@@ -11052,7 +11062,7 @@ module Aws::SageMaker
|
|
11052
11062
|
include Aws::Structure
|
11053
11063
|
end
|
11054
11064
|
|
11055
|
-
# Configuration to control how SageMaker captures inference data.
|
11065
|
+
# Configuration to control how SageMaker AI captures inference data.
|
11056
11066
|
#
|
11057
11067
|
# @!attribute [rw] enable_capture
|
11058
11068
|
# Whether data capture should be enabled or disabled (defaults to
|
@@ -11060,8 +11070,8 @@ module Aws::SageMaker
|
|
11060
11070
|
# @return [Boolean]
|
11061
11071
|
#
|
11062
11072
|
# @!attribute [rw] initial_sampling_percentage
|
11063
|
-
# The percentage of requests SageMaker will capture. A lower value
|
11064
|
-
# recommended for Endpoints with high traffic.
|
11073
|
+
# The percentage of requests SageMaker AI will capture. A lower value
|
11074
|
+
# is recommended for Endpoints with high traffic.
|
11065
11075
|
# @return [Integer]
|
11066
11076
|
#
|
11067
11077
|
# @!attribute [rw] destination_s3_uri
|
@@ -11070,8 +11080,8 @@ module Aws::SageMaker
|
|
11070
11080
|
#
|
11071
11081
|
# @!attribute [rw] kms_key_id
|
11072
11082
|
# The Amazon Resource Name (ARN) of an Key Management Service key that
|
11073
|
-
# SageMaker uses to encrypt the captured data at rest using Amazon
|
11074
|
-
# server-side encryption.
|
11083
|
+
# SageMaker AI uses to encrypt the captured data at rest using Amazon
|
11084
|
+
# S3 server-side encryption.
|
11075
11085
|
#
|
11076
11086
|
# The KmsKeyId can be any of the following formats:
|
11077
11087
|
#
|
@@ -11093,8 +11103,8 @@ module Aws::SageMaker
|
|
11093
11103
|
#
|
11094
11104
|
# @!attribute [rw] capture_content_type_header
|
11095
11105
|
# Configuration specifying how to treat different headers. If no
|
11096
|
-
# headers are specified SageMaker will by default base64 encode
|
11097
|
-
# capturing the data.
|
11106
|
+
# headers are specified SageMaker AI will by default base64 encode
|
11107
|
+
# when capturing the data.
|
11098
11108
|
# @return [Types::CaptureContentTypeHeader]
|
11099
11109
|
#
|
11100
11110
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataCaptureConfig AWS API Documentation
|
@@ -11604,7 +11614,7 @@ module Aws::SageMaker
|
|
11604
11614
|
#
|
11605
11615
|
# @!attribute [rw] custom_file_system_configs
|
11606
11616
|
# The settings for assigning a custom file system to a domain.
|
11607
|
-
# Permitted users can access this file system in Amazon SageMaker
|
11617
|
+
# Permitted users can access this file system in Amazon SageMaker AI
|
11608
11618
|
# Studio.
|
11609
11619
|
# @return [Array<Types::CustomFileSystemConfig>]
|
11610
11620
|
#
|
@@ -12339,7 +12349,7 @@ module Aws::SageMaker
|
|
12339
12349
|
end
|
12340
12350
|
|
12341
12351
|
# @!attribute [rw] notebook_instance_name
|
12342
|
-
# The name of the SageMaker notebook instance to delete.
|
12352
|
+
# The name of the SageMaker AI notebook instance to delete.
|
12343
12353
|
# @return [String]
|
12344
12354
|
#
|
12345
12355
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteNotebookInstanceInput AWS API Documentation
|
@@ -12471,8 +12481,8 @@ module Aws::SageMaker
|
|
12471
12481
|
end
|
12472
12482
|
|
12473
12483
|
# @!attribute [rw] studio_lifecycle_config_name
|
12474
|
-
# The name of the Amazon SageMaker Studio Lifecycle Configuration
|
12475
|
-
# delete.
|
12484
|
+
# The name of the Amazon SageMaker AI Studio Lifecycle Configuration
|
12485
|
+
# to delete.
|
12476
12486
|
# @return [String]
|
12477
12487
|
#
|
12478
12488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteStudioLifecycleConfigRequest AWS API Documentation
|
@@ -13090,15 +13100,15 @@ module Aws::SageMaker
|
|
13090
13100
|
#
|
13091
13101
|
# @!attribute [rw] last_user_activity_timestamp
|
13092
13102
|
# The timestamp of the last user's activity.
|
13093
|
-
# `LastUserActivityTimestamp` is also updated when SageMaker
|
13094
|
-
# health checks without user activity. As a result, this
|
13095
|
-
# to the same value as `LastHealthCheckTimestamp`.
|
13103
|
+
# `LastUserActivityTimestamp` is also updated when SageMaker AI
|
13104
|
+
# performs health checks without user activity. As a result, this
|
13105
|
+
# value is set to the same value as `LastHealthCheckTimestamp`.
|
13096
13106
|
# @return [Time]
|
13097
13107
|
#
|
13098
13108
|
# @!attribute [rw] creation_time
|
13099
13109
|
# The creation time of the application.
|
13100
13110
|
#
|
13101
|
-
# <note markdown="1"> After an application has been shut down for 24 hours, SageMaker
|
13111
|
+
# <note markdown="1"> After an application has been shut down for 24 hours, SageMaker AI
|
13102
13112
|
# deletes all metadata for the application. To be considered an update
|
13103
13113
|
# and retain application metadata, applications must be restarted
|
13104
13114
|
# within 24 hours after the previous application has been shut down.
|
@@ -13114,7 +13124,7 @@ module Aws::SageMaker
|
|
13114
13124
|
#
|
13115
13125
|
# @!attribute [rw] resource_spec
|
13116
13126
|
# The instance type and the Amazon Resource Name (ARN) of the
|
13117
|
-
# SageMaker image created on the instance.
|
13127
|
+
# SageMaker AI image created on the instance.
|
13118
13128
|
# @return [Types::ResourceSpec]
|
13119
13129
|
#
|
13120
13130
|
# @!attribute [rw] built_in_lifecycle_config_arn
|
@@ -13286,9 +13296,9 @@ module Aws::SageMaker
|
|
13286
13296
|
# @return [Array<Types::AutoMLPartialFailureReason>]
|
13287
13297
|
#
|
13288
13298
|
# @!attribute [rw] best_candidate
|
13289
|
-
# The best model candidate selected by SageMaker Autopilot using
|
13290
|
-
# the best objective metric and lowest [InferenceLatency][1] for
|
13291
|
-
# experiment.
|
13299
|
+
# The best model candidate selected by SageMaker AI Autopilot using
|
13300
|
+
# both the best objective metric and lowest [InferenceLatency][1] for
|
13301
|
+
# an experiment.
|
13292
13302
|
#
|
13293
13303
|
#
|
13294
13304
|
#
|
@@ -13785,12 +13795,12 @@ module Aws::SageMaker
|
|
13785
13795
|
# The time when the model compilation job on a compilation job
|
13786
13796
|
# instance ended. For a successful or stopped job, this is when the
|
13787
13797
|
# job's model artifacts have finished uploading. For a failed job,
|
13788
|
-
# this is when Amazon SageMaker detected that the job failed.
|
13798
|
+
# this is when Amazon SageMaker AI detected that the job failed.
|
13789
13799
|
# @return [Time]
|
13790
13800
|
#
|
13791
13801
|
# @!attribute [rw] stopping_condition
|
13792
13802
|
# Specifies a limit to how long a model compilation job can run. When
|
13793
|
-
# the job reaches the time limit, Amazon SageMaker ends the
|
13803
|
+
# the job reaches the time limit, Amazon SageMaker AI ends the
|
13794
13804
|
# compilation job. Use this API to cap model training costs.
|
13795
13805
|
# @return [Types::StoppingCondition]
|
13796
13806
|
#
|
@@ -13829,7 +13839,7 @@ module Aws::SageMaker
|
|
13829
13839
|
#
|
13830
13840
|
# @!attribute [rw] role_arn
|
13831
13841
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
13832
|
-
# assumes to perform the model compilation job.
|
13842
|
+
# AI assumes to perform the model compilation job.
|
13833
13843
|
# @return [String]
|
13834
13844
|
#
|
13835
13845
|
# @!attribute [rw] input_config
|
@@ -14122,7 +14132,7 @@ module Aws::SageMaker
|
|
14122
14132
|
#
|
14123
14133
|
# @!attribute [rw] role_arn
|
14124
14134
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
14125
|
-
# can assume to perform tasks on your behalf.
|
14135
|
+
# AI can assume to perform tasks on your behalf.
|
14126
14136
|
# @return [String]
|
14127
14137
|
#
|
14128
14138
|
# @!attribute [rw] stopping_condition
|
@@ -14328,7 +14338,7 @@ module Aws::SageMaker
|
|
14328
14338
|
# @return [String]
|
14329
14339
|
#
|
14330
14340
|
# @!attribute [rw] single_sign_on_application_arn
|
14331
|
-
# The ARN of the application managed by SageMaker in IAM Identity
|
14341
|
+
# The ARN of the application managed by SageMaker AI in IAM Identity
|
14332
14342
|
# Center. This value is only returned for domains created after
|
14333
14343
|
# October 1, 2023.
|
14334
14344
|
# @return [String]
|
@@ -14372,7 +14382,7 @@ module Aws::SageMaker
|
|
14372
14382
|
# `PublicInternetOnly`.
|
14373
14383
|
#
|
14374
14384
|
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
14375
|
-
# Amazon SageMaker, which allows direct internet access
|
14385
|
+
# Amazon SageMaker AI, which allows direct internet access
|
14376
14386
|
#
|
14377
14387
|
# * `VpcOnly` - All traffic is through the specified VPC and subnets
|
14378
14388
|
# @return [String]
|
@@ -14658,7 +14668,7 @@ module Aws::SageMaker
|
|
14658
14668
|
# @return [Array<Types::ProductionVariant>]
|
14659
14669
|
#
|
14660
14670
|
# @!attribute [rw] data_capture_config
|
14661
|
-
# Configuration to control how SageMaker captures inference data.
|
14671
|
+
# Configuration to control how SageMaker AI captures inference data.
|
14662
14672
|
# @return [Types::DataCaptureConfig]
|
14663
14673
|
#
|
14664
14674
|
# @!attribute [rw] kms_key_id
|
@@ -15716,7 +15726,7 @@ module Aws::SageMaker
|
|
15716
15726
|
# @return [Time]
|
15717
15727
|
#
|
15718
15728
|
# @!attribute [rw] role_arn
|
15719
|
-
# The ARN of the IAM role that enables Amazon SageMaker to perform
|
15729
|
+
# The ARN of the IAM role that enables Amazon SageMaker AI to perform
|
15720
15730
|
# tasks on your behalf.
|
15721
15731
|
# @return [String]
|
15722
15732
|
#
|
@@ -15814,16 +15824,16 @@ module Aws::SageMaker
|
|
15814
15824
|
# @return [String]
|
15815
15825
|
#
|
15816
15826
|
# @!attribute [rw] job_type
|
15817
|
-
# Indicates SageMaker job type compatibility.
|
15827
|
+
# Indicates SageMaker AI job type compatibility.
|
15818
15828
|
#
|
15819
|
-
# * `TRAINING`: The image version is compatible with SageMaker
|
15829
|
+
# * `TRAINING`: The image version is compatible with SageMaker AI
|
15820
15830
|
# training jobs.
|
15821
15831
|
#
|
15822
|
-
# * `INFERENCE`: The image version is compatible with SageMaker
|
15832
|
+
# * `INFERENCE`: The image version is compatible with SageMaker AI
|
15823
15833
|
# inference jobs.
|
15824
15834
|
#
|
15825
15835
|
# * `NOTEBOOK_KERNEL`: The image version is compatible with SageMaker
|
15826
|
-
# notebook kernels.
|
15836
|
+
# AI notebook kernels.
|
15827
15837
|
# @return [String]
|
15828
15838
|
#
|
15829
15839
|
# @!attribute [rw] ml_framework
|
@@ -17275,7 +17285,7 @@ module Aws::SageMaker
|
|
17275
17285
|
#
|
17276
17286
|
# @!attribute [rw] role_arn
|
17277
17287
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
17278
|
-
# can assume to perform tasks on your behalf.
|
17288
|
+
# AI can assume to perform tasks on your behalf.
|
17279
17289
|
# @return [String]
|
17280
17290
|
#
|
17281
17291
|
# @!attribute [rw] stopping_condition
|
@@ -17453,7 +17463,7 @@ module Aws::SageMaker
|
|
17453
17463
|
# @return [String]
|
17454
17464
|
#
|
17455
17465
|
# @!attribute [rw] notebook_instance_name
|
17456
|
-
# The name of the SageMaker notebook instance.
|
17466
|
+
# The name of the SageMaker AI notebook instance.
|
17457
17467
|
# @return [String]
|
17458
17468
|
#
|
17459
17469
|
# @!attribute [rw] notebook_instance_status
|
@@ -17487,12 +17497,12 @@ module Aws::SageMaker
|
|
17487
17497
|
# @return [String]
|
17488
17498
|
#
|
17489
17499
|
# @!attribute [rw] kms_key_id
|
17490
|
-
# The Amazon Web Services KMS key ID SageMaker uses to encrypt data
|
17500
|
+
# The Amazon Web Services KMS key ID SageMaker AI uses to encrypt data
|
17491
17501
|
# when storing it on the ML storage volume attached to the instance.
|
17492
17502
|
# @return [String]
|
17493
17503
|
#
|
17494
17504
|
# @!attribute [rw] network_interface_id
|
17495
|
-
# The network interface IDs that SageMaker created at the time of
|
17505
|
+
# The network interface IDs that SageMaker AI created at the time of
|
17496
17506
|
# creating the instance.
|
17497
17507
|
# @return [String]
|
17498
17508
|
#
|
@@ -17518,10 +17528,10 @@ module Aws::SageMaker
|
|
17518
17528
|
# @return [String]
|
17519
17529
|
#
|
17520
17530
|
# @!attribute [rw] direct_internet_access
|
17521
|
-
# Describes whether SageMaker provides internet access to the
|
17522
|
-
# instance. If this value is set to *Disabled*, the notebook
|
17523
|
-
# does not have internet access, and cannot connect to
|
17524
|
-
# training and endpoint services.
|
17531
|
+
# Describes whether SageMaker AI provides internet access to the
|
17532
|
+
# notebook instance. If this value is set to *Disabled*, the notebook
|
17533
|
+
# instance does not have internet access, and cannot connect to
|
17534
|
+
# SageMaker AI training and endpoint services.
|
17525
17535
|
#
|
17526
17536
|
# For more information, see [Notebook Instances Are Internet-Enabled
|
17527
17537
|
# by Default][1].
|
@@ -17551,7 +17561,8 @@ module Aws::SageMaker
|
|
17551
17561
|
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
17552
17562
|
# Git repository. When you open a notebook instance, it opens in the
|
17553
17563
|
# directory that contains this repository. For more information, see
|
17554
|
-
# [Associating Git Repositories with SageMaker Notebook
|
17564
|
+
# [Associating Git Repositories with SageMaker AI Notebook
|
17565
|
+
# Instances][2].
|
17555
17566
|
#
|
17556
17567
|
#
|
17557
17568
|
#
|
@@ -17566,7 +17577,7 @@ module Aws::SageMaker
|
|
17566
17577
|
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
17567
17578
|
# repository. These repositories are cloned at the same level as the
|
17568
17579
|
# default repository of your notebook instance. For more information,
|
17569
|
-
# see [Associating Git Repositories with SageMaker Notebook
|
17580
|
+
# see [Associating Git Repositories with SageMaker AI Notebook
|
17570
17581
|
# Instances][2].
|
17571
17582
|
#
|
17572
17583
|
#
|
@@ -18370,8 +18381,8 @@ module Aws::SageMaker
|
|
18370
18381
|
end
|
18371
18382
|
|
18372
18383
|
# @!attribute [rw] studio_lifecycle_config_name
|
18373
|
-
# The name of the Amazon SageMaker Studio Lifecycle Configuration
|
18374
|
-
# describe.
|
18384
|
+
# The name of the Amazon SageMaker AI Studio Lifecycle Configuration
|
18385
|
+
# to describe.
|
18375
18386
|
# @return [String]
|
18376
18387
|
#
|
18377
18388
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeStudioLifecycleConfigRequest AWS API Documentation
|
@@ -18387,23 +18398,23 @@ module Aws::SageMaker
|
|
18387
18398
|
# @return [String]
|
18388
18399
|
#
|
18389
18400
|
# @!attribute [rw] studio_lifecycle_config_name
|
18390
|
-
# The name of the Amazon SageMaker Studio Lifecycle Configuration
|
18391
|
-
# is described.
|
18401
|
+
# The name of the Amazon SageMaker AI Studio Lifecycle Configuration
|
18402
|
+
# that is described.
|
18392
18403
|
# @return [String]
|
18393
18404
|
#
|
18394
18405
|
# @!attribute [rw] creation_time
|
18395
|
-
# The creation time of the Amazon SageMaker Studio Lifecycle
|
18406
|
+
# The creation time of the Amazon SageMaker AI Studio Lifecycle
|
18396
18407
|
# Configuration.
|
18397
18408
|
# @return [Time]
|
18398
18409
|
#
|
18399
18410
|
# @!attribute [rw] last_modified_time
|
18400
|
-
# This value is equivalent to CreationTime because Amazon SageMaker
|
18411
|
+
# This value is equivalent to CreationTime because Amazon SageMaker AI
|
18401
18412
|
# Studio Lifecycle Configurations are immutable.
|
18402
18413
|
# @return [Time]
|
18403
18414
|
#
|
18404
18415
|
# @!attribute [rw] studio_lifecycle_config_content
|
18405
|
-
# The content of your Amazon SageMaker Studio Lifecycle
|
18406
|
-
# script.
|
18416
|
+
# The content of your Amazon SageMaker AI Studio Lifecycle
|
18417
|
+
# Configuration script.
|
18407
18418
|
# @return [String]
|
18408
18419
|
#
|
18409
18420
|
# @!attribute [rw] studio_lifecycle_config_app_type
|
@@ -19868,8 +19879,8 @@ module Aws::SageMaker
|
|
19868
19879
|
# @return [Types::RStudioServerProDomainSettings]
|
19869
19880
|
#
|
19870
19881
|
# @!attribute [rw] execution_role_identity_config
|
19871
|
-
# The configuration for attaching a SageMaker user profile name to
|
19872
|
-
# execution role as a [sts:SourceIdentity key][1].
|
19882
|
+
# The configuration for attaching a SageMaker AI user profile name to
|
19883
|
+
# the execution role as a [sts:SourceIdentity key][1].
|
19873
19884
|
#
|
19874
19885
|
#
|
19875
19886
|
#
|
@@ -19908,10 +19919,10 @@ module Aws::SageMaker
|
|
19908
19919
|
# @return [Types::RStudioServerProDomainSettingsForUpdate]
|
19909
19920
|
#
|
19910
19921
|
# @!attribute [rw] execution_role_identity_config
|
19911
|
-
# The configuration for attaching a SageMaker user profile name to
|
19912
|
-
# execution role as a [sts:SourceIdentity key][1]. This
|
19913
|
-
# can only be modified if there are no apps in the
|
19914
|
-
# `Pending` state.
|
19922
|
+
# The configuration for attaching a SageMaker AI user profile name to
|
19923
|
+
# the execution role as a [sts:SourceIdentity key][1]. This
|
19924
|
+
# configuration can only be modified if there are no apps in the
|
19925
|
+
# `InService` or `Pending` state.
|
19915
19926
|
#
|
19916
19927
|
#
|
19917
19928
|
#
|
@@ -20103,8 +20114,8 @@ module Aws::SageMaker
|
|
20103
20114
|
end
|
20104
20115
|
|
20105
20116
|
# A file system, created by you in Amazon EFS, that you assign to a user
|
20106
|
-
# profile or space for an Amazon SageMaker Domain. Permitted users
|
20107
|
-
# access this file system in Amazon SageMaker Studio.
|
20117
|
+
# profile or space for an Amazon SageMaker AI Domain. Permitted users
|
20118
|
+
# can access this file system in Amazon SageMaker AI Studio.
|
20108
20119
|
#
|
20109
20120
|
# @!attribute [rw] file_system_id
|
20110
20121
|
# The ID of your Amazon EFS file system.
|
@@ -20119,7 +20130,7 @@ module Aws::SageMaker
|
|
20119
20130
|
end
|
20120
20131
|
|
20121
20132
|
# The settings for assigning a custom Amazon EFS file system to a user
|
20122
|
-
# profile or space for an Amazon SageMaker Domain.
|
20133
|
+
# profile or space for an Amazon SageMaker AI Domain.
|
20123
20134
|
#
|
20124
20135
|
# @!attribute [rw] file_system_id
|
20125
20136
|
# The ID of your Amazon EFS file system.
|
@@ -20127,8 +20138,8 @@ module Aws::SageMaker
|
|
20127
20138
|
#
|
20128
20139
|
# @!attribute [rw] file_system_path
|
20129
20140
|
# The path to the file system directory that is accessible in Amazon
|
20130
|
-
# SageMaker Studio. Permitted users can access only this directory
|
20131
|
-
# below.
|
20141
|
+
# SageMaker AI Studio. Permitted users can access only this directory
|
20142
|
+
# and below.
|
20132
20143
|
# @return [String]
|
20133
20144
|
#
|
20134
20145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EFSFileSystemConfig AWS API Documentation
|
@@ -21757,7 +21768,7 @@ module Aws::SageMaker
|
|
21757
21768
|
end
|
21758
21769
|
|
21759
21770
|
# The Amazon Elastic File System storage configuration for a SageMaker
|
21760
|
-
# image.
|
21771
|
+
# AI image.
|
21761
21772
|
#
|
21762
21773
|
# @!attribute [rw] mount_path
|
21763
21774
|
# The path within the image to mount the user's EFS home directory.
|
@@ -25056,9 +25067,10 @@ module Aws::SageMaker
|
|
25056
25067
|
include Aws::Structure
|
25057
25068
|
end
|
25058
25069
|
|
25059
|
-
# A SageMaker image. A SageMaker image represents a set of
|
25060
|
-
# images that are derived from a common base container image.
|
25061
|
-
# these container images is represented by a SageMaker
|
25070
|
+
# A SageMaker AI image. A SageMaker AI image represents a set of
|
25071
|
+
# container images that are derived from a common base container image.
|
25072
|
+
# Each of these container images is represented by a SageMaker AI
|
25073
|
+
# `ImageVersion`.
|
25062
25074
|
#
|
25063
25075
|
# @!attribute [rw] creation_time
|
25064
25076
|
# When the image was created.
|
@@ -25154,7 +25166,7 @@ module Aws::SageMaker
|
|
25154
25166
|
include Aws::Structure
|
25155
25167
|
end
|
25156
25168
|
|
25157
|
-
# A version of a SageMaker `Image`. A version represents an existing
|
25169
|
+
# A version of a SageMaker AI `Image`. A version represents an existing
|
25158
25170
|
# container image.
|
25159
25171
|
#
|
25160
25172
|
# @!attribute [rw] creation_time
|
@@ -25427,8 +25439,8 @@ module Aws::SageMaker
|
|
25427
25439
|
# including the model, container, and compute resources.
|
25428
25440
|
#
|
25429
25441
|
# @!attribute [rw] model_name
|
25430
|
-
# The name of an existing SageMaker model object in your account
|
25431
|
-
# you want to deploy with the inference component.
|
25442
|
+
# The name of an existing SageMaker AI model object in your account
|
25443
|
+
# that you want to deploy with the inference component.
|
25432
25444
|
# @return [String]
|
25433
25445
|
#
|
25434
25446
|
# @!attribute [rw] container
|
@@ -25488,7 +25500,7 @@ module Aws::SageMaker
|
|
25488
25500
|
# component.
|
25489
25501
|
#
|
25490
25502
|
# @!attribute [rw] model_name
|
25491
|
-
# The name of the SageMaker model object that is deployed with the
|
25503
|
+
# The name of the SageMaker AI model object that is deployed with the
|
25492
25504
|
# inference component.
|
25493
25505
|
# @return [String]
|
25494
25506
|
#
|
@@ -25638,8 +25650,8 @@ module Aws::SageMaker
|
|
25638
25650
|
#
|
25639
25651
|
# @!attribute [rw] content_type
|
25640
25652
|
# Configuration specifying how to treat different headers. If no
|
25641
|
-
# headers are specified Amazon SageMaker will by default base64
|
25642
|
-
# when capturing the data.
|
25653
|
+
# headers are specified Amazon SageMaker AI will by default base64
|
25654
|
+
# encode when capturing the data.
|
25643
25655
|
# @return [Types::CaptureContentTypeHeader]
|
25644
25656
|
#
|
25645
25657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceExperimentDataStorageConfig AWS API Documentation
|
@@ -26329,13 +26341,13 @@ module Aws::SageMaker
|
|
26329
26341
|
include Aws::Structure
|
26330
26342
|
end
|
26331
26343
|
|
26332
|
-
# The configuration for the file system and kernels in a SageMaker
|
26333
|
-
# running as a JupyterLab app. The `FileSystemConfig` object is
|
26334
|
-
# supported.
|
26344
|
+
# The configuration for the file system and kernels in a SageMaker AI
|
26345
|
+
# image running as a JupyterLab app. The `FileSystemConfig` object is
|
26346
|
+
# not supported.
|
26335
26347
|
#
|
26336
26348
|
# @!attribute [rw] file_system_config
|
26337
26349
|
# The Amazon Elastic File System storage configuration for a SageMaker
|
26338
|
-
# image.
|
26350
|
+
# AI image.
|
26339
26351
|
# @return [Types::FileSystemConfig]
|
26340
26352
|
#
|
26341
26353
|
# @!attribute [rw] container_config
|
@@ -26354,7 +26366,7 @@ module Aws::SageMaker
|
|
26354
26366
|
# The settings for the JupyterLab application.
|
26355
26367
|
#
|
26356
26368
|
# @!attribute [rw] default_resource_spec
|
26357
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
26369
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
26358
26370
|
# version, and the instance type that the version runs on.
|
26359
26371
|
# @return [Types::ResourceSpec]
|
26360
26372
|
#
|
@@ -26411,7 +26423,7 @@ module Aws::SageMaker
|
|
26411
26423
|
#
|
26412
26424
|
# @!attribute [rw] default_resource_spec
|
26413
26425
|
# The default instance type and the Amazon Resource Name (ARN) of the
|
26414
|
-
# default SageMaker image used by the JupyterServer app. If you use
|
26426
|
+
# default SageMaker AI image used by the JupyterServer app. If you use
|
26415
26427
|
# the `LifecycleConfigArns` parameter, then this parameter is also
|
26416
26428
|
# required.
|
26417
26429
|
# @return [Types::ResourceSpec]
|
@@ -26428,8 +26440,8 @@ module Aws::SageMaker
|
|
26428
26440
|
# @return [Array<String>]
|
26429
26441
|
#
|
26430
26442
|
# @!attribute [rw] code_repositories
|
26431
|
-
# A list of Git repositories that SageMaker automatically displays
|
26432
|
-
# users for cloning in the JupyterServer application.
|
26443
|
+
# A list of Git repositories that SageMaker AI automatically displays
|
26444
|
+
# to users for cloning in the JupyterServer application.
|
26433
26445
|
# @return [Array<Types::CodeRepository>]
|
26434
26446
|
#
|
26435
26447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterServerAppSettings AWS API Documentation
|
@@ -26462,9 +26474,9 @@ module Aws::SageMaker
|
|
26462
26474
|
#
|
26463
26475
|
# @!attribute [rw] default_resource_spec
|
26464
26476
|
# The default instance type and the Amazon Resource Name (ARN) of the
|
26465
|
-
# default SageMaker image used by the KernelGateway app.
|
26477
|
+
# default SageMaker AI image used by the KernelGateway app.
|
26466
26478
|
#
|
26467
|
-
# <note markdown="1"> The Amazon SageMaker Studio UI does not use the default instance
|
26479
|
+
# <note markdown="1"> The Amazon SageMaker AI Studio UI does not use the default instance
|
26468
26480
|
# type value set here. The default instance type set here is used when
|
26469
26481
|
# Apps are created using the CLI or CloudFormation and the instance
|
26470
26482
|
# type parameter value is not passed.
|
@@ -26473,7 +26485,7 @@ module Aws::SageMaker
|
|
26473
26485
|
# @return [Types::ResourceSpec]
|
26474
26486
|
#
|
26475
26487
|
# @!attribute [rw] custom_images
|
26476
|
-
# A list of custom SageMaker images that are configured to run as a
|
26488
|
+
# A list of custom SageMaker AI images that are configured to run as a
|
26477
26489
|
# KernelGateway app.
|
26478
26490
|
# @return [Array<Types::CustomImage>]
|
26479
26491
|
#
|
@@ -26497,8 +26509,8 @@ module Aws::SageMaker
|
|
26497
26509
|
include Aws::Structure
|
26498
26510
|
end
|
26499
26511
|
|
26500
|
-
# The configuration for the file system and kernels in a SageMaker
|
26501
|
-
# running as a KernelGateway app.
|
26512
|
+
# The configuration for the file system and kernels in a SageMaker AI
|
26513
|
+
# image running as a KernelGateway app.
|
26502
26514
|
#
|
26503
26515
|
# @!attribute [rw] kernel_specs
|
26504
26516
|
# The specification of the Jupyter kernels in the image.
|
@@ -26506,7 +26518,7 @@ module Aws::SageMaker
|
|
26506
26518
|
#
|
26507
26519
|
# @!attribute [rw] file_system_config
|
26508
26520
|
# The Amazon Elastic File System storage configuration for a SageMaker
|
26509
|
-
# image.
|
26521
|
+
# AI image.
|
26510
26522
|
# @return [Types::FileSystemConfig]
|
26511
26523
|
#
|
26512
26524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/KernelGatewayImageConfig AWS API Documentation
|
@@ -27294,7 +27306,7 @@ module Aws::SageMaker
|
|
27294
27306
|
end
|
27295
27307
|
|
27296
27308
|
# @!attribute [rw] sage_maker_image_version_aliases
|
27297
|
-
# A list of SageMaker image version aliases.
|
27309
|
+
# A list of SageMaker AI image version aliases.
|
27298
27310
|
# @return [Array<String>]
|
27299
27311
|
#
|
27300
27312
|
# @!attribute [rw] next_token
|
@@ -28219,7 +28231,7 @@ module Aws::SageMaker
|
|
28219
28231
|
# @return [Array<Types::CompilationJobSummary>]
|
28220
28232
|
#
|
28221
28233
|
# @!attribute [rw] next_token
|
28222
|
-
# If the response is truncated, Amazon SageMaker returns this
|
28234
|
+
# If the response is truncated, Amazon SageMaker AI returns this
|
28223
28235
|
# `NextToken`. To retrieve the next set of model compilation jobs, use
|
28224
28236
|
# this token in the next request.
|
28225
28237
|
# @return [String]
|
@@ -30961,8 +30973,8 @@ module Aws::SageMaker
|
|
30961
30973
|
# @return [Array<Types::MonitoringJobDefinitionSummary>]
|
30962
30974
|
#
|
30963
30975
|
# @!attribute [rw] next_token
|
30964
|
-
# If the response is truncated, Amazon SageMaker returns this
|
30965
|
-
# To retrieve the next set of model quality monitoring job
|
30976
|
+
# If the response is truncated, Amazon SageMaker AI returns this
|
30977
|
+
# token. To retrieve the next set of model quality monitoring job
|
30966
30978
|
# definitions, use it in the next request.
|
30967
30979
|
# @return [String]
|
30968
30980
|
#
|
@@ -31430,8 +31442,8 @@ module Aws::SageMaker
|
|
31430
31442
|
end
|
31431
31443
|
|
31432
31444
|
# @!attribute [rw] next_token
|
31433
|
-
# If the response is truncated, SageMaker returns this token. To
|
31434
|
-
# the next set of lifecycle configurations, use it in the next
|
31445
|
+
# If the response is truncated, SageMaker AI returns this token. To
|
31446
|
+
# get the next set of lifecycle configurations, use it in the next
|
31435
31447
|
# request.
|
31436
31448
|
# @return [String]
|
31437
31449
|
#
|
@@ -31545,8 +31557,8 @@ module Aws::SageMaker
|
|
31545
31557
|
|
31546
31558
|
# @!attribute [rw] next_token
|
31547
31559
|
# If the response to the previous `ListNotebookInstances` request was
|
31548
|
-
# truncated, SageMaker returns this token. To retrieve the next set
|
31549
|
-
# notebook instances, use the token in the next request.
|
31560
|
+
# truncated, SageMaker AI returns this token. To retrieve the next set
|
31561
|
+
# of notebook instances, use the token in the next request.
|
31550
31562
|
# @return [String]
|
31551
31563
|
#
|
31552
31564
|
# @!attribute [rw] notebook_instances
|
@@ -35563,8 +35575,8 @@ module Aws::SageMaker
|
|
35563
35575
|
# @return [Integer]
|
35564
35576
|
#
|
35565
35577
|
# @!attribute [rw] volume_kms_key_id
|
35566
|
-
# The Key Management Service (KMS) key that Amazon SageMaker uses
|
35567
|
-
# encrypt data on the storage volume attached to the ML compute
|
35578
|
+
# The Key Management Service (KMS) key that Amazon SageMaker AI uses
|
35579
|
+
# to encrypt data on the storage volume attached to the ML compute
|
35568
35580
|
# instance(s) that run the model monitoring job.
|
35569
35581
|
# @return [String]
|
35570
35582
|
#
|
@@ -35733,7 +35745,7 @@ module Aws::SageMaker
|
|
35733
35745
|
#
|
35734
35746
|
# @!attribute [rw] monitoring_inputs
|
35735
35747
|
# The array of inputs for the monitoring job. Currently we support
|
35736
|
-
# monitoring an Amazon SageMaker Endpoint.
|
35748
|
+
# monitoring an Amazon SageMaker AI Endpoint.
|
35737
35749
|
# @return [Array<Types::MonitoringInput>]
|
35738
35750
|
#
|
35739
35751
|
# @!attribute [rw] monitoring_output_config
|
@@ -35767,7 +35779,7 @@ module Aws::SageMaker
|
|
35767
35779
|
#
|
35768
35780
|
# @!attribute [rw] role_arn
|
35769
35781
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
35770
|
-
# can assume to perform tasks on your behalf.
|
35782
|
+
# AI can assume to perform tasks on your behalf.
|
35771
35783
|
# @return [String]
|
35772
35784
|
#
|
35773
35785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringJobDefinition AWS API Documentation
|
@@ -35888,8 +35900,8 @@ module Aws::SageMaker
|
|
35888
35900
|
# @return [Array<Types::MonitoringOutput>]
|
35889
35901
|
#
|
35890
35902
|
# @!attribute [rw] kms_key_id
|
35891
|
-
# The Key Management Service (KMS) key that Amazon SageMaker uses
|
35892
|
-
# encrypt the model artifacts at rest using Amazon S3 server-side
|
35903
|
+
# The Key Management Service (KMS) key that Amazon SageMaker AI uses
|
35904
|
+
# to encrypt the model artifacts at rest using Amazon S3 server-side
|
35893
35905
|
# encryption.
|
35894
35906
|
# @return [String]
|
35895
35907
|
#
|
@@ -35931,12 +35943,12 @@ module Aws::SageMaker
|
|
35931
35943
|
#
|
35932
35944
|
# @!attribute [rw] s3_uri
|
35933
35945
|
# A URI that identifies the Amazon S3 storage location where Amazon
|
35934
|
-
# SageMaker saves the results of a monitoring job.
|
35946
|
+
# SageMaker AI saves the results of a monitoring job.
|
35935
35947
|
# @return [String]
|
35936
35948
|
#
|
35937
35949
|
# @!attribute [rw] local_path
|
35938
35950
|
# The local path to the Amazon S3 storage location where Amazon
|
35939
|
-
# SageMaker saves the results of a monitoring job. LocalPath is an
|
35951
|
+
# SageMaker AI saves the results of a monitoring job. LocalPath is an
|
35940
35952
|
# absolute path for the output data.
|
35941
35953
|
# @return [String]
|
35942
35954
|
#
|
@@ -36177,7 +36189,7 @@ module Aws::SageMaker
|
|
36177
36189
|
# The [VpcConfig][1] configuration object that specifies the VPC that
|
36178
36190
|
# you want the compilation jobs to connect to. For more information on
|
36179
36191
|
# controlling access to your Amazon S3 buckets used for compilation job,
|
36180
|
-
# see [Give Amazon SageMaker Compilation Jobs Access to Resources in
|
36192
|
+
# see [Give Amazon SageMaker AI Compilation Jobs Access to Resources in
|
36181
36193
|
# Your Amazon VPC][2].
|
36182
36194
|
#
|
36183
36195
|
#
|
@@ -36350,7 +36362,7 @@ module Aws::SageMaker
|
|
36350
36362
|
include Aws::Structure
|
36351
36363
|
end
|
36352
36364
|
|
36353
|
-
# Provides summary information for an SageMaker notebook instance.
|
36365
|
+
# Provides summary information for an SageMaker AI notebook instance.
|
36354
36366
|
#
|
36355
36367
|
# @!attribute [rw] notebook_instance_name
|
36356
36368
|
# The name of the notebook instance that you want a summary for.
|
@@ -36401,7 +36413,8 @@ module Aws::SageMaker
|
|
36401
36413
|
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
36402
36414
|
# Git repository. When you open a notebook instance, it opens in the
|
36403
36415
|
# directory that contains this repository. For more information, see
|
36404
|
-
# [Associating Git Repositories with SageMaker Notebook
|
36416
|
+
# [Associating Git Repositories with SageMaker AI Notebook
|
36417
|
+
# Instances][2].
|
36405
36418
|
#
|
36406
36419
|
#
|
36407
36420
|
#
|
@@ -36416,7 +36429,7 @@ module Aws::SageMaker
|
|
36416
36429
|
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
36417
36430
|
# repository. These repositories are cloned at the same level as the
|
36418
36431
|
# default repository of your notebook instance. For more information,
|
36419
|
-
# see [Associating Git Repositories with SageMaker Notebook
|
36432
|
+
# see [Associating Git Repositories with SageMaker AI Notebook
|
36420
36433
|
# Instances][2].
|
36421
36434
|
#
|
36422
36435
|
#
|
@@ -37065,7 +37078,7 @@ module Aws::SageMaker
|
|
37065
37078
|
# recommended to use for particular TargetPlatform.
|
37066
37079
|
#
|
37067
37080
|
# @!attribute [rw] s3_output_location
|
37068
|
-
# Identifies the S3 bucket where you want Amazon SageMaker to store
|
37081
|
+
# Identifies the S3 bucket where you want Amazon SageMaker AI to store
|
37069
37082
|
# the model artifacts. For example,
|
37070
37083
|
# `s3://bucket-name/key-name-prefix`.
|
37071
37084
|
# @return [String]
|
@@ -37210,9 +37223,9 @@ module Aws::SageMaker
|
|
37210
37223
|
#
|
37211
37224
|
# @!attribute [rw] kms_key_id
|
37212
37225
|
# The Amazon Web Services Key Management Service key (Amazon Web
|
37213
|
-
# Services KMS) that Amazon SageMaker uses to encrypt your output
|
37226
|
+
# Services KMS) that Amazon SageMaker AI uses to encrypt your output
|
37214
37227
|
# models with Amazon S3 server-side encryption after compilation job.
|
37215
|
-
# If you don't provide a KMS key ID, Amazon SageMaker uses the
|
37228
|
+
# If you don't provide a KMS key ID, Amazon SageMaker AI uses the
|
37216
37229
|
# default KMS key for Amazon S3 for your role's account. For more
|
37217
37230
|
# information, see [KMS-Managed Encryption Keys][1] in the *Amazon
|
37218
37231
|
# Simple Storage Service Developer Guide.*
|
@@ -40108,12 +40121,12 @@ module Aws::SageMaker
|
|
40108
40121
|
# A collection of settings that apply to an `RSessionGateway` app.
|
40109
40122
|
#
|
40110
40123
|
# @!attribute [rw] default_resource_spec
|
40111
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
40124
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
40112
40125
|
# version, and the instance type that the version runs on.
|
40113
40126
|
# @return [Types::ResourceSpec]
|
40114
40127
|
#
|
40115
40128
|
# @!attribute [rw] custom_images
|
40116
|
-
# A list of custom SageMaker images that are configured to run as a
|
40129
|
+
# A list of custom SageMaker AI images that are configured to run as a
|
40117
40130
|
# RSession app.
|
40118
40131
|
# @return [Array<Types::CustomImage>]
|
40119
40132
|
#
|
@@ -40167,7 +40180,7 @@ module Aws::SageMaker
|
|
40167
40180
|
# @return [String]
|
40168
40181
|
#
|
40169
40182
|
# @!attribute [rw] default_resource_spec
|
40170
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
40183
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
40171
40184
|
# version, and the instance type that the version runs on.
|
40172
40185
|
# @return [Types::ResourceSpec]
|
40173
40186
|
#
|
@@ -40190,7 +40203,7 @@ module Aws::SageMaker
|
|
40190
40203
|
# @return [String]
|
40191
40204
|
#
|
40192
40205
|
# @!attribute [rw] default_resource_spec
|
40193
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
40206
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
40194
40207
|
# version, and the instance type that the version runs on.
|
40195
40208
|
# @return [Types::ResourceSpec]
|
40196
40209
|
#
|
@@ -41410,11 +41423,11 @@ module Aws::SageMaker
|
|
41410
41423
|
include Aws::Structure
|
41411
41424
|
end
|
41412
41425
|
|
41413
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
41414
|
-
# and the instance type that the version runs on.
|
41426
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
41427
|
+
# version, and the instance type that the version runs on.
|
41415
41428
|
#
|
41416
41429
|
# @!attribute [rw] sage_maker_image_arn
|
41417
|
-
# The ARN of the SageMaker image that the image version belongs to.
|
41430
|
+
# The ARN of the SageMaker AI image that the image version belongs to.
|
41418
41431
|
# @return [String]
|
41419
41432
|
#
|
41420
41433
|
# @!attribute [rw] sage_maker_image_version_arn
|
@@ -41978,7 +41991,7 @@ module Aws::SageMaker
|
|
41978
41991
|
# requested time to run the execution.
|
41979
41992
|
#
|
41980
41993
|
# * We recommend that if you would like a daily schedule, you do not
|
41981
|
-
# provide this parameter. Amazon SageMaker will pick a time for
|
41994
|
+
# provide this parameter. Amazon SageMaker AI will pick a time for
|
41982
41995
|
# running every day.
|
41983
41996
|
#
|
41984
41997
|
# </note>
|
@@ -42810,8 +42823,8 @@ module Aws::SageMaker
|
|
42810
42823
|
include Aws::Structure
|
42811
42824
|
end
|
42812
42825
|
|
42813
|
-
# Specifies options for sharing Amazon SageMaker Studio notebooks.
|
42814
|
-
# settings are specified as part of `DefaultUserSettings` when the
|
42826
|
+
# Specifies options for sharing Amazon SageMaker AI Studio notebooks.
|
42827
|
+
# These settings are specified as part of `DefaultUserSettings` when the
|
42815
42828
|
# `CreateDomain` API is called, and as part of `UserSettings` when the
|
42816
42829
|
# `CreateUserProfile` API is called. When `SharingSettings` is not
|
42817
42830
|
# specified, notebook sharing isn't allowed.
|
@@ -42974,7 +42987,7 @@ module Aws::SageMaker
|
|
42974
42987
|
# The application settings for a Code Editor space.
|
42975
42988
|
#
|
42976
42989
|
# @!attribute [rw] default_resource_spec
|
42977
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
42990
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
42978
42991
|
# version, and the instance type that the version runs on.
|
42979
42992
|
# @return [Types::ResourceSpec]
|
42980
42993
|
#
|
@@ -43064,7 +43077,7 @@ module Aws::SageMaker
|
|
43064
43077
|
# The settings for the JupyterLab application within a space.
|
43065
43078
|
#
|
43066
43079
|
# @!attribute [rw] default_resource_spec
|
43067
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
43080
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
43068
43081
|
# version, and the instance type that the version runs on.
|
43069
43082
|
# @return [Types::ResourceSpec]
|
43070
43083
|
#
|
@@ -43108,6 +43121,13 @@ module Aws::SageMaker
|
|
43108
43121
|
#
|
43109
43122
|
# @!attribute [rw] app_type
|
43110
43123
|
# The type of app created within the space.
|
43124
|
+
#
|
43125
|
+
# If using the [ UpdateSpace][1] API, you can't change the app type
|
43126
|
+
# of your space by specifying a different value for this field.
|
43127
|
+
#
|
43128
|
+
#
|
43129
|
+
#
|
43130
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateSpace.html
|
43111
43131
|
# @return [String]
|
43112
43132
|
#
|
43113
43133
|
# @!attribute [rw] space_storage_settings
|
@@ -43116,8 +43136,8 @@ module Aws::SageMaker
|
|
43116
43136
|
#
|
43117
43137
|
# @!attribute [rw] custom_file_systems
|
43118
43138
|
# A file system, created by you, that you assign to a space for an
|
43119
|
-
# Amazon SageMaker Domain. Permitted users can access this file
|
43120
|
-
# in Amazon SageMaker Studio.
|
43139
|
+
# Amazon SageMaker AI Domain. Permitted users can access this file
|
43140
|
+
# system in Amazon SageMaker AI Studio.
|
43121
43141
|
# @return [Array<Types::CustomFileSystem>]
|
43122
43142
|
#
|
43123
43143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSettings AWS API Documentation
|
@@ -43718,23 +43738,23 @@ module Aws::SageMaker
|
|
43718
43738
|
include Aws::Structure
|
43719
43739
|
end
|
43720
43740
|
|
43721
|
-
# Details of the Amazon SageMaker Studio Lifecycle Configuration.
|
43741
|
+
# Details of the Amazon SageMaker AI Studio Lifecycle Configuration.
|
43722
43742
|
#
|
43723
43743
|
# @!attribute [rw] studio_lifecycle_config_arn
|
43724
43744
|
# The Amazon Resource Name (ARN) of the Lifecycle Configuration.
|
43725
43745
|
# @return [String]
|
43726
43746
|
#
|
43727
43747
|
# @!attribute [rw] studio_lifecycle_config_name
|
43728
|
-
# The name of the Amazon SageMaker Studio Lifecycle Configuration.
|
43748
|
+
# The name of the Amazon SageMaker AI Studio Lifecycle Configuration.
|
43729
43749
|
# @return [String]
|
43730
43750
|
#
|
43731
43751
|
# @!attribute [rw] creation_time
|
43732
|
-
# The creation time of the Amazon SageMaker Studio Lifecycle
|
43752
|
+
# The creation time of the Amazon SageMaker AI Studio Lifecycle
|
43733
43753
|
# Configuration.
|
43734
43754
|
# @return [Time]
|
43735
43755
|
#
|
43736
43756
|
# @!attribute [rw] last_modified_time
|
43737
|
-
# This value is equivalent to CreationTime because Amazon SageMaker
|
43757
|
+
# This value is equivalent to CreationTime because Amazon SageMaker AI
|
43738
43758
|
# Studio Lifecycle Configurations are immutable.
|
43739
43759
|
# @return [Time]
|
43740
43760
|
#
|
@@ -44129,7 +44149,7 @@ module Aws::SageMaker
|
|
44129
44149
|
#
|
44130
44150
|
# @!attribute [rw] default_resource_spec
|
44131
44151
|
# The default instance type and the Amazon Resource Name (ARN) of the
|
44132
|
-
# SageMaker image created on the instance.
|
44152
|
+
# SageMaker AI image created on the instance.
|
44133
44153
|
# @return [Types::ResourceSpec]
|
44134
44154
|
#
|
44135
44155
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TensorBoardAppSettings AWS API Documentation
|
@@ -47510,7 +47530,7 @@ module Aws::SageMaker
|
|
47510
47530
|
# Specifies the VPC used for non-EFS traffic.
|
47511
47531
|
#
|
47512
47532
|
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
47513
|
-
# Amazon SageMaker, which allows direct internet access.
|
47533
|
+
# Amazon SageMaker AI, which allows direct internet access.
|
47514
47534
|
#
|
47515
47535
|
# * `VpcOnly` - All Studio traffic is through the specified VPC and
|
47516
47536
|
# subnets.
|
@@ -47832,7 +47852,7 @@ module Aws::SageMaker
|
|
47832
47852
|
# @return [String]
|
47833
47853
|
#
|
47834
47854
|
# @!attribute [rw] role_arn
|
47835
|
-
# The new ARN for the IAM role that enables Amazon SageMaker to
|
47855
|
+
# The new ARN for the IAM role that enables Amazon SageMaker AI to
|
47836
47856
|
# perform tasks on your behalf.
|
47837
47857
|
# @return [String]
|
47838
47858
|
#
|
@@ -47897,16 +47917,16 @@ module Aws::SageMaker
|
|
47897
47917
|
# @return [String]
|
47898
47918
|
#
|
47899
47919
|
# @!attribute [rw] job_type
|
47900
|
-
# Indicates SageMaker job type compatibility.
|
47920
|
+
# Indicates SageMaker AI job type compatibility.
|
47901
47921
|
#
|
47902
|
-
# * `TRAINING`: The image version is compatible with SageMaker
|
47922
|
+
# * `TRAINING`: The image version is compatible with SageMaker AI
|
47903
47923
|
# training jobs.
|
47904
47924
|
#
|
47905
|
-
# * `INFERENCE`: The image version is compatible with SageMaker
|
47925
|
+
# * `INFERENCE`: The image version is compatible with SageMaker AI
|
47906
47926
|
# inference jobs.
|
47907
47927
|
#
|
47908
47928
|
# * `NOTEBOOK_KERNEL`: The image version is compatible with SageMaker
|
47909
|
-
# notebook kernels.
|
47929
|
+
# AI notebook kernels.
|
47910
47930
|
# @return [String]
|
47911
47931
|
#
|
47912
47932
|
# @!attribute [rw] ml_framework
|
@@ -48385,11 +48405,11 @@ module Aws::SageMaker
|
|
48385
48405
|
# @return [String]
|
48386
48406
|
#
|
48387
48407
|
# @!attribute [rw] role_arn
|
48388
|
-
# The Amazon Resource Name (ARN) of the IAM role that SageMaker can
|
48408
|
+
# The Amazon Resource Name (ARN) of the IAM role that SageMaker AI can
|
48389
48409
|
# assume to access the notebook instance. For more information, see
|
48390
|
-
# [SageMaker Roles][1].
|
48410
|
+
# [SageMaker AI Roles][1].
|
48391
48411
|
#
|
48392
|
-
# <note markdown="1"> To be able to pass this role to SageMaker, the caller of this API
|
48412
|
+
# <note markdown="1"> To be able to pass this role to SageMaker AI, the caller of this API
|
48393
48413
|
# must have the `iam:PassRole` permission.
|
48394
48414
|
#
|
48395
48415
|
# </note>
|
@@ -48420,7 +48440,7 @@ module Aws::SageMaker
|
|
48420
48440
|
# @!attribute [rw] volume_size_in_gb
|
48421
48441
|
# The size, in GB, of the ML storage volume to attach to the notebook
|
48422
48442
|
# instance. The default value is 5 GB. ML storage volumes are
|
48423
|
-
# encrypted, so SageMaker can't determine the amount of available
|
48443
|
+
# encrypted, so SageMaker AI can't determine the amount of available
|
48424
48444
|
# free space on the volume. Because of this, you can increase the
|
48425
48445
|
# volume size when you update a notebook instance, but you can't
|
48426
48446
|
# decrease the volume size. If you want to decrease the size of the ML
|
@@ -48435,7 +48455,8 @@ module Aws::SageMaker
|
|
48435
48455
|
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
48436
48456
|
# Git repository. When you open a notebook instance, it opens in the
|
48437
48457
|
# directory that contains this repository. For more information, see
|
48438
|
-
# [Associating Git Repositories with SageMaker Notebook
|
48458
|
+
# [Associating Git Repositories with SageMaker AI Notebook
|
48459
|
+
# Instances][2].
|
48439
48460
|
#
|
48440
48461
|
#
|
48441
48462
|
#
|
@@ -48450,7 +48471,7 @@ module Aws::SageMaker
|
|
48450
48471
|
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
48451
48472
|
# repository. These repositories are cloned at the same level as the
|
48452
48473
|
# default repository of your notebook instance. For more information,
|
48453
|
-
# see [Associating Git Repositories with SageMaker Notebook
|
48474
|
+
# see [Associating Git Repositories with SageMaker AI Notebook
|
48454
48475
|
# Instances][2].
|
48455
48476
|
#
|
48456
48477
|
#
|
@@ -49251,8 +49272,8 @@ module Aws::SageMaker
|
|
49251
49272
|
# set to `VpcOnly`, unless specified as part of the
|
49252
49273
|
# `DefaultUserSettings` for the domain.
|
49253
49274
|
#
|
49254
|
-
# Amazon SageMaker adds a security group to allow NFS traffic from
|
49255
|
-
# Amazon SageMaker Studio. Therefore, the number of security groups
|
49275
|
+
# Amazon SageMaker AI adds a security group to allow NFS traffic from
|
49276
|
+
# Amazon SageMaker AI Studio. Therefore, the number of security groups
|
49256
49277
|
# that you can specify is one less than the maximum number shown.
|
49257
49278
|
#
|
49258
49279
|
# SageMaker applies these settings only to private spaces that the
|
@@ -49261,7 +49282,7 @@ module Aws::SageMaker
|
|
49261
49282
|
# @return [Array<String>]
|
49262
49283
|
#
|
49263
49284
|
# @!attribute [rw] sharing_settings
|
49264
|
-
# Specifies options for sharing Amazon SageMaker Studio notebooks.
|
49285
|
+
# Specifies options for sharing Amazon SageMaker AI Studio notebooks.
|
49265
49286
|
# @return [Types::SharingSettings]
|
49266
49287
|
#
|
49267
49288
|
# @!attribute [rw] jupyter_server_app_settings
|
@@ -49344,7 +49365,7 @@ module Aws::SageMaker
|
|
49344
49365
|
#
|
49345
49366
|
# @!attribute [rw] custom_file_system_configs
|
49346
49367
|
# The settings for assigning a custom file system to a user profile.
|
49347
|
-
# Permitted users can access this file system in Amazon SageMaker
|
49368
|
+
# Permitted users can access this file system in Amazon SageMaker AI
|
49348
49369
|
# Studio.
|
49349
49370
|
#
|
49350
49371
|
# SageMaker applies these settings only to private spaces that the
|