aws-sdk-sagemaker 1.277.0 → 1.279.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +263 -190
- data/lib/aws-sdk-sagemaker/client_api.rb +5 -0
- data/lib/aws-sdk-sagemaker/types.rb +254 -208
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +69 -37
- data/sig/types.rbs +14 -9
- metadata +2 -2
@@ -263,12 +263,17 @@ module Aws::SageMaker
|
|
263
263
|
# is not compressed.
|
264
264
|
# @return [String]
|
265
265
|
#
|
266
|
+
# @!attribute [rw] etag
|
267
|
+
# The ETag associated with S3 URI.
|
268
|
+
# @return [String]
|
269
|
+
#
|
266
270
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AdditionalS3DataSource AWS API Documentation
|
267
271
|
#
|
268
272
|
class AdditionalS3DataSource < Struct.new(
|
269
273
|
:s3_data_type,
|
270
274
|
:s3_uri,
|
271
|
-
:compression_type
|
275
|
+
:compression_type,
|
276
|
+
:etag)
|
272
277
|
SENSITIVE = []
|
273
278
|
include Aws::Structure
|
274
279
|
end
|
@@ -310,6 +315,13 @@ module Aws::SageMaker
|
|
310
315
|
# Specifies the training algorithm to use in a [CreateTrainingJob][1]
|
311
316
|
# request.
|
312
317
|
#
|
318
|
+
# SageMaker uses its own SageMaker account credentials to pull and
|
319
|
+
# access built-in algorithms so built-in algorithms are universally
|
320
|
+
# accessible across all Amazon Web Services accounts. As a result,
|
321
|
+
# built-in algorithms have standard, unrestricted access. You cannot
|
322
|
+
# restrict built-in algorithms using IAM roles. Use custom algorithms if
|
323
|
+
# you require specific access controls.
|
324
|
+
#
|
313
325
|
# For more information about algorithms provided by SageMaker, see
|
314
326
|
# [Algorithms][2]. For information about using your own algorithms, see
|
315
327
|
# [Using Your Own Algorithms with Amazon SageMaker][3].
|
@@ -1297,7 +1309,7 @@ module Aws::SageMaker
|
|
1297
1309
|
include Aws::Structure
|
1298
1310
|
end
|
1299
1311
|
|
1300
|
-
# Details about an Amazon SageMaker app.
|
1312
|
+
# Details about an Amazon SageMaker AI app.
|
1301
1313
|
#
|
1302
1314
|
# @!attribute [rw] domain_id
|
1303
1315
|
# The domain ID.
|
@@ -1328,7 +1340,7 @@ module Aws::SageMaker
|
|
1328
1340
|
# @return [Time]
|
1329
1341
|
#
|
1330
1342
|
# @!attribute [rw] resource_spec
|
1331
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
1343
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
1332
1344
|
# version, and the instance type that the version runs on.
|
1333
1345
|
# @return [Types::ResourceSpec]
|
1334
1346
|
#
|
@@ -1347,7 +1359,7 @@ module Aws::SageMaker
|
|
1347
1359
|
include Aws::Structure
|
1348
1360
|
end
|
1349
1361
|
|
1350
|
-
# The configuration for running a SageMaker image as a KernelGateway
|
1362
|
+
# The configuration for running a SageMaker AI image as a KernelGateway
|
1351
1363
|
# app.
|
1352
1364
|
#
|
1353
1365
|
# @!attribute [rw] app_image_config_arn
|
@@ -1368,7 +1380,7 @@ module Aws::SageMaker
|
|
1368
1380
|
#
|
1369
1381
|
# @!attribute [rw] kernel_gateway_image_config
|
1370
1382
|
# The configuration for the file system and kernels in the SageMaker
|
1371
|
-
# image.
|
1383
|
+
# AI image.
|
1372
1384
|
# @return [Types::KernelGatewayImageConfig]
|
1373
1385
|
#
|
1374
1386
|
# @!attribute [rw] jupyter_lab_app_image_config
|
@@ -2720,7 +2732,7 @@ module Aws::SageMaker
|
|
2720
2732
|
# The data type.
|
2721
2733
|
#
|
2722
2734
|
# * If you choose `S3Prefix`, `S3Uri` identifies a key name prefix.
|
2723
|
-
# SageMaker uses all objects that match the specified key name
|
2735
|
+
# SageMaker AI uses all objects that match the specified key name
|
2724
2736
|
# prefix for model training.
|
2725
2737
|
#
|
2726
2738
|
# The `S3Prefix` should have the following format:
|
@@ -2729,7 +2741,7 @@ module Aws::SageMaker
|
|
2729
2741
|
#
|
2730
2742
|
# * If you choose `ManifestFile`, `S3Uri` identifies an object that is
|
2731
2743
|
# a manifest file containing a list of object keys that you want
|
2732
|
-
# SageMaker to use for model training.
|
2744
|
+
# SageMaker AI to use for model training.
|
2733
2745
|
#
|
2734
2746
|
# A `ManifestFile` should have the format shown below:
|
2735
2747
|
#
|
@@ -3506,16 +3518,16 @@ module Aws::SageMaker
|
|
3506
3518
|
end
|
3507
3519
|
|
3508
3520
|
# Configuration specifying how to treat different headers. If no headers
|
3509
|
-
# are specified Amazon SageMaker will by default base64 encode when
|
3521
|
+
# are specified Amazon SageMaker AI will by default base64 encode when
|
3510
3522
|
# capturing the data.
|
3511
3523
|
#
|
3512
3524
|
# @!attribute [rw] csv_content_types
|
3513
|
-
# The list of all content type headers that Amazon SageMaker will
|
3525
|
+
# The list of all content type headers that Amazon SageMaker AI will
|
3514
3526
|
# treat as CSV and capture accordingly.
|
3515
3527
|
# @return [Array<String>]
|
3516
3528
|
#
|
3517
3529
|
# @!attribute [rw] json_content_types
|
3518
|
-
# The list of all content type headers that SageMaker will treat as
|
3530
|
+
# The list of all content type headers that SageMaker AI will treat as
|
3519
3531
|
# JSON and capture accordingly.
|
3520
3532
|
# @return [Array<String>]
|
3521
3533
|
#
|
@@ -4722,7 +4734,7 @@ module Aws::SageMaker
|
|
4722
4734
|
#
|
4723
4735
|
# @!attribute [rw] file_system_config
|
4724
4736
|
# The Amazon Elastic File System storage configuration for a SageMaker
|
4725
|
-
# image.
|
4737
|
+
# AI image.
|
4726
4738
|
# @return [Types::FileSystemConfig]
|
4727
4739
|
#
|
4728
4740
|
# @!attribute [rw] container_config
|
@@ -4748,7 +4760,7 @@ module Aws::SageMaker
|
|
4748
4760
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/code-editor.html
|
4749
4761
|
#
|
4750
4762
|
# @!attribute [rw] default_resource_spec
|
4751
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
4763
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
4752
4764
|
# version, and the instance type that the version runs on.
|
4753
4765
|
# @return [Types::ResourceSpec]
|
4754
4766
|
#
|
@@ -4785,7 +4797,7 @@ module Aws::SageMaker
|
|
4785
4797
|
include Aws::Structure
|
4786
4798
|
end
|
4787
4799
|
|
4788
|
-
# A Git repository that SageMaker automatically displays to users for
|
4800
|
+
# A Git repository that SageMaker AI automatically displays to users for
|
4789
4801
|
# cloning in the JupyterServer application.
|
4790
4802
|
#
|
4791
4803
|
# @!attribute [rw] repository_url
|
@@ -5773,7 +5785,7 @@ module Aws::SageMaker
|
|
5773
5785
|
#
|
5774
5786
|
# @!attribute [rw] resource_spec
|
5775
5787
|
# The instance type and the Amazon Resource Name (ARN) of the
|
5776
|
-
# SageMaker image created on the instance.
|
5788
|
+
# SageMaker AI image created on the instance.
|
5777
5789
|
#
|
5778
5790
|
# <note markdown="1"> The value of `InstanceType` passed as part of the `ResourceSpec` in
|
5779
5791
|
# the `CreateApp` call overrides the value passed as part of the
|
@@ -6281,9 +6293,10 @@ module Aws::SageMaker
|
|
6281
6293
|
#
|
6282
6294
|
# @!attribute [rw] role_arn
|
6283
6295
|
# The Amazon Resource Name (ARN) of an IAM role that enables Amazon
|
6284
|
-
# SageMaker to perform tasks on your behalf.
|
6296
|
+
# SageMaker AI to perform tasks on your behalf.
|
6285
6297
|
#
|
6286
|
-
# During model compilation, Amazon SageMaker needs your permission
|
6298
|
+
# During model compilation, Amazon SageMaker AI needs your permission
|
6299
|
+
# to:
|
6287
6300
|
#
|
6288
6301
|
# * Read input data from an S3 bucket
|
6289
6302
|
#
|
@@ -6294,9 +6307,9 @@ module Aws::SageMaker
|
|
6294
6307
|
# * Publish metrics to Amazon CloudWatch
|
6295
6308
|
#
|
6296
6309
|
# 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]
|
6310
|
+
# this role to Amazon SageMaker AI, the caller of this API must have
|
6311
|
+
# the `iam:PassRole` permission. For more information, see [Amazon
|
6312
|
+
# SageMaker AI Roles.][1]
|
6300
6313
|
#
|
6301
6314
|
#
|
6302
6315
|
#
|
@@ -6335,7 +6348,7 @@ module Aws::SageMaker
|
|
6335
6348
|
#
|
6336
6349
|
# @!attribute [rw] stopping_condition
|
6337
6350
|
# Specifies a limit to how long a model compilation job can run. When
|
6338
|
-
# the job reaches the time limit, Amazon SageMaker ends the
|
6351
|
+
# the job reaches the time limit, Amazon SageMaker AI ends the
|
6339
6352
|
# compilation job. Use this API to cap model training costs.
|
6340
6353
|
# @return [Types::StoppingCondition]
|
6341
6354
|
#
|
@@ -6367,7 +6380,7 @@ module Aws::SageMaker
|
|
6367
6380
|
|
6368
6381
|
# @!attribute [rw] compilation_job_arn
|
6369
6382
|
# If the action is successful, the service sends back an HTTP 200
|
6370
|
-
# response. Amazon SageMaker returns the following data in JSON
|
6383
|
+
# response. Amazon SageMaker AI returns the following data in JSON
|
6371
6384
|
# format:
|
6372
6385
|
#
|
6373
6386
|
# * `CompilationJobArn`: The Amazon Resource Name (ARN) of the
|
@@ -6529,7 +6542,7 @@ module Aws::SageMaker
|
|
6529
6542
|
#
|
6530
6543
|
# @!attribute [rw] role_arn
|
6531
6544
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
6532
|
-
# can assume to perform tasks on your behalf.
|
6545
|
+
# AI can assume to perform tasks on your behalf.
|
6533
6546
|
# @return [String]
|
6534
6547
|
#
|
6535
6548
|
# @!attribute [rw] stopping_condition
|
@@ -6666,7 +6679,7 @@ module Aws::SageMaker
|
|
6666
6679
|
# `PublicInternetOnly`.
|
6667
6680
|
#
|
6668
6681
|
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
6669
|
-
# Amazon SageMaker, which allows direct internet access
|
6682
|
+
# Amazon SageMaker AI, which allows direct internet access
|
6670
6683
|
#
|
6671
6684
|
# * `VpcOnly` - All traffic is through the specified VPC and subnets
|
6672
6685
|
# @return [String]
|
@@ -6676,7 +6689,7 @@ module Aws::SageMaker
|
|
6676
6689
|
# @return [String]
|
6677
6690
|
#
|
6678
6691
|
# @!attribute [rw] kms_key_id
|
6679
|
-
# SageMaker uses Amazon Web Services KMS to encrypt EFS and EBS
|
6692
|
+
# SageMaker AI uses Amazon Web Services KMS to encrypt EFS and EBS
|
6680
6693
|
# volumes attached to the domain with an Amazon Web Services managed
|
6681
6694
|
# key by default. For more control, specify a customer managed key.
|
6682
6695
|
# @return [String]
|
@@ -6866,7 +6879,7 @@ module Aws::SageMaker
|
|
6866
6879
|
# @return [Array<Types::ProductionVariant>]
|
6867
6880
|
#
|
6868
6881
|
# @!attribute [rw] data_capture_config
|
6869
|
-
# Configuration to control how SageMaker captures inference data.
|
6882
|
+
# Configuration to control how SageMaker AI captures inference data.
|
6870
6883
|
# @return [Types::DataCaptureConfig]
|
6871
6884
|
#
|
6872
6885
|
# @!attribute [rw] tags
|
@@ -6952,11 +6965,11 @@ module Aws::SageMaker
|
|
6952
6965
|
#
|
6953
6966
|
# @!attribute [rw] execution_role_arn
|
6954
6967
|
# 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].
|
6968
|
+
# AI can assume to perform actions on your behalf. For more
|
6969
|
+
# information, see [SageMaker AI Roles][1].
|
6957
6970
|
#
|
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.
|
6971
|
+
# <note markdown="1"> To be able to pass this role to Amazon SageMaker AI, the caller of
|
6972
|
+
# this action must have the `iam:PassRole` permission.
|
6960
6973
|
#
|
6961
6974
|
# </note>
|
6962
6975
|
#
|
@@ -7642,7 +7655,7 @@ module Aws::SageMaker
|
|
7642
7655
|
# @return [String]
|
7643
7656
|
#
|
7644
7657
|
# @!attribute [rw] role_arn
|
7645
|
-
# The ARN of an IAM role that enables Amazon SageMaker to perform
|
7658
|
+
# The ARN of an IAM role that enables Amazon SageMaker AI to perform
|
7646
7659
|
# tasks on your behalf.
|
7647
7660
|
# @return [String]
|
7648
7661
|
#
|
@@ -7717,16 +7730,16 @@ module Aws::SageMaker
|
|
7717
7730
|
# @return [String]
|
7718
7731
|
#
|
7719
7732
|
# @!attribute [rw] job_type
|
7720
|
-
# Indicates SageMaker job type compatibility.
|
7733
|
+
# Indicates SageMaker AI job type compatibility.
|
7721
7734
|
#
|
7722
|
-
# * `TRAINING`: The image version is compatible with SageMaker
|
7735
|
+
# * `TRAINING`: The image version is compatible with SageMaker AI
|
7723
7736
|
# training jobs.
|
7724
7737
|
#
|
7725
|
-
# * `INFERENCE`: The image version is compatible with SageMaker
|
7738
|
+
# * `INFERENCE`: The image version is compatible with SageMaker AI
|
7726
7739
|
# inference jobs.
|
7727
7740
|
#
|
7728
7741
|
# * `NOTEBOOK_KERNEL`: The image version is compatible with SageMaker
|
7729
|
-
# notebook kernels.
|
7742
|
+
# AI notebook kernels.
|
7730
7743
|
# @return [String]
|
7731
7744
|
#
|
7732
7745
|
# @!attribute [rw] ml_framework
|
@@ -8408,7 +8421,7 @@ module Aws::SageMaker
|
|
8408
8421
|
#
|
8409
8422
|
# @!attribute [rw] role_arn
|
8410
8423
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
8411
|
-
# can assume to perform tasks on your behalf.
|
8424
|
+
# AI can assume to perform tasks on your behalf.
|
8412
8425
|
# @return [String]
|
8413
8426
|
#
|
8414
8427
|
# @!attribute [rw] stopping_condition
|
@@ -8592,7 +8605,7 @@ module Aws::SageMaker
|
|
8592
8605
|
#
|
8593
8606
|
# @!attribute [rw] role_arn
|
8594
8607
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
8595
|
-
# can assume to perform tasks on your behalf.
|
8608
|
+
# AI can assume to perform tasks on your behalf.
|
8596
8609
|
# @return [String]
|
8597
8610
|
#
|
8598
8611
|
# @!attribute [rw] stopping_condition
|
@@ -9028,7 +9041,7 @@ module Aws::SageMaker
|
|
9028
9041
|
#
|
9029
9042
|
# @!attribute [rw] role_arn
|
9030
9043
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
9031
|
-
# can assume to perform tasks on your behalf.
|
9044
|
+
# AI can assume to perform tasks on your behalf.
|
9032
9045
|
# @return [String]
|
9033
9046
|
#
|
9034
9047
|
# @!attribute [rw] stopping_condition
|
@@ -9134,13 +9147,14 @@ module Aws::SageMaker
|
|
9134
9147
|
#
|
9135
9148
|
# @!attribute [rw] role_arn
|
9136
9149
|
# 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
|
-
#
|
9150
|
+
# notebook instance, SageMaker AI assumes this role to perform tasks
|
9151
|
+
# on your behalf. You must grant this role necessary permissions so
|
9152
|
+
# SageMaker AI can perform these tasks. The policy must allow the
|
9153
|
+
# SageMaker AI service principal (sagemaker.amazonaws.com) permissions
|
9154
|
+
# to assume this role. For more information, see [SageMaker AI
|
9155
|
+
# Roles][1].
|
9156
|
+
#
|
9157
|
+
# <note markdown="1"> To be able to pass this role to SageMaker AI, the caller of this API
|
9144
9158
|
# must have the `iam:PassRole` permission.
|
9145
9159
|
#
|
9146
9160
|
# </note>
|
@@ -9152,7 +9166,7 @@ module Aws::SageMaker
|
|
9152
9166
|
#
|
9153
9167
|
# @!attribute [rw] kms_key_id
|
9154
9168
|
# The Amazon Resource Name (ARN) of a Amazon Web Services Key
|
9155
|
-
# Management Service key that SageMaker uses to encrypt data on the
|
9169
|
+
# Management Service key that SageMaker AI uses to encrypt data on the
|
9156
9170
|
# storage volume attached to your notebook instance. The KMS key you
|
9157
9171
|
# provide must be enabled. For information, see [Enabling and
|
9158
9172
|
# Disabling Keys][1] in the *Amazon Web Services Key Management
|
@@ -9185,10 +9199,10 @@ module Aws::SageMaker
|
|
9185
9199
|
# @return [String]
|
9186
9200
|
#
|
9187
9201
|
# @!attribute [rw] direct_internet_access
|
9188
|
-
# Sets whether SageMaker provides internet access to the notebook
|
9202
|
+
# Sets whether SageMaker AI provides internet access to the notebook
|
9189
9203
|
# instance. If you set this to `Disabled` this notebook instance is
|
9190
9204
|
# able to access resources only in your VPC, and is not be able to
|
9191
|
-
# connect to SageMaker training and endpoint services unless you
|
9205
|
+
# connect to SageMaker AI training and endpoint services unless you
|
9192
9206
|
# configure a NAT Gateway in your VPC.
|
9193
9207
|
#
|
9194
9208
|
# For more information, see [Notebook Instances Are Internet-Enabled
|
@@ -9220,7 +9234,8 @@ module Aws::SageMaker
|
|
9220
9234
|
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
9221
9235
|
# Git repository. When you open a notebook instance, it opens in the
|
9222
9236
|
# directory that contains this repository. For more information, see
|
9223
|
-
# [Associating Git Repositories with SageMaker Notebook
|
9237
|
+
# [Associating Git Repositories with SageMaker AI Notebook
|
9238
|
+
# Instances][2].
|
9224
9239
|
#
|
9225
9240
|
#
|
9226
9241
|
#
|
@@ -9235,7 +9250,7 @@ module Aws::SageMaker
|
|
9235
9250
|
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
9236
9251
|
# repository. These repositories are cloned at the same level as the
|
9237
9252
|
# default repository of your notebook instance. For more information,
|
9238
|
-
# see [Associating Git Repositories with SageMaker Notebook
|
9253
|
+
# see [Associating Git Repositories with SageMaker AI Notebook
|
9239
9254
|
# Instances][2].
|
9240
9255
|
#
|
9241
9256
|
#
|
@@ -9343,9 +9358,9 @@ module Aws::SageMaker
|
|
9343
9358
|
#
|
9344
9359
|
# @!attribute [rw] role_arn
|
9345
9360
|
# The Amazon Resource Name (ARN) of an IAM role that enables Amazon
|
9346
|
-
# SageMaker to perform tasks on your behalf.
|
9361
|
+
# SageMaker AI to perform tasks on your behalf.
|
9347
9362
|
#
|
9348
|
-
# During model optimization, Amazon SageMaker needs your permission
|
9363
|
+
# During model optimization, Amazon SageMaker AI needs your permission
|
9349
9364
|
# to:
|
9350
9365
|
#
|
9351
9366
|
# * Read input data from an S3 bucket
|
@@ -9357,9 +9372,9 @@ module Aws::SageMaker
|
|
9357
9372
|
# * Publish metrics to Amazon CloudWatch
|
9358
9373
|
#
|
9359
9374
|
# 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]
|
9375
|
+
# this role to Amazon SageMaker AI, the caller of this API must have
|
9376
|
+
# the `iam:PassRole` permission. For more information, see [Amazon
|
9377
|
+
# SageMaker AI Roles.][1]
|
9363
9378
|
#
|
9364
9379
|
#
|
9365
9380
|
#
|
@@ -10008,13 +10023,13 @@ module Aws::SageMaker
|
|
10008
10023
|
end
|
10009
10024
|
|
10010
10025
|
# @!attribute [rw] studio_lifecycle_config_name
|
10011
|
-
# The name of the Amazon SageMaker Studio Lifecycle Configuration
|
10012
|
-
# create.
|
10026
|
+
# The name of the Amazon SageMaker AI Studio Lifecycle Configuration
|
10027
|
+
# to create.
|
10013
10028
|
# @return [String]
|
10014
10029
|
#
|
10015
10030
|
# @!attribute [rw] studio_lifecycle_config_content
|
10016
|
-
# The content of your Amazon SageMaker Studio Lifecycle
|
10017
|
-
# script. This content must be base64 encoded.
|
10031
|
+
# The content of your Amazon SageMaker AI Studio Lifecycle
|
10032
|
+
# Configuration script. This content must be base64 encoded.
|
10018
10033
|
# @return [String]
|
10019
10034
|
#
|
10020
10035
|
# @!attribute [rw] studio_lifecycle_config_app_type
|
@@ -10918,8 +10933,8 @@ module Aws::SageMaker
|
|
10918
10933
|
end
|
10919
10934
|
|
10920
10935
|
# 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.
|
10936
|
+
# space for an Amazon SageMaker AI Domain. Permitted users can access
|
10937
|
+
# this file system in Amazon SageMaker AI Studio.
|
10923
10938
|
#
|
10924
10939
|
# @note CustomFileSystem is a union - when making an API calls you must set exactly one of the members.
|
10925
10940
|
#
|
@@ -10949,8 +10964,8 @@ module Aws::SageMaker
|
|
10949
10964
|
end
|
10950
10965
|
|
10951
10966
|
# 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.
|
10967
|
+
# space for an Amazon SageMaker AI Domain. Permitted users can access
|
10968
|
+
# this file system in Amazon SageMaker AI Studio.
|
10954
10969
|
#
|
10955
10970
|
# @note CustomFileSystemConfig is a union - when making an API calls you must set exactly one of the members.
|
10956
10971
|
#
|
@@ -10979,8 +10994,8 @@ module Aws::SageMaker
|
|
10979
10994
|
class Unknown < CustomFileSystemConfig; end
|
10980
10995
|
end
|
10981
10996
|
|
10982
|
-
# A custom SageMaker image. For more information, see [Bring your own
|
10983
|
-
# SageMaker image][1].
|
10997
|
+
# A custom SageMaker AI image. For more information, see [Bring your own
|
10998
|
+
# SageMaker AI image][1].
|
10984
10999
|
#
|
10985
11000
|
#
|
10986
11001
|
#
|
@@ -11052,7 +11067,7 @@ module Aws::SageMaker
|
|
11052
11067
|
include Aws::Structure
|
11053
11068
|
end
|
11054
11069
|
|
11055
|
-
# Configuration to control how SageMaker captures inference data.
|
11070
|
+
# Configuration to control how SageMaker AI captures inference data.
|
11056
11071
|
#
|
11057
11072
|
# @!attribute [rw] enable_capture
|
11058
11073
|
# Whether data capture should be enabled or disabled (defaults to
|
@@ -11060,8 +11075,8 @@ module Aws::SageMaker
|
|
11060
11075
|
# @return [Boolean]
|
11061
11076
|
#
|
11062
11077
|
# @!attribute [rw] initial_sampling_percentage
|
11063
|
-
# The percentage of requests SageMaker will capture. A lower value
|
11064
|
-
# recommended for Endpoints with high traffic.
|
11078
|
+
# The percentage of requests SageMaker AI will capture. A lower value
|
11079
|
+
# is recommended for Endpoints with high traffic.
|
11065
11080
|
# @return [Integer]
|
11066
11081
|
#
|
11067
11082
|
# @!attribute [rw] destination_s3_uri
|
@@ -11070,8 +11085,8 @@ module Aws::SageMaker
|
|
11070
11085
|
#
|
11071
11086
|
# @!attribute [rw] kms_key_id
|
11072
11087
|
# 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.
|
11088
|
+
# SageMaker AI uses to encrypt the captured data at rest using Amazon
|
11089
|
+
# S3 server-side encryption.
|
11075
11090
|
#
|
11076
11091
|
# The KmsKeyId can be any of the following formats:
|
11077
11092
|
#
|
@@ -11093,8 +11108,8 @@ module Aws::SageMaker
|
|
11093
11108
|
#
|
11094
11109
|
# @!attribute [rw] capture_content_type_header
|
11095
11110
|
# Configuration specifying how to treat different headers. If no
|
11096
|
-
# headers are specified SageMaker will by default base64 encode
|
11097
|
-
# capturing the data.
|
11111
|
+
# headers are specified SageMaker AI will by default base64 encode
|
11112
|
+
# when capturing the data.
|
11098
11113
|
# @return [Types::CaptureContentTypeHeader]
|
11099
11114
|
#
|
11100
11115
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataCaptureConfig AWS API Documentation
|
@@ -11604,7 +11619,7 @@ module Aws::SageMaker
|
|
11604
11619
|
#
|
11605
11620
|
# @!attribute [rw] custom_file_system_configs
|
11606
11621
|
# The settings for assigning a custom file system to a domain.
|
11607
|
-
# Permitted users can access this file system in Amazon SageMaker
|
11622
|
+
# Permitted users can access this file system in Amazon SageMaker AI
|
11608
11623
|
# Studio.
|
11609
11624
|
# @return [Array<Types::CustomFileSystemConfig>]
|
11610
11625
|
#
|
@@ -12339,7 +12354,7 @@ module Aws::SageMaker
|
|
12339
12354
|
end
|
12340
12355
|
|
12341
12356
|
# @!attribute [rw] notebook_instance_name
|
12342
|
-
# The name of the SageMaker notebook instance to delete.
|
12357
|
+
# The name of the SageMaker AI notebook instance to delete.
|
12343
12358
|
# @return [String]
|
12344
12359
|
#
|
12345
12360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteNotebookInstanceInput AWS API Documentation
|
@@ -12471,8 +12486,8 @@ module Aws::SageMaker
|
|
12471
12486
|
end
|
12472
12487
|
|
12473
12488
|
# @!attribute [rw] studio_lifecycle_config_name
|
12474
|
-
# The name of the Amazon SageMaker Studio Lifecycle Configuration
|
12475
|
-
# delete.
|
12489
|
+
# The name of the Amazon SageMaker AI Studio Lifecycle Configuration
|
12490
|
+
# to delete.
|
12476
12491
|
# @return [String]
|
12477
12492
|
#
|
12478
12493
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteStudioLifecycleConfigRequest AWS API Documentation
|
@@ -13090,15 +13105,15 @@ module Aws::SageMaker
|
|
13090
13105
|
#
|
13091
13106
|
# @!attribute [rw] last_user_activity_timestamp
|
13092
13107
|
# 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`.
|
13108
|
+
# `LastUserActivityTimestamp` is also updated when SageMaker AI
|
13109
|
+
# performs health checks without user activity. As a result, this
|
13110
|
+
# value is set to the same value as `LastHealthCheckTimestamp`.
|
13096
13111
|
# @return [Time]
|
13097
13112
|
#
|
13098
13113
|
# @!attribute [rw] creation_time
|
13099
13114
|
# The creation time of the application.
|
13100
13115
|
#
|
13101
|
-
# <note markdown="1"> After an application has been shut down for 24 hours, SageMaker
|
13116
|
+
# <note markdown="1"> After an application has been shut down for 24 hours, SageMaker AI
|
13102
13117
|
# deletes all metadata for the application. To be considered an update
|
13103
13118
|
# and retain application metadata, applications must be restarted
|
13104
13119
|
# within 24 hours after the previous application has been shut down.
|
@@ -13114,7 +13129,7 @@ module Aws::SageMaker
|
|
13114
13129
|
#
|
13115
13130
|
# @!attribute [rw] resource_spec
|
13116
13131
|
# The instance type and the Amazon Resource Name (ARN) of the
|
13117
|
-
# SageMaker image created on the instance.
|
13132
|
+
# SageMaker AI image created on the instance.
|
13118
13133
|
# @return [Types::ResourceSpec]
|
13119
13134
|
#
|
13120
13135
|
# @!attribute [rw] built_in_lifecycle_config_arn
|
@@ -13286,9 +13301,9 @@ module Aws::SageMaker
|
|
13286
13301
|
# @return [Array<Types::AutoMLPartialFailureReason>]
|
13287
13302
|
#
|
13288
13303
|
# @!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.
|
13304
|
+
# The best model candidate selected by SageMaker AI Autopilot using
|
13305
|
+
# both the best objective metric and lowest [InferenceLatency][1] for
|
13306
|
+
# an experiment.
|
13292
13307
|
#
|
13293
13308
|
#
|
13294
13309
|
#
|
@@ -13785,12 +13800,12 @@ module Aws::SageMaker
|
|
13785
13800
|
# The time when the model compilation job on a compilation job
|
13786
13801
|
# instance ended. For a successful or stopped job, this is when the
|
13787
13802
|
# job's model artifacts have finished uploading. For a failed job,
|
13788
|
-
# this is when Amazon SageMaker detected that the job failed.
|
13803
|
+
# this is when Amazon SageMaker AI detected that the job failed.
|
13789
13804
|
# @return [Time]
|
13790
13805
|
#
|
13791
13806
|
# @!attribute [rw] stopping_condition
|
13792
13807
|
# Specifies a limit to how long a model compilation job can run. When
|
13793
|
-
# the job reaches the time limit, Amazon SageMaker ends the
|
13808
|
+
# the job reaches the time limit, Amazon SageMaker AI ends the
|
13794
13809
|
# compilation job. Use this API to cap model training costs.
|
13795
13810
|
# @return [Types::StoppingCondition]
|
13796
13811
|
#
|
@@ -13829,7 +13844,7 @@ module Aws::SageMaker
|
|
13829
13844
|
#
|
13830
13845
|
# @!attribute [rw] role_arn
|
13831
13846
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
13832
|
-
# assumes to perform the model compilation job.
|
13847
|
+
# AI assumes to perform the model compilation job.
|
13833
13848
|
# @return [String]
|
13834
13849
|
#
|
13835
13850
|
# @!attribute [rw] input_config
|
@@ -14122,7 +14137,7 @@ module Aws::SageMaker
|
|
14122
14137
|
#
|
14123
14138
|
# @!attribute [rw] role_arn
|
14124
14139
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
14125
|
-
# can assume to perform tasks on your behalf.
|
14140
|
+
# AI can assume to perform tasks on your behalf.
|
14126
14141
|
# @return [String]
|
14127
14142
|
#
|
14128
14143
|
# @!attribute [rw] stopping_condition
|
@@ -14328,7 +14343,7 @@ module Aws::SageMaker
|
|
14328
14343
|
# @return [String]
|
14329
14344
|
#
|
14330
14345
|
# @!attribute [rw] single_sign_on_application_arn
|
14331
|
-
# The ARN of the application managed by SageMaker in IAM Identity
|
14346
|
+
# The ARN of the application managed by SageMaker AI in IAM Identity
|
14332
14347
|
# Center. This value is only returned for domains created after
|
14333
14348
|
# October 1, 2023.
|
14334
14349
|
# @return [String]
|
@@ -14372,7 +14387,7 @@ module Aws::SageMaker
|
|
14372
14387
|
# `PublicInternetOnly`.
|
14373
14388
|
#
|
14374
14389
|
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
14375
|
-
# Amazon SageMaker, which allows direct internet access
|
14390
|
+
# Amazon SageMaker AI, which allows direct internet access
|
14376
14391
|
#
|
14377
14392
|
# * `VpcOnly` - All traffic is through the specified VPC and subnets
|
14378
14393
|
# @return [String]
|
@@ -14658,7 +14673,7 @@ module Aws::SageMaker
|
|
14658
14673
|
# @return [Array<Types::ProductionVariant>]
|
14659
14674
|
#
|
14660
14675
|
# @!attribute [rw] data_capture_config
|
14661
|
-
# Configuration to control how SageMaker captures inference data.
|
14676
|
+
# Configuration to control how SageMaker AI captures inference data.
|
14662
14677
|
# @return [Types::DataCaptureConfig]
|
14663
14678
|
#
|
14664
14679
|
# @!attribute [rw] kms_key_id
|
@@ -15716,7 +15731,7 @@ module Aws::SageMaker
|
|
15716
15731
|
# @return [Time]
|
15717
15732
|
#
|
15718
15733
|
# @!attribute [rw] role_arn
|
15719
|
-
# The ARN of the IAM role that enables Amazon SageMaker to perform
|
15734
|
+
# The ARN of the IAM role that enables Amazon SageMaker AI to perform
|
15720
15735
|
# tasks on your behalf.
|
15721
15736
|
# @return [String]
|
15722
15737
|
#
|
@@ -15814,16 +15829,16 @@ module Aws::SageMaker
|
|
15814
15829
|
# @return [String]
|
15815
15830
|
#
|
15816
15831
|
# @!attribute [rw] job_type
|
15817
|
-
# Indicates SageMaker job type compatibility.
|
15832
|
+
# Indicates SageMaker AI job type compatibility.
|
15818
15833
|
#
|
15819
|
-
# * `TRAINING`: The image version is compatible with SageMaker
|
15834
|
+
# * `TRAINING`: The image version is compatible with SageMaker AI
|
15820
15835
|
# training jobs.
|
15821
15836
|
#
|
15822
|
-
# * `INFERENCE`: The image version is compatible with SageMaker
|
15837
|
+
# * `INFERENCE`: The image version is compatible with SageMaker AI
|
15823
15838
|
# inference jobs.
|
15824
15839
|
#
|
15825
15840
|
# * `NOTEBOOK_KERNEL`: The image version is compatible with SageMaker
|
15826
|
-
# notebook kernels.
|
15841
|
+
# AI notebook kernels.
|
15827
15842
|
# @return [String]
|
15828
15843
|
#
|
15829
15844
|
# @!attribute [rw] ml_framework
|
@@ -17275,7 +17290,7 @@ module Aws::SageMaker
|
|
17275
17290
|
#
|
17276
17291
|
# @!attribute [rw] role_arn
|
17277
17292
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
17278
|
-
# can assume to perform tasks on your behalf.
|
17293
|
+
# AI can assume to perform tasks on your behalf.
|
17279
17294
|
# @return [String]
|
17280
17295
|
#
|
17281
17296
|
# @!attribute [rw] stopping_condition
|
@@ -17453,7 +17468,7 @@ module Aws::SageMaker
|
|
17453
17468
|
# @return [String]
|
17454
17469
|
#
|
17455
17470
|
# @!attribute [rw] notebook_instance_name
|
17456
|
-
# The name of the SageMaker notebook instance.
|
17471
|
+
# The name of the SageMaker AI notebook instance.
|
17457
17472
|
# @return [String]
|
17458
17473
|
#
|
17459
17474
|
# @!attribute [rw] notebook_instance_status
|
@@ -17487,12 +17502,12 @@ module Aws::SageMaker
|
|
17487
17502
|
# @return [String]
|
17488
17503
|
#
|
17489
17504
|
# @!attribute [rw] kms_key_id
|
17490
|
-
# The Amazon Web Services KMS key ID SageMaker uses to encrypt data
|
17505
|
+
# The Amazon Web Services KMS key ID SageMaker AI uses to encrypt data
|
17491
17506
|
# when storing it on the ML storage volume attached to the instance.
|
17492
17507
|
# @return [String]
|
17493
17508
|
#
|
17494
17509
|
# @!attribute [rw] network_interface_id
|
17495
|
-
# The network interface IDs that SageMaker created at the time of
|
17510
|
+
# The network interface IDs that SageMaker AI created at the time of
|
17496
17511
|
# creating the instance.
|
17497
17512
|
# @return [String]
|
17498
17513
|
#
|
@@ -17518,10 +17533,10 @@ module Aws::SageMaker
|
|
17518
17533
|
# @return [String]
|
17519
17534
|
#
|
17520
17535
|
# @!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.
|
17536
|
+
# Describes whether SageMaker AI provides internet access to the
|
17537
|
+
# notebook instance. If this value is set to *Disabled*, the notebook
|
17538
|
+
# instance does not have internet access, and cannot connect to
|
17539
|
+
# SageMaker AI training and endpoint services.
|
17525
17540
|
#
|
17526
17541
|
# For more information, see [Notebook Instances Are Internet-Enabled
|
17527
17542
|
# by Default][1].
|
@@ -17551,7 +17566,8 @@ module Aws::SageMaker
|
|
17551
17566
|
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
17552
17567
|
# Git repository. When you open a notebook instance, it opens in the
|
17553
17568
|
# directory that contains this repository. For more information, see
|
17554
|
-
# [Associating Git Repositories with SageMaker Notebook
|
17569
|
+
# [Associating Git Repositories with SageMaker AI Notebook
|
17570
|
+
# Instances][2].
|
17555
17571
|
#
|
17556
17572
|
#
|
17557
17573
|
#
|
@@ -17566,7 +17582,7 @@ module Aws::SageMaker
|
|
17566
17582
|
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
17567
17583
|
# repository. These repositories are cloned at the same level as the
|
17568
17584
|
# default repository of your notebook instance. For more information,
|
17569
|
-
# see [Associating Git Repositories with SageMaker Notebook
|
17585
|
+
# see [Associating Git Repositories with SageMaker AI Notebook
|
17570
17586
|
# Instances][2].
|
17571
17587
|
#
|
17572
17588
|
#
|
@@ -18370,8 +18386,8 @@ module Aws::SageMaker
|
|
18370
18386
|
end
|
18371
18387
|
|
18372
18388
|
# @!attribute [rw] studio_lifecycle_config_name
|
18373
|
-
# The name of the Amazon SageMaker Studio Lifecycle Configuration
|
18374
|
-
# describe.
|
18389
|
+
# The name of the Amazon SageMaker AI Studio Lifecycle Configuration
|
18390
|
+
# to describe.
|
18375
18391
|
# @return [String]
|
18376
18392
|
#
|
18377
18393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeStudioLifecycleConfigRequest AWS API Documentation
|
@@ -18387,23 +18403,23 @@ module Aws::SageMaker
|
|
18387
18403
|
# @return [String]
|
18388
18404
|
#
|
18389
18405
|
# @!attribute [rw] studio_lifecycle_config_name
|
18390
|
-
# The name of the Amazon SageMaker Studio Lifecycle Configuration
|
18391
|
-
# is described.
|
18406
|
+
# The name of the Amazon SageMaker AI Studio Lifecycle Configuration
|
18407
|
+
# that is described.
|
18392
18408
|
# @return [String]
|
18393
18409
|
#
|
18394
18410
|
# @!attribute [rw] creation_time
|
18395
|
-
# The creation time of the Amazon SageMaker Studio Lifecycle
|
18411
|
+
# The creation time of the Amazon SageMaker AI Studio Lifecycle
|
18396
18412
|
# Configuration.
|
18397
18413
|
# @return [Time]
|
18398
18414
|
#
|
18399
18415
|
# @!attribute [rw] last_modified_time
|
18400
|
-
# This value is equivalent to CreationTime because Amazon SageMaker
|
18416
|
+
# This value is equivalent to CreationTime because Amazon SageMaker AI
|
18401
18417
|
# Studio Lifecycle Configurations are immutable.
|
18402
18418
|
# @return [Time]
|
18403
18419
|
#
|
18404
18420
|
# @!attribute [rw] studio_lifecycle_config_content
|
18405
|
-
# The content of your Amazon SageMaker Studio Lifecycle
|
18406
|
-
# script.
|
18421
|
+
# The content of your Amazon SageMaker AI Studio Lifecycle
|
18422
|
+
# Configuration script.
|
18407
18423
|
# @return [String]
|
18408
18424
|
#
|
18409
18425
|
# @!attribute [rw] studio_lifecycle_config_app_type
|
@@ -19868,8 +19884,8 @@ module Aws::SageMaker
|
|
19868
19884
|
# @return [Types::RStudioServerProDomainSettings]
|
19869
19885
|
#
|
19870
19886
|
# @!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].
|
19887
|
+
# The configuration for attaching a SageMaker AI user profile name to
|
19888
|
+
# the execution role as a [sts:SourceIdentity key][1].
|
19873
19889
|
#
|
19874
19890
|
#
|
19875
19891
|
#
|
@@ -19908,10 +19924,10 @@ module Aws::SageMaker
|
|
19908
19924
|
# @return [Types::RStudioServerProDomainSettingsForUpdate]
|
19909
19925
|
#
|
19910
19926
|
# @!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.
|
19927
|
+
# The configuration for attaching a SageMaker AI user profile name to
|
19928
|
+
# the execution role as a [sts:SourceIdentity key][1]. This
|
19929
|
+
# configuration can only be modified if there are no apps in the
|
19930
|
+
# `InService` or `Pending` state.
|
19915
19931
|
#
|
19916
19932
|
#
|
19917
19933
|
#
|
@@ -20103,8 +20119,8 @@ module Aws::SageMaker
|
|
20103
20119
|
end
|
20104
20120
|
|
20105
20121
|
# 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.
|
20122
|
+
# profile or space for an Amazon SageMaker AI Domain. Permitted users
|
20123
|
+
# can access this file system in Amazon SageMaker AI Studio.
|
20108
20124
|
#
|
20109
20125
|
# @!attribute [rw] file_system_id
|
20110
20126
|
# The ID of your Amazon EFS file system.
|
@@ -20119,7 +20135,7 @@ module Aws::SageMaker
|
|
20119
20135
|
end
|
20120
20136
|
|
20121
20137
|
# The settings for assigning a custom Amazon EFS file system to a user
|
20122
|
-
# profile or space for an Amazon SageMaker Domain.
|
20138
|
+
# profile or space for an Amazon SageMaker AI Domain.
|
20123
20139
|
#
|
20124
20140
|
# @!attribute [rw] file_system_id
|
20125
20141
|
# The ID of your Amazon EFS file system.
|
@@ -20127,8 +20143,8 @@ module Aws::SageMaker
|
|
20127
20143
|
#
|
20128
20144
|
# @!attribute [rw] file_system_path
|
20129
20145
|
# The path to the file system directory that is accessible in Amazon
|
20130
|
-
# SageMaker Studio. Permitted users can access only this directory
|
20131
|
-
# below.
|
20146
|
+
# SageMaker AI Studio. Permitted users can access only this directory
|
20147
|
+
# and below.
|
20132
20148
|
# @return [String]
|
20133
20149
|
#
|
20134
20150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EFSFileSystemConfig AWS API Documentation
|
@@ -21757,7 +21773,7 @@ module Aws::SageMaker
|
|
21757
21773
|
end
|
21758
21774
|
|
21759
21775
|
# The Amazon Elastic File System storage configuration for a SageMaker
|
21760
|
-
# image.
|
21776
|
+
# AI image.
|
21761
21777
|
#
|
21762
21778
|
# @!attribute [rw] mount_path
|
21763
21779
|
# The path within the image to mount the user's EFS home directory.
|
@@ -25056,9 +25072,10 @@ module Aws::SageMaker
|
|
25056
25072
|
include Aws::Structure
|
25057
25073
|
end
|
25058
25074
|
|
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
|
25075
|
+
# A SageMaker AI image. A SageMaker AI image represents a set of
|
25076
|
+
# container images that are derived from a common base container image.
|
25077
|
+
# Each of these container images is represented by a SageMaker AI
|
25078
|
+
# `ImageVersion`.
|
25062
25079
|
#
|
25063
25080
|
# @!attribute [rw] creation_time
|
25064
25081
|
# When the image was created.
|
@@ -25154,7 +25171,7 @@ module Aws::SageMaker
|
|
25154
25171
|
include Aws::Structure
|
25155
25172
|
end
|
25156
25173
|
|
25157
|
-
# A version of a SageMaker `Image`. A version represents an existing
|
25174
|
+
# A version of a SageMaker AI `Image`. A version represents an existing
|
25158
25175
|
# container image.
|
25159
25176
|
#
|
25160
25177
|
# @!attribute [rw] creation_time
|
@@ -25427,8 +25444,8 @@ module Aws::SageMaker
|
|
25427
25444
|
# including the model, container, and compute resources.
|
25428
25445
|
#
|
25429
25446
|
# @!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.
|
25447
|
+
# The name of an existing SageMaker AI model object in your account
|
25448
|
+
# that you want to deploy with the inference component.
|
25432
25449
|
# @return [String]
|
25433
25450
|
#
|
25434
25451
|
# @!attribute [rw] container
|
@@ -25488,7 +25505,7 @@ module Aws::SageMaker
|
|
25488
25505
|
# component.
|
25489
25506
|
#
|
25490
25507
|
# @!attribute [rw] model_name
|
25491
|
-
# The name of the SageMaker model object that is deployed with the
|
25508
|
+
# The name of the SageMaker AI model object that is deployed with the
|
25492
25509
|
# inference component.
|
25493
25510
|
# @return [String]
|
25494
25511
|
#
|
@@ -25638,8 +25655,8 @@ module Aws::SageMaker
|
|
25638
25655
|
#
|
25639
25656
|
# @!attribute [rw] content_type
|
25640
25657
|
# Configuration specifying how to treat different headers. If no
|
25641
|
-
# headers are specified Amazon SageMaker will by default base64
|
25642
|
-
# when capturing the data.
|
25658
|
+
# headers are specified Amazon SageMaker AI will by default base64
|
25659
|
+
# encode when capturing the data.
|
25643
25660
|
# @return [Types::CaptureContentTypeHeader]
|
25644
25661
|
#
|
25645
25662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceExperimentDataStorageConfig AWS API Documentation
|
@@ -26329,13 +26346,13 @@ module Aws::SageMaker
|
|
26329
26346
|
include Aws::Structure
|
26330
26347
|
end
|
26331
26348
|
|
26332
|
-
# The configuration for the file system and kernels in a SageMaker
|
26333
|
-
# running as a JupyterLab app. The `FileSystemConfig` object is
|
26334
|
-
# supported.
|
26349
|
+
# The configuration for the file system and kernels in a SageMaker AI
|
26350
|
+
# image running as a JupyterLab app. The `FileSystemConfig` object is
|
26351
|
+
# not supported.
|
26335
26352
|
#
|
26336
26353
|
# @!attribute [rw] file_system_config
|
26337
26354
|
# The Amazon Elastic File System storage configuration for a SageMaker
|
26338
|
-
# image.
|
26355
|
+
# AI image.
|
26339
26356
|
# @return [Types::FileSystemConfig]
|
26340
26357
|
#
|
26341
26358
|
# @!attribute [rw] container_config
|
@@ -26354,7 +26371,7 @@ module Aws::SageMaker
|
|
26354
26371
|
# The settings for the JupyterLab application.
|
26355
26372
|
#
|
26356
26373
|
# @!attribute [rw] default_resource_spec
|
26357
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
26374
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
26358
26375
|
# version, and the instance type that the version runs on.
|
26359
26376
|
# @return [Types::ResourceSpec]
|
26360
26377
|
#
|
@@ -26411,7 +26428,7 @@ module Aws::SageMaker
|
|
26411
26428
|
#
|
26412
26429
|
# @!attribute [rw] default_resource_spec
|
26413
26430
|
# The default instance type and the Amazon Resource Name (ARN) of the
|
26414
|
-
# default SageMaker image used by the JupyterServer app. If you use
|
26431
|
+
# default SageMaker AI image used by the JupyterServer app. If you use
|
26415
26432
|
# the `LifecycleConfigArns` parameter, then this parameter is also
|
26416
26433
|
# required.
|
26417
26434
|
# @return [Types::ResourceSpec]
|
@@ -26428,8 +26445,8 @@ module Aws::SageMaker
|
|
26428
26445
|
# @return [Array<String>]
|
26429
26446
|
#
|
26430
26447
|
# @!attribute [rw] code_repositories
|
26431
|
-
# A list of Git repositories that SageMaker automatically displays
|
26432
|
-
# users for cloning in the JupyterServer application.
|
26448
|
+
# A list of Git repositories that SageMaker AI automatically displays
|
26449
|
+
# to users for cloning in the JupyterServer application.
|
26433
26450
|
# @return [Array<Types::CodeRepository>]
|
26434
26451
|
#
|
26435
26452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterServerAppSettings AWS API Documentation
|
@@ -26462,9 +26479,9 @@ module Aws::SageMaker
|
|
26462
26479
|
#
|
26463
26480
|
# @!attribute [rw] default_resource_spec
|
26464
26481
|
# The default instance type and the Amazon Resource Name (ARN) of the
|
26465
|
-
# default SageMaker image used by the KernelGateway app.
|
26482
|
+
# default SageMaker AI image used by the KernelGateway app.
|
26466
26483
|
#
|
26467
|
-
# <note markdown="1"> The Amazon SageMaker Studio UI does not use the default instance
|
26484
|
+
# <note markdown="1"> The Amazon SageMaker AI Studio UI does not use the default instance
|
26468
26485
|
# type value set here. The default instance type set here is used when
|
26469
26486
|
# Apps are created using the CLI or CloudFormation and the instance
|
26470
26487
|
# type parameter value is not passed.
|
@@ -26473,7 +26490,7 @@ module Aws::SageMaker
|
|
26473
26490
|
# @return [Types::ResourceSpec]
|
26474
26491
|
#
|
26475
26492
|
# @!attribute [rw] custom_images
|
26476
|
-
# A list of custom SageMaker images that are configured to run as a
|
26493
|
+
# A list of custom SageMaker AI images that are configured to run as a
|
26477
26494
|
# KernelGateway app.
|
26478
26495
|
# @return [Array<Types::CustomImage>]
|
26479
26496
|
#
|
@@ -26497,8 +26514,8 @@ module Aws::SageMaker
|
|
26497
26514
|
include Aws::Structure
|
26498
26515
|
end
|
26499
26516
|
|
26500
|
-
# The configuration for the file system and kernels in a SageMaker
|
26501
|
-
# running as a KernelGateway app.
|
26517
|
+
# The configuration for the file system and kernels in a SageMaker AI
|
26518
|
+
# image running as a KernelGateway app.
|
26502
26519
|
#
|
26503
26520
|
# @!attribute [rw] kernel_specs
|
26504
26521
|
# The specification of the Jupyter kernels in the image.
|
@@ -26506,7 +26523,7 @@ module Aws::SageMaker
|
|
26506
26523
|
#
|
26507
26524
|
# @!attribute [rw] file_system_config
|
26508
26525
|
# The Amazon Elastic File System storage configuration for a SageMaker
|
26509
|
-
# image.
|
26526
|
+
# AI image.
|
26510
26527
|
# @return [Types::FileSystemConfig]
|
26511
26528
|
#
|
26512
26529
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/KernelGatewayImageConfig AWS API Documentation
|
@@ -27294,7 +27311,7 @@ module Aws::SageMaker
|
|
27294
27311
|
end
|
27295
27312
|
|
27296
27313
|
# @!attribute [rw] sage_maker_image_version_aliases
|
27297
|
-
# A list of SageMaker image version aliases.
|
27314
|
+
# A list of SageMaker AI image version aliases.
|
27298
27315
|
# @return [Array<String>]
|
27299
27316
|
#
|
27300
27317
|
# @!attribute [rw] next_token
|
@@ -28219,7 +28236,7 @@ module Aws::SageMaker
|
|
28219
28236
|
# @return [Array<Types::CompilationJobSummary>]
|
28220
28237
|
#
|
28221
28238
|
# @!attribute [rw] next_token
|
28222
|
-
# If the response is truncated, Amazon SageMaker returns this
|
28239
|
+
# If the response is truncated, Amazon SageMaker AI returns this
|
28223
28240
|
# `NextToken`. To retrieve the next set of model compilation jobs, use
|
28224
28241
|
# this token in the next request.
|
28225
28242
|
# @return [String]
|
@@ -30961,8 +30978,8 @@ module Aws::SageMaker
|
|
30961
30978
|
# @return [Array<Types::MonitoringJobDefinitionSummary>]
|
30962
30979
|
#
|
30963
30980
|
# @!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
|
30981
|
+
# If the response is truncated, Amazon SageMaker AI returns this
|
30982
|
+
# token. To retrieve the next set of model quality monitoring job
|
30966
30983
|
# definitions, use it in the next request.
|
30967
30984
|
# @return [String]
|
30968
30985
|
#
|
@@ -31430,8 +31447,8 @@ module Aws::SageMaker
|
|
31430
31447
|
end
|
31431
31448
|
|
31432
31449
|
# @!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
|
31450
|
+
# If the response is truncated, SageMaker AI returns this token. To
|
31451
|
+
# get the next set of lifecycle configurations, use it in the next
|
31435
31452
|
# request.
|
31436
31453
|
# @return [String]
|
31437
31454
|
#
|
@@ -31545,8 +31562,8 @@ module Aws::SageMaker
|
|
31545
31562
|
|
31546
31563
|
# @!attribute [rw] next_token
|
31547
31564
|
# 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.
|
31565
|
+
# truncated, SageMaker AI returns this token. To retrieve the next set
|
31566
|
+
# of notebook instances, use the token in the next request.
|
31550
31567
|
# @return [String]
|
31551
31568
|
#
|
31552
31569
|
# @!attribute [rw] notebook_instances
|
@@ -34749,6 +34766,10 @@ module Aws::SageMaker
|
|
34749
34766
|
# Docker container for your model package.
|
34750
34767
|
# @return [Types::AdditionalS3DataSource]
|
34751
34768
|
#
|
34769
|
+
# @!attribute [rw] model_data_etag
|
34770
|
+
# The ETag associated with Model Data URL.
|
34771
|
+
# @return [String]
|
34772
|
+
#
|
34752
34773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageContainerDefinition AWS API Documentation
|
34753
34774
|
#
|
34754
34775
|
class ModelPackageContainerDefinition < Struct.new(
|
@@ -34763,7 +34784,8 @@ module Aws::SageMaker
|
|
34763
34784
|
:framework,
|
34764
34785
|
:framework_version,
|
34765
34786
|
:nearest_model_name,
|
34766
|
-
:additional_s3_data_source
|
34787
|
+
:additional_s3_data_source,
|
34788
|
+
:model_data_etag)
|
34767
34789
|
SENSITIVE = []
|
34768
34790
|
include Aws::Structure
|
34769
34791
|
end
|
@@ -35563,8 +35585,8 @@ module Aws::SageMaker
|
|
35563
35585
|
# @return [Integer]
|
35564
35586
|
#
|
35565
35587
|
# @!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
|
35588
|
+
# The Key Management Service (KMS) key that Amazon SageMaker AI uses
|
35589
|
+
# to encrypt data on the storage volume attached to the ML compute
|
35568
35590
|
# instance(s) that run the model monitoring job.
|
35569
35591
|
# @return [String]
|
35570
35592
|
#
|
@@ -35733,7 +35755,7 @@ module Aws::SageMaker
|
|
35733
35755
|
#
|
35734
35756
|
# @!attribute [rw] monitoring_inputs
|
35735
35757
|
# The array of inputs for the monitoring job. Currently we support
|
35736
|
-
# monitoring an Amazon SageMaker Endpoint.
|
35758
|
+
# monitoring an Amazon SageMaker AI Endpoint.
|
35737
35759
|
# @return [Array<Types::MonitoringInput>]
|
35738
35760
|
#
|
35739
35761
|
# @!attribute [rw] monitoring_output_config
|
@@ -35767,7 +35789,7 @@ module Aws::SageMaker
|
|
35767
35789
|
#
|
35768
35790
|
# @!attribute [rw] role_arn
|
35769
35791
|
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
35770
|
-
# can assume to perform tasks on your behalf.
|
35792
|
+
# AI can assume to perform tasks on your behalf.
|
35771
35793
|
# @return [String]
|
35772
35794
|
#
|
35773
35795
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringJobDefinition AWS API Documentation
|
@@ -35888,8 +35910,8 @@ module Aws::SageMaker
|
|
35888
35910
|
# @return [Array<Types::MonitoringOutput>]
|
35889
35911
|
#
|
35890
35912
|
# @!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
|
35913
|
+
# The Key Management Service (KMS) key that Amazon SageMaker AI uses
|
35914
|
+
# to encrypt the model artifacts at rest using Amazon S3 server-side
|
35893
35915
|
# encryption.
|
35894
35916
|
# @return [String]
|
35895
35917
|
#
|
@@ -35931,12 +35953,12 @@ module Aws::SageMaker
|
|
35931
35953
|
#
|
35932
35954
|
# @!attribute [rw] s3_uri
|
35933
35955
|
# A URI that identifies the Amazon S3 storage location where Amazon
|
35934
|
-
# SageMaker saves the results of a monitoring job.
|
35956
|
+
# SageMaker AI saves the results of a monitoring job.
|
35935
35957
|
# @return [String]
|
35936
35958
|
#
|
35937
35959
|
# @!attribute [rw] local_path
|
35938
35960
|
# The local path to the Amazon S3 storage location where Amazon
|
35939
|
-
# SageMaker saves the results of a monitoring job. LocalPath is an
|
35961
|
+
# SageMaker AI saves the results of a monitoring job. LocalPath is an
|
35940
35962
|
# absolute path for the output data.
|
35941
35963
|
# @return [String]
|
35942
35964
|
#
|
@@ -36177,7 +36199,7 @@ module Aws::SageMaker
|
|
36177
36199
|
# The [VpcConfig][1] configuration object that specifies the VPC that
|
36178
36200
|
# you want the compilation jobs to connect to. For more information on
|
36179
36201
|
# controlling access to your Amazon S3 buckets used for compilation job,
|
36180
|
-
# see [Give Amazon SageMaker Compilation Jobs Access to Resources in
|
36202
|
+
# see [Give Amazon SageMaker AI Compilation Jobs Access to Resources in
|
36181
36203
|
# Your Amazon VPC][2].
|
36182
36204
|
#
|
36183
36205
|
#
|
@@ -36350,7 +36372,7 @@ module Aws::SageMaker
|
|
36350
36372
|
include Aws::Structure
|
36351
36373
|
end
|
36352
36374
|
|
36353
|
-
# Provides summary information for an SageMaker notebook instance.
|
36375
|
+
# Provides summary information for an SageMaker AI notebook instance.
|
36354
36376
|
#
|
36355
36377
|
# @!attribute [rw] notebook_instance_name
|
36356
36378
|
# The name of the notebook instance that you want a summary for.
|
@@ -36401,7 +36423,8 @@ module Aws::SageMaker
|
|
36401
36423
|
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
36402
36424
|
# Git repository. When you open a notebook instance, it opens in the
|
36403
36425
|
# directory that contains this repository. For more information, see
|
36404
|
-
# [Associating Git Repositories with SageMaker Notebook
|
36426
|
+
# [Associating Git Repositories with SageMaker AI Notebook
|
36427
|
+
# Instances][2].
|
36405
36428
|
#
|
36406
36429
|
#
|
36407
36430
|
#
|
@@ -36416,7 +36439,7 @@ module Aws::SageMaker
|
|
36416
36439
|
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
36417
36440
|
# repository. These repositories are cloned at the same level as the
|
36418
36441
|
# default repository of your notebook instance. For more information,
|
36419
|
-
# see [Associating Git Repositories with SageMaker Notebook
|
36442
|
+
# see [Associating Git Repositories with SageMaker AI Notebook
|
36420
36443
|
# Instances][2].
|
36421
36444
|
#
|
36422
36445
|
#
|
@@ -37065,7 +37088,7 @@ module Aws::SageMaker
|
|
37065
37088
|
# recommended to use for particular TargetPlatform.
|
37066
37089
|
#
|
37067
37090
|
# @!attribute [rw] s3_output_location
|
37068
|
-
# Identifies the S3 bucket where you want Amazon SageMaker to store
|
37091
|
+
# Identifies the S3 bucket where you want Amazon SageMaker AI to store
|
37069
37092
|
# the model artifacts. For example,
|
37070
37093
|
# `s3://bucket-name/key-name-prefix`.
|
37071
37094
|
# @return [String]
|
@@ -37210,9 +37233,9 @@ module Aws::SageMaker
|
|
37210
37233
|
#
|
37211
37234
|
# @!attribute [rw] kms_key_id
|
37212
37235
|
# The Amazon Web Services Key Management Service key (Amazon Web
|
37213
|
-
# Services KMS) that Amazon SageMaker uses to encrypt your output
|
37236
|
+
# Services KMS) that Amazon SageMaker AI uses to encrypt your output
|
37214
37237
|
# models with Amazon S3 server-side encryption after compilation job.
|
37215
|
-
# If you don't provide a KMS key ID, Amazon SageMaker uses the
|
37238
|
+
# If you don't provide a KMS key ID, Amazon SageMaker AI uses the
|
37216
37239
|
# default KMS key for Amazon S3 for your role's account. For more
|
37217
37240
|
# information, see [KMS-Managed Encryption Keys][1] in the *Amazon
|
37218
37241
|
# Simple Storage Service Developer Guide.*
|
@@ -40108,12 +40131,12 @@ module Aws::SageMaker
|
|
40108
40131
|
# A collection of settings that apply to an `RSessionGateway` app.
|
40109
40132
|
#
|
40110
40133
|
# @!attribute [rw] default_resource_spec
|
40111
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
40134
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
40112
40135
|
# version, and the instance type that the version runs on.
|
40113
40136
|
# @return [Types::ResourceSpec]
|
40114
40137
|
#
|
40115
40138
|
# @!attribute [rw] custom_images
|
40116
|
-
# A list of custom SageMaker images that are configured to run as a
|
40139
|
+
# A list of custom SageMaker AI images that are configured to run as a
|
40117
40140
|
# RSession app.
|
40118
40141
|
# @return [Array<Types::CustomImage>]
|
40119
40142
|
#
|
@@ -40167,7 +40190,7 @@ module Aws::SageMaker
|
|
40167
40190
|
# @return [String]
|
40168
40191
|
#
|
40169
40192
|
# @!attribute [rw] default_resource_spec
|
40170
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
40193
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
40171
40194
|
# version, and the instance type that the version runs on.
|
40172
40195
|
# @return [Types::ResourceSpec]
|
40173
40196
|
#
|
@@ -40190,7 +40213,7 @@ module Aws::SageMaker
|
|
40190
40213
|
# @return [String]
|
40191
40214
|
#
|
40192
40215
|
# @!attribute [rw] default_resource_spec
|
40193
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
40216
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
40194
40217
|
# version, and the instance type that the version runs on.
|
40195
40218
|
# @return [Types::ResourceSpec]
|
40196
40219
|
#
|
@@ -41410,11 +41433,11 @@ module Aws::SageMaker
|
|
41410
41433
|
include Aws::Structure
|
41411
41434
|
end
|
41412
41435
|
|
41413
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
41414
|
-
# and the instance type that the version runs on.
|
41436
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
41437
|
+
# version, and the instance type that the version runs on.
|
41415
41438
|
#
|
41416
41439
|
# @!attribute [rw] sage_maker_image_arn
|
41417
|
-
# The ARN of the SageMaker image that the image version belongs to.
|
41440
|
+
# The ARN of the SageMaker AI image that the image version belongs to.
|
41418
41441
|
# @return [String]
|
41419
41442
|
#
|
41420
41443
|
# @!attribute [rw] sage_maker_image_version_arn
|
@@ -41792,6 +41815,14 @@ module Aws::SageMaker
|
|
41792
41815
|
# file that stores the artifact locations.
|
41793
41816
|
# @return [String]
|
41794
41817
|
#
|
41818
|
+
# @!attribute [rw] etag
|
41819
|
+
# The ETag associated with S3 URI.
|
41820
|
+
# @return [String]
|
41821
|
+
#
|
41822
|
+
# @!attribute [rw] manifest_etag
|
41823
|
+
# The ETag associated with Manifest S3URI.
|
41824
|
+
# @return [String]
|
41825
|
+
#
|
41795
41826
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/S3ModelDataSource AWS API Documentation
|
41796
41827
|
#
|
41797
41828
|
class S3ModelDataSource < Struct.new(
|
@@ -41800,7 +41831,9 @@ module Aws::SageMaker
|
|
41800
41831
|
:compression_type,
|
41801
41832
|
:model_access_config,
|
41802
41833
|
:hub_access_config,
|
41803
|
-
:manifest_s3_uri
|
41834
|
+
:manifest_s3_uri,
|
41835
|
+
:etag,
|
41836
|
+
:manifest_etag)
|
41804
41837
|
SENSITIVE = []
|
41805
41838
|
include Aws::Structure
|
41806
41839
|
end
|
@@ -41978,7 +42011,7 @@ module Aws::SageMaker
|
|
41978
42011
|
# requested time to run the execution.
|
41979
42012
|
#
|
41980
42013
|
# * We recommend that if you would like a daily schedule, you do not
|
41981
|
-
# provide this parameter. Amazon SageMaker will pick a time for
|
42014
|
+
# provide this parameter. Amazon SageMaker AI will pick a time for
|
41982
42015
|
# running every day.
|
41983
42016
|
#
|
41984
42017
|
# </note>
|
@@ -42810,8 +42843,8 @@ module Aws::SageMaker
|
|
42810
42843
|
include Aws::Structure
|
42811
42844
|
end
|
42812
42845
|
|
42813
|
-
# Specifies options for sharing Amazon SageMaker Studio notebooks.
|
42814
|
-
# settings are specified as part of `DefaultUserSettings` when the
|
42846
|
+
# Specifies options for sharing Amazon SageMaker AI Studio notebooks.
|
42847
|
+
# These settings are specified as part of `DefaultUserSettings` when the
|
42815
42848
|
# `CreateDomain` API is called, and as part of `UserSettings` when the
|
42816
42849
|
# `CreateUserProfile` API is called. When `SharingSettings` is not
|
42817
42850
|
# specified, notebook sharing isn't allowed.
|
@@ -42892,6 +42925,10 @@ module Aws::SageMaker
|
|
42892
42925
|
# creation.
|
42893
42926
|
# @return [Types::ModelDataSource]
|
42894
42927
|
#
|
42928
|
+
# @!attribute [rw] model_data_etag
|
42929
|
+
# The ETag associated with Model Data URL.
|
42930
|
+
# @return [String]
|
42931
|
+
#
|
42895
42932
|
# @!attribute [rw] algorithm_name
|
42896
42933
|
# The name of an algorithm that was used to create the model package.
|
42897
42934
|
# The algorithm must be either an algorithm resource in your SageMaker
|
@@ -42904,6 +42941,7 @@ module Aws::SageMaker
|
|
42904
42941
|
class SourceAlgorithm < Struct.new(
|
42905
42942
|
:model_data_url,
|
42906
42943
|
:model_data_source,
|
42944
|
+
:model_data_etag,
|
42907
42945
|
:algorithm_name)
|
42908
42946
|
SENSITIVE = []
|
42909
42947
|
include Aws::Structure
|
@@ -42974,7 +43012,7 @@ module Aws::SageMaker
|
|
42974
43012
|
# The application settings for a Code Editor space.
|
42975
43013
|
#
|
42976
43014
|
# @!attribute [rw] default_resource_spec
|
42977
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
43015
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
42978
43016
|
# version, and the instance type that the version runs on.
|
42979
43017
|
# @return [Types::ResourceSpec]
|
42980
43018
|
#
|
@@ -43064,7 +43102,7 @@ module Aws::SageMaker
|
|
43064
43102
|
# The settings for the JupyterLab application within a space.
|
43065
43103
|
#
|
43066
43104
|
# @!attribute [rw] default_resource_spec
|
43067
|
-
# Specifies the ARN's of a SageMaker image and SageMaker image
|
43105
|
+
# Specifies the ARN's of a SageMaker AI image and SageMaker AI image
|
43068
43106
|
# version, and the instance type that the version runs on.
|
43069
43107
|
# @return [Types::ResourceSpec]
|
43070
43108
|
#
|
@@ -43108,6 +43146,13 @@ module Aws::SageMaker
|
|
43108
43146
|
#
|
43109
43147
|
# @!attribute [rw] app_type
|
43110
43148
|
# The type of app created within the space.
|
43149
|
+
#
|
43150
|
+
# If using the [ UpdateSpace][1] API, you can't change the app type
|
43151
|
+
# of your space by specifying a different value for this field.
|
43152
|
+
#
|
43153
|
+
#
|
43154
|
+
#
|
43155
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateSpace.html
|
43111
43156
|
# @return [String]
|
43112
43157
|
#
|
43113
43158
|
# @!attribute [rw] space_storage_settings
|
@@ -43116,8 +43161,8 @@ module Aws::SageMaker
|
|
43116
43161
|
#
|
43117
43162
|
# @!attribute [rw] custom_file_systems
|
43118
43163
|
# 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.
|
43164
|
+
# Amazon SageMaker AI Domain. Permitted users can access this file
|
43165
|
+
# system in Amazon SageMaker AI Studio.
|
43121
43166
|
# @return [Array<Types::CustomFileSystem>]
|
43122
43167
|
#
|
43123
43168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSettings AWS API Documentation
|
@@ -43718,23 +43763,23 @@ module Aws::SageMaker
|
|
43718
43763
|
include Aws::Structure
|
43719
43764
|
end
|
43720
43765
|
|
43721
|
-
# Details of the Amazon SageMaker Studio Lifecycle Configuration.
|
43766
|
+
# Details of the Amazon SageMaker AI Studio Lifecycle Configuration.
|
43722
43767
|
#
|
43723
43768
|
# @!attribute [rw] studio_lifecycle_config_arn
|
43724
43769
|
# The Amazon Resource Name (ARN) of the Lifecycle Configuration.
|
43725
43770
|
# @return [String]
|
43726
43771
|
#
|
43727
43772
|
# @!attribute [rw] studio_lifecycle_config_name
|
43728
|
-
# The name of the Amazon SageMaker Studio Lifecycle Configuration.
|
43773
|
+
# The name of the Amazon SageMaker AI Studio Lifecycle Configuration.
|
43729
43774
|
# @return [String]
|
43730
43775
|
#
|
43731
43776
|
# @!attribute [rw] creation_time
|
43732
|
-
# The creation time of the Amazon SageMaker Studio Lifecycle
|
43777
|
+
# The creation time of the Amazon SageMaker AI Studio Lifecycle
|
43733
43778
|
# Configuration.
|
43734
43779
|
# @return [Time]
|
43735
43780
|
#
|
43736
43781
|
# @!attribute [rw] last_modified_time
|
43737
|
-
# This value is equivalent to CreationTime because Amazon SageMaker
|
43782
|
+
# This value is equivalent to CreationTime because Amazon SageMaker AI
|
43738
43783
|
# Studio Lifecycle Configurations are immutable.
|
43739
43784
|
# @return [Time]
|
43740
43785
|
#
|
@@ -44129,7 +44174,7 @@ module Aws::SageMaker
|
|
44129
44174
|
#
|
44130
44175
|
# @!attribute [rw] default_resource_spec
|
44131
44176
|
# The default instance type and the Amazon Resource Name (ARN) of the
|
44132
|
-
# SageMaker image created on the instance.
|
44177
|
+
# SageMaker AI image created on the instance.
|
44133
44178
|
# @return [Types::ResourceSpec]
|
44134
44179
|
#
|
44135
44180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TensorBoardAppSettings AWS API Documentation
|
@@ -47510,7 +47555,7 @@ module Aws::SageMaker
|
|
47510
47555
|
# Specifies the VPC used for non-EFS traffic.
|
47511
47556
|
#
|
47512
47557
|
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
47513
|
-
# Amazon SageMaker, which allows direct internet access.
|
47558
|
+
# Amazon SageMaker AI, which allows direct internet access.
|
47514
47559
|
#
|
47515
47560
|
# * `VpcOnly` - All Studio traffic is through the specified VPC and
|
47516
47561
|
# subnets.
|
@@ -47832,7 +47877,7 @@ module Aws::SageMaker
|
|
47832
47877
|
# @return [String]
|
47833
47878
|
#
|
47834
47879
|
# @!attribute [rw] role_arn
|
47835
|
-
# The new ARN for the IAM role that enables Amazon SageMaker to
|
47880
|
+
# The new ARN for the IAM role that enables Amazon SageMaker AI to
|
47836
47881
|
# perform tasks on your behalf.
|
47837
47882
|
# @return [String]
|
47838
47883
|
#
|
@@ -47897,16 +47942,16 @@ module Aws::SageMaker
|
|
47897
47942
|
# @return [String]
|
47898
47943
|
#
|
47899
47944
|
# @!attribute [rw] job_type
|
47900
|
-
# Indicates SageMaker job type compatibility.
|
47945
|
+
# Indicates SageMaker AI job type compatibility.
|
47901
47946
|
#
|
47902
|
-
# * `TRAINING`: The image version is compatible with SageMaker
|
47947
|
+
# * `TRAINING`: The image version is compatible with SageMaker AI
|
47903
47948
|
# training jobs.
|
47904
47949
|
#
|
47905
|
-
# * `INFERENCE`: The image version is compatible with SageMaker
|
47950
|
+
# * `INFERENCE`: The image version is compatible with SageMaker AI
|
47906
47951
|
# inference jobs.
|
47907
47952
|
#
|
47908
47953
|
# * `NOTEBOOK_KERNEL`: The image version is compatible with SageMaker
|
47909
|
-
# notebook kernels.
|
47954
|
+
# AI notebook kernels.
|
47910
47955
|
# @return [String]
|
47911
47956
|
#
|
47912
47957
|
# @!attribute [rw] ml_framework
|
@@ -48385,11 +48430,11 @@ module Aws::SageMaker
|
|
48385
48430
|
# @return [String]
|
48386
48431
|
#
|
48387
48432
|
# @!attribute [rw] role_arn
|
48388
|
-
# The Amazon Resource Name (ARN) of the IAM role that SageMaker can
|
48433
|
+
# The Amazon Resource Name (ARN) of the IAM role that SageMaker AI can
|
48389
48434
|
# assume to access the notebook instance. For more information, see
|
48390
|
-
# [SageMaker Roles][1].
|
48435
|
+
# [SageMaker AI Roles][1].
|
48391
48436
|
#
|
48392
|
-
# <note markdown="1"> To be able to pass this role to SageMaker, the caller of this API
|
48437
|
+
# <note markdown="1"> To be able to pass this role to SageMaker AI, the caller of this API
|
48393
48438
|
# must have the `iam:PassRole` permission.
|
48394
48439
|
#
|
48395
48440
|
# </note>
|
@@ -48420,7 +48465,7 @@ module Aws::SageMaker
|
|
48420
48465
|
# @!attribute [rw] volume_size_in_gb
|
48421
48466
|
# The size, in GB, of the ML storage volume to attach to the notebook
|
48422
48467
|
# instance. The default value is 5 GB. ML storage volumes are
|
48423
|
-
# encrypted, so SageMaker can't determine the amount of available
|
48468
|
+
# encrypted, so SageMaker AI can't determine the amount of available
|
48424
48469
|
# free space on the volume. Because of this, you can increase the
|
48425
48470
|
# volume size when you update a notebook instance, but you can't
|
48426
48471
|
# decrease the volume size. If you want to decrease the size of the ML
|
@@ -48435,7 +48480,8 @@ module Aws::SageMaker
|
|
48435
48480
|
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
48436
48481
|
# Git repository. When you open a notebook instance, it opens in the
|
48437
48482
|
# directory that contains this repository. For more information, see
|
48438
|
-
# [Associating Git Repositories with SageMaker Notebook
|
48483
|
+
# [Associating Git Repositories with SageMaker AI Notebook
|
48484
|
+
# Instances][2].
|
48439
48485
|
#
|
48440
48486
|
#
|
48441
48487
|
#
|
@@ -48450,7 +48496,7 @@ module Aws::SageMaker
|
|
48450
48496
|
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
48451
48497
|
# repository. These repositories are cloned at the same level as the
|
48452
48498
|
# default repository of your notebook instance. For more information,
|
48453
|
-
# see [Associating Git Repositories with SageMaker Notebook
|
48499
|
+
# see [Associating Git Repositories with SageMaker AI Notebook
|
48454
48500
|
# Instances][2].
|
48455
48501
|
#
|
48456
48502
|
#
|
@@ -49251,8 +49297,8 @@ module Aws::SageMaker
|
|
49251
49297
|
# set to `VpcOnly`, unless specified as part of the
|
49252
49298
|
# `DefaultUserSettings` for the domain.
|
49253
49299
|
#
|
49254
|
-
# Amazon SageMaker adds a security group to allow NFS traffic from
|
49255
|
-
# Amazon SageMaker Studio. Therefore, the number of security groups
|
49300
|
+
# Amazon SageMaker AI adds a security group to allow NFS traffic from
|
49301
|
+
# Amazon SageMaker AI Studio. Therefore, the number of security groups
|
49256
49302
|
# that you can specify is one less than the maximum number shown.
|
49257
49303
|
#
|
49258
49304
|
# SageMaker applies these settings only to private spaces that the
|
@@ -49261,7 +49307,7 @@ module Aws::SageMaker
|
|
49261
49307
|
# @return [Array<String>]
|
49262
49308
|
#
|
49263
49309
|
# @!attribute [rw] sharing_settings
|
49264
|
-
# Specifies options for sharing Amazon SageMaker Studio notebooks.
|
49310
|
+
# Specifies options for sharing Amazon SageMaker AI Studio notebooks.
|
49265
49311
|
# @return [Types::SharingSettings]
|
49266
49312
|
#
|
49267
49313
|
# @!attribute [rw] jupyter_server_app_settings
|
@@ -49344,7 +49390,7 @@ module Aws::SageMaker
|
|
49344
49390
|
#
|
49345
49391
|
# @!attribute [rw] custom_file_system_configs
|
49346
49392
|
# The settings for assigning a custom file system to a user profile.
|
49347
|
-
# Permitted users can access this file system in Amazon SageMaker
|
49393
|
+
# Permitted users can access this file system in Amazon SageMaker AI
|
49348
49394
|
# Studio.
|
49349
49395
|
#
|
49350
49396
|
# SageMaker applies these settings only to private spaces that the
|