aws-sdk-sagemaker 1.229.0 → 1.231.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +79 -35
- data/lib/aws-sdk-sagemaker/client_api.rb +17 -0
- data/lib/aws-sdk-sagemaker/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-sagemaker/endpoints.rb +14 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +3 -0
- data/lib/aws-sdk-sagemaker/types.rb +144 -88
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +8797 -0
- data/sig/errors.rbs +28 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +9423 -0
- data/sig/waiters.rbs +147 -0
- metadata +9 -4
@@ -1311,7 +1311,7 @@ module Aws::SageMaker
|
|
1311
1311
|
# app.
|
1312
1312
|
#
|
1313
1313
|
# @!attribute [rw] app_image_config_arn
|
1314
|
-
# The
|
1314
|
+
# The ARN of the AppImageConfig.
|
1315
1315
|
# @return [String]
|
1316
1316
|
#
|
1317
1317
|
# @!attribute [rw] app_image_config_name
|
@@ -2450,7 +2450,7 @@ module Aws::SageMaker
|
|
2450
2450
|
# The output data configuration.
|
2451
2451
|
#
|
2452
2452
|
# @!attribute [rw] kms_key_id
|
2453
|
-
# The Key Management Service
|
2453
|
+
# The Key Management Service encryption key ID.
|
2454
2454
|
# @return [String]
|
2455
2455
|
#
|
2456
2456
|
# @!attribute [rw] s3_output_path
|
@@ -3234,6 +3234,10 @@ module Aws::SageMaker
|
|
3234
3234
|
# The settings for document querying.
|
3235
3235
|
# @return [Types::KendraSettings]
|
3236
3236
|
#
|
3237
|
+
# @!attribute [rw] generative_ai_settings
|
3238
|
+
# The generative AI settings for the SageMaker Canvas application.
|
3239
|
+
# @return [Types::GenerativeAiSettings]
|
3240
|
+
#
|
3237
3241
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CanvasAppSettings AWS API Documentation
|
3238
3242
|
#
|
3239
3243
|
class CanvasAppSettings < Struct.new(
|
@@ -3242,7 +3246,8 @@ module Aws::SageMaker
|
|
3242
3246
|
:workspace_settings,
|
3243
3247
|
:identity_provider_o_auth_settings,
|
3244
3248
|
:direct_deploy_settings,
|
3245
|
-
:kendra_settings
|
3249
|
+
:kendra_settings,
|
3250
|
+
:generative_ai_settings)
|
3246
3251
|
SENSITIVE = []
|
3247
3252
|
include Aws::Structure
|
3248
3253
|
end
|
@@ -4992,7 +4997,7 @@ module Aws::SageMaker
|
|
4992
4997
|
end
|
4993
4998
|
|
4994
4999
|
# @!attribute [rw] app_image_config_arn
|
4995
|
-
# The
|
5000
|
+
# The ARN of the AppImageConfig.
|
4996
5001
|
# @return [String]
|
4997
5002
|
#
|
4998
5003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppImageConfigResponse AWS API Documentation
|
@@ -5148,8 +5153,8 @@ module Aws::SageMaker
|
|
5148
5153
|
#
|
5149
5154
|
# @!attribute [rw] problem_type
|
5150
5155
|
# Defines the type of supervised learning problem available for the
|
5151
|
-
# candidates. For more information, see [
|
5152
|
-
#
|
5156
|
+
# candidates. For more information, see [ SageMaker Autopilot problem
|
5157
|
+
# types][1].
|
5153
5158
|
#
|
5154
5159
|
#
|
5155
5160
|
#
|
@@ -6744,8 +6749,8 @@ module Aws::SageMaker
|
|
6744
6749
|
|
6745
6750
|
# @!attribute [rw] base_image
|
6746
6751
|
# The registry path of the container image to use as the starting
|
6747
|
-
# point for this version. The path is an Amazon
|
6748
|
-
#
|
6752
|
+
# point for this version. The path is an Amazon ECR URI in the
|
6753
|
+
# following format:
|
6749
6754
|
#
|
6750
6755
|
# `<acct-id>.dkr.ecr.<region>.amazonaws.com/<repo-name[:tag] or
|
6751
6756
|
# [@digest]>`
|
@@ -8624,7 +8629,7 @@ module Aws::SageMaker
|
|
8624
8629
|
end
|
8625
8630
|
|
8626
8631
|
# @!attribute [rw] domain_id
|
8627
|
-
# The ID of the associated
|
8632
|
+
# The ID of the associated domain.
|
8628
8633
|
# @return [String]
|
8629
8634
|
#
|
8630
8635
|
# @!attribute [rw] space_name
|
@@ -10176,15 +10181,15 @@ module Aws::SageMaker
|
|
10176
10181
|
include Aws::Structure
|
10177
10182
|
end
|
10178
10183
|
|
10179
|
-
# A collection of settings that apply to spaces created in the
|
10184
|
+
# A collection of settings that apply to spaces created in the domain.
|
10180
10185
|
#
|
10181
10186
|
# @!attribute [rw] execution_role
|
10182
10187
|
# The ARN of the execution role for the space.
|
10183
10188
|
# @return [String]
|
10184
10189
|
#
|
10185
10190
|
# @!attribute [rw] security_groups
|
10186
|
-
# The security group IDs for the Amazon
|
10187
|
-
#
|
10191
|
+
# The security group IDs for the Amazon VPC that the space uses for
|
10192
|
+
# communication.
|
10188
10193
|
# @return [Array<String>]
|
10189
10194
|
#
|
10190
10195
|
# @!attribute [rw] jupyter_server_app_settings
|
@@ -10647,6 +10652,18 @@ module Aws::SageMaker
|
|
10647
10652
|
#
|
10648
10653
|
class DeleteHumanTaskUiResponse < Aws::EmptyStructure; end
|
10649
10654
|
|
10655
|
+
# @!attribute [rw] hyper_parameter_tuning_job_name
|
10656
|
+
# The name of the hyperparameter tuning job that you want to delete.
|
10657
|
+
# @return [String]
|
10658
|
+
#
|
10659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteHyperParameterTuningJobRequest AWS API Documentation
|
10660
|
+
#
|
10661
|
+
class DeleteHyperParameterTuningJobRequest < Struct.new(
|
10662
|
+
:hyper_parameter_tuning_job_name)
|
10663
|
+
SENSITIVE = []
|
10664
|
+
include Aws::Structure
|
10665
|
+
end
|
10666
|
+
|
10650
10667
|
# @!attribute [rw] image_name
|
10651
10668
|
# The name of the image to delete.
|
10652
10669
|
# @return [String]
|
@@ -10908,7 +10925,7 @@ module Aws::SageMaker
|
|
10908
10925
|
end
|
10909
10926
|
|
10910
10927
|
# @!attribute [rw] domain_id
|
10911
|
-
# The ID of the associated
|
10928
|
+
# The ID of the associated domain.
|
10912
10929
|
# @return [String]
|
10913
10930
|
#
|
10914
10931
|
# @!attribute [rw] space_name
|
@@ -11435,7 +11452,7 @@ module Aws::SageMaker
|
|
11435
11452
|
end
|
11436
11453
|
|
11437
11454
|
# @!attribute [rw] app_image_config_arn
|
11438
|
-
# The
|
11455
|
+
# The ARN of the AppImageConfig.
|
11439
11456
|
# @return [String]
|
11440
11457
|
#
|
11441
11458
|
# @!attribute [rw] app_image_config_name
|
@@ -11682,9 +11699,9 @@ module Aws::SageMaker
|
|
11682
11699
|
# @return [Types::AutoMLOutputDataConfig]
|
11683
11700
|
#
|
11684
11701
|
# @!attribute [rw] role_arn
|
11685
|
-
# The
|
11686
|
-
#
|
11687
|
-
#
|
11702
|
+
# The ARN of the IAM role that has read permission to the input data
|
11703
|
+
# location and write permission to the output data location in Amazon
|
11704
|
+
# S3.
|
11688
11705
|
# @return [String]
|
11689
11706
|
#
|
11690
11707
|
# @!attribute [rw] auto_ml_job_objective
|
@@ -11820,9 +11837,9 @@ module Aws::SageMaker
|
|
11820
11837
|
# @return [Types::AutoMLOutputDataConfig]
|
11821
11838
|
#
|
11822
11839
|
# @!attribute [rw] role_arn
|
11823
|
-
# The ARN of the
|
11824
|
-
# permission to the
|
11825
|
-
#
|
11840
|
+
# The ARN of the IAM role that has read permission to the input data
|
11841
|
+
# location and write permission to the output data location in Amazon
|
11842
|
+
# S3.
|
11826
11843
|
# @return [String]
|
11827
11844
|
#
|
11828
11845
|
# @!attribute [rw] auto_ml_job_objective
|
@@ -12539,8 +12556,7 @@ module Aws::SageMaker
|
|
12539
12556
|
# @return [String]
|
12540
12557
|
#
|
12541
12558
|
# @!attribute [rw] home_efs_file_system_id
|
12542
|
-
# The ID of the Amazon Elastic File System
|
12543
|
-
# Domain.
|
12559
|
+
# The ID of the Amazon Elastic File System managed by this Domain.
|
12544
12560
|
# @return [String]
|
12545
12561
|
#
|
12546
12562
|
# @!attribute [rw] single_sign_on_managed_application_instance_id
|
@@ -13244,17 +13260,17 @@ module Aws::SageMaker
|
|
13244
13260
|
# @return [Types::OfflineStoreConfig]
|
13245
13261
|
#
|
13246
13262
|
# @!attribute [rw] throughput_config
|
13247
|
-
# Active throughput configuration of the feature group.
|
13248
|
-
#
|
13249
|
-
#
|
13250
|
-
#
|
13251
|
-
#
|
13252
|
-
#
|
13253
|
-
#
|
13254
|
-
#
|
13255
|
-
#
|
13256
|
-
#
|
13257
|
-
#
|
13263
|
+
# Active throughput configuration of the feature group. There are two
|
13264
|
+
# modes: `ON_DEMAND` and `PROVISIONED`. With on-demand mode, you are
|
13265
|
+
# charged for data reads and writes that your application performs on
|
13266
|
+
# your feature group. You do not need to specify read and write
|
13267
|
+
# throughput because Feature Store accommodates your workloads as they
|
13268
|
+
# ramp up and down. You can switch a feature group to on-demand only
|
13269
|
+
# once in a 24 hour period. With provisioned throughput mode, you
|
13270
|
+
# specify the read and write capacity per second that you expect your
|
13271
|
+
# application to require, and you are billed based on those limits.
|
13272
|
+
# Exceeding provisioned throughput will result in your requests being
|
13273
|
+
# throttled.
|
13258
13274
|
#
|
13259
13275
|
# Note: `PROVISIONED` throughput mode is supported only for feature
|
13260
13276
|
# groups that are offline-only, or use the [ `Standard` ][1] tier
|
@@ -13756,8 +13772,7 @@ module Aws::SageMaker
|
|
13756
13772
|
# @return [Array<Types::HyperParameterTrainingJobDefinition>]
|
13757
13773
|
#
|
13758
13774
|
# @!attribute [rw] hyper_parameter_tuning_job_status
|
13759
|
-
# The status of the tuning job
|
13760
|
-
# Stopping, or Stopped.
|
13775
|
+
# The status of the tuning job.
|
13761
13776
|
# @return [String]
|
13762
13777
|
#
|
13763
13778
|
# @!attribute [rw] creation_time
|
@@ -15054,7 +15069,7 @@ module Aws::SageMaker
|
|
15054
15069
|
end
|
15055
15070
|
|
15056
15071
|
# @!attribute [rw] model_package_group_name
|
15057
|
-
# The name of
|
15072
|
+
# The name of the model group to describe.
|
15058
15073
|
# @return [String]
|
15059
15074
|
#
|
15060
15075
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageGroupInput AWS API Documentation
|
@@ -16103,7 +16118,7 @@ module Aws::SageMaker
|
|
16103
16118
|
end
|
16104
16119
|
|
16105
16120
|
# @!attribute [rw] domain_id
|
16106
|
-
# The ID of the associated
|
16121
|
+
# The ID of the associated domain.
|
16107
16122
|
# @return [String]
|
16108
16123
|
#
|
16109
16124
|
# @!attribute [rw] space_name
|
@@ -16120,7 +16135,7 @@ module Aws::SageMaker
|
|
16120
16135
|
end
|
16121
16136
|
|
16122
16137
|
# @!attribute [rw] domain_id
|
16123
|
-
# The ID of the associated
|
16138
|
+
# The ID of the associated domain.
|
16124
16139
|
# @return [String]
|
16125
16140
|
#
|
16126
16141
|
# @!attribute [rw] space_arn
|
@@ -16132,8 +16147,7 @@ module Aws::SageMaker
|
|
16132
16147
|
# @return [String]
|
16133
16148
|
#
|
16134
16149
|
# @!attribute [rw] home_efs_file_system_uid
|
16135
|
-
# The ID of the space's profile in the Amazon
|
16136
|
-
# volume.
|
16150
|
+
# The ID of the space's profile in the Amazon EFS volume.
|
16137
16151
|
# @return [String]
|
16138
16152
|
#
|
16139
16153
|
# @!attribute [rw] status
|
@@ -17088,7 +17102,7 @@ module Aws::SageMaker
|
|
17088
17102
|
#
|
17089
17103
|
# @!attribute [rw] home_efs_file_system_uid
|
17090
17104
|
# The ID of the user's profile in the Amazon Elastic File System
|
17091
|
-
#
|
17105
|
+
# volume.
|
17092
17106
|
# @return [String]
|
17093
17107
|
#
|
17094
17108
|
# @!attribute [rw] status
|
@@ -19282,8 +19296,8 @@ module Aws::SageMaker
|
|
19282
19296
|
include Aws::Structure
|
19283
19297
|
end
|
19284
19298
|
|
19285
|
-
# The Amazon Elastic File System
|
19286
|
-
#
|
19299
|
+
# The Amazon Elastic File System storage configuration for a SageMaker
|
19300
|
+
# image.
|
19287
19301
|
#
|
19288
19302
|
# @!attribute [rw] mount_path
|
19289
19303
|
# The path within the image to mount the user's EFS home directory.
|
@@ -19651,6 +19665,32 @@ module Aws::SageMaker
|
|
19651
19665
|
include Aws::Structure
|
19652
19666
|
end
|
19653
19667
|
|
19668
|
+
# The generative AI settings for the SageMaker Canvas application.
|
19669
|
+
#
|
19670
|
+
# Configure these settings for Canvas users starting chats with
|
19671
|
+
# generative AI foundation models. For more information, see [ Use
|
19672
|
+
# generative AI with foundation models][1].
|
19673
|
+
#
|
19674
|
+
#
|
19675
|
+
#
|
19676
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/canvas-fm-chat.html
|
19677
|
+
#
|
19678
|
+
# @!attribute [rw] amazon_bedrock_role_arn
|
19679
|
+
# The ARN of an Amazon Web Services IAM role that allows fine-tuning
|
19680
|
+
# of large language models (LLMs) in Amazon Bedrock. The IAM role
|
19681
|
+
# should have Amazon S3 read and write permissions, as well as a trust
|
19682
|
+
# relationship that establishes `bedrock.amazonaws.com` as a service
|
19683
|
+
# principal.
|
19684
|
+
# @return [String]
|
19685
|
+
#
|
19686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GenerativeAiSettings AWS API Documentation
|
19687
|
+
#
|
19688
|
+
class GenerativeAiSettings < Struct.new(
|
19689
|
+
:amazon_bedrock_role_arn)
|
19690
|
+
SENSITIVE = []
|
19691
|
+
include Aws::Structure
|
19692
|
+
end
|
19693
|
+
|
19654
19694
|
# @!attribute [rw] device_fleet_name
|
19655
19695
|
# The name of the fleet.
|
19656
19696
|
# @return [String]
|
@@ -22356,7 +22396,7 @@ module Aws::SageMaker
|
|
22356
22396
|
# a training job launched by a hyperparameter tuning job. Once a job
|
22357
22397
|
# reaches the `MaxResource` value, it is stopped. If a value for
|
22358
22398
|
# `MaxResource` is not provided, and `Hyperband` is selected as the
|
22359
|
-
# hyperparameter tuning strategy, `
|
22399
|
+
# hyperparameter tuning strategy, `HyperbandTraining` attempts to
|
22360
22400
|
# infer `MaxResource` from the following keys (if present) in
|
22361
22401
|
# [StaticsHyperParameters][1]:
|
22362
22402
|
#
|
@@ -22374,7 +22414,7 @@ module Aws::SageMaker
|
|
22374
22414
|
# `MaxResource`, it generates a validation error. The maximum value is
|
22375
22415
|
# 20,000 epochs. All metrics that correspond to an objective metric
|
22376
22416
|
# are used to derive [early stopping decisions][2]. For
|
22377
|
-
# [
|
22417
|
+
# [distributed][3] training jobs, ensure that duplicate metrics are
|
22378
22418
|
# not printed in the logs across the individual nodes in a training
|
22379
22419
|
# job. If multiple nodes are publishing duplicate or incorrect
|
22380
22420
|
# metrics, training jobs may make an incorrect stopping decision and
|
@@ -23693,8 +23733,8 @@ module Aws::SageMaker
|
|
23693
23733
|
# running as a JupyterLab app.
|
23694
23734
|
#
|
23695
23735
|
# @!attribute [rw] file_system_config
|
23696
|
-
# The Amazon Elastic File System
|
23697
|
-
#
|
23736
|
+
# The Amazon Elastic File System storage configuration for a SageMaker
|
23737
|
+
# image.
|
23698
23738
|
# @return [Types::FileSystemConfig]
|
23699
23739
|
#
|
23700
23740
|
# @!attribute [rw] container_config
|
@@ -23803,8 +23843,7 @@ module Aws::SageMaker
|
|
23803
23843
|
#
|
23804
23844
|
# <note markdown="1"> The Amazon SageMaker Studio UI does not use the default instance
|
23805
23845
|
# type value set here. The default instance type set here is used when
|
23806
|
-
# Apps are created using the
|
23807
|
-
# Interface or Amazon Web Services CloudFormation and the instance
|
23846
|
+
# Apps are created using the CLI or CloudFormation and the instance
|
23808
23847
|
# type parameter value is not passed.
|
23809
23848
|
#
|
23810
23849
|
# </note>
|
@@ -23843,8 +23882,8 @@ module Aws::SageMaker
|
|
23843
23882
|
# @return [Array<Types::KernelSpec>]
|
23844
23883
|
#
|
23845
23884
|
# @!attribute [rw] file_system_config
|
23846
|
-
# The Amazon Elastic File System
|
23847
|
-
#
|
23885
|
+
# The Amazon Elastic File System storage configuration for a SageMaker
|
23886
|
+
# image.
|
23848
23887
|
# @return [Types::FileSystemConfig]
|
23849
23888
|
#
|
23850
23889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/KernelGatewayImageConfig AWS API Documentation
|
@@ -29093,7 +29132,7 @@ module Aws::SageMaker
|
|
29093
29132
|
# @return [String]
|
29094
29133
|
#
|
29095
29134
|
# @!attribute [rw] domain_id_equals
|
29096
|
-
# A parameter to search for the
|
29135
|
+
# A parameter to search for the domain ID.
|
29097
29136
|
# @return [String]
|
29098
29137
|
#
|
29099
29138
|
# @!attribute [rw] space_name_contains
|
@@ -30211,14 +30250,22 @@ module Aws::SageMaker
|
|
30211
30250
|
include Aws::Structure
|
30212
30251
|
end
|
30213
30252
|
|
30214
|
-
# The access configuration file
|
30215
|
-
# accept the model end-user license agreement (EULA)
|
30216
|
-
# `ModelAccessConfig`.
|
30217
|
-
#
|
30253
|
+
# The access configuration file to control access to the ML model. You
|
30254
|
+
# can explicitly accept the model end-user license agreement (EULA)
|
30255
|
+
# within the `ModelAccessConfig`.
|
30256
|
+
#
|
30257
|
+
# * If you are a Jumpstart user, see the [End-user license
|
30258
|
+
# agreements][1] section for more details on accepting the EULA.
|
30259
|
+
#
|
30260
|
+
# * If you are an AutoML user, see the *Optional Parameters* section of
|
30261
|
+
# *Create an AutoML job to fine-tune text generation models using the
|
30262
|
+
# API* for details on [How to set the EULA acceptance when fine-tuning
|
30263
|
+
# a model using the AutoML API][2].
|
30218
30264
|
#
|
30219
30265
|
#
|
30220
30266
|
#
|
30221
30267
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/jumpstart-foundation-models-choose.html#jumpstart-foundation-models-choose-eula
|
30268
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-create-experiment-finetune-llms.html#autopilot-llms-finetuning-api-optional-params
|
30222
30269
|
#
|
30223
30270
|
# @!attribute [rw] accept_eula
|
30224
30271
|
# Specifies agreement to the model end-user license agreement (EULA).
|
@@ -32958,9 +33005,9 @@ module Aws::SageMaker
|
|
32958
33005
|
# The value of the `$PATH` environment variable that is available to
|
32959
33006
|
# both scripts is `/sbin:bin:/usr/sbin:/usr/bin`.
|
32960
33007
|
#
|
32961
|
-
# View CloudWatch Logs for notebook instance lifecycle
|
32962
|
-
# log group `/aws/sagemaker/NotebookInstances` in log
|
32963
|
-
# `[notebook-instance-name]/[LifecycleConfigHook]`.
|
33008
|
+
# View Amazon CloudWatch Logs for notebook instance lifecycle
|
33009
|
+
# configurations in log group `/aws/sagemaker/NotebookInstances` in log
|
33010
|
+
# stream `[notebook-instance-name]/[LifecycleConfigHook]`.
|
32964
33011
|
#
|
32965
33012
|
# Lifecycle configuration scripts cannot run for longer than 5 minutes.
|
32966
33013
|
# If a script runs for longer than 5 minutes, it fails and the notebook
|
@@ -37589,13 +37636,13 @@ module Aws::SageMaker
|
|
37589
37636
|
end
|
37590
37637
|
|
37591
37638
|
# The retention policy for data stored on an Amazon Elastic File System
|
37592
|
-
#
|
37639
|
+
# volume.
|
37593
37640
|
#
|
37594
37641
|
# @!attribute [rw] home_efs_file_system
|
37595
37642
|
# The default is `Retain`, which specifies to keep the data stored on
|
37596
|
-
# the EFS volume.
|
37643
|
+
# the Amazon EFS volume.
|
37597
37644
|
#
|
37598
|
-
# Specify `Delete` to delete the data stored on the EFS volume.
|
37645
|
+
# Specify `Delete` to delete the data stored on the Amazon EFS volume.
|
37599
37646
|
# @return [String]
|
37600
37647
|
#
|
37601
37648
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetentionPolicy AWS API Documentation
|
@@ -37731,7 +37778,7 @@ module Aws::SageMaker
|
|
37731
37778
|
# either a key name prefix or a manifest. For example:
|
37732
37779
|
#
|
37733
37780
|
# * A key name prefix might look like this:
|
37734
|
-
# `s3://bucketname/exampleprefix
|
37781
|
+
# `s3://bucketname/exampleprefix/`
|
37735
37782
|
#
|
37736
37783
|
# * A manifest might look like this:
|
37737
37784
|
# `s3://bucketname/example.manifest`
|
@@ -38944,7 +38991,7 @@ module Aws::SageMaker
|
|
38944
38991
|
# The space's details.
|
38945
38992
|
#
|
38946
38993
|
# @!attribute [rw] domain_id
|
38947
|
-
# The ID of the associated
|
38994
|
+
# The ID of the associated domain.
|
38948
38995
|
# @return [String]
|
38949
38996
|
#
|
38950
38997
|
# @!attribute [rw] space_name
|
@@ -39766,7 +39813,7 @@ module Aws::SageMaker
|
|
39766
39813
|
#
|
39767
39814
|
# @!attribute [rw] problem_type
|
39768
39815
|
# The type of supervised learning problem available for the model
|
39769
|
-
# candidates of the AutoML job V2. For more information, see [
|
39816
|
+
# candidates of the AutoML job V2. For more information, see [
|
39770
39817
|
# SageMaker Autopilot problem types][1].
|
39771
39818
|
#
|
39772
39819
|
# <note markdown="1"> You must either specify the type of supervised learning problem in
|
@@ -39827,8 +39874,8 @@ module Aws::SageMaker
|
|
39827
39874
|
# @!attribute [rw] problem_type
|
39828
39875
|
# The type of supervised learning problem available for the model
|
39829
39876
|
# candidates of the AutoML job V2 (Binary Classification, Multiclass
|
39830
|
-
# Classification, Regression). For more information, see [
|
39831
|
-
#
|
39877
|
+
# Classification, Regression). For more information, see [ SageMaker
|
39878
|
+
# Autopilot problem types][1].
|
39832
39879
|
#
|
39833
39880
|
#
|
39834
39881
|
#
|
@@ -40092,14 +40139,22 @@ module Aws::SageMaker
|
|
40092
40139
|
# @return [Hash<String,String>]
|
40093
40140
|
#
|
40094
40141
|
# @!attribute [rw] model_access_config
|
40095
|
-
# The access configuration file
|
40096
|
-
# accept the model end-user license agreement (EULA)
|
40097
|
-
# `ModelAccessConfig`.
|
40098
|
-
#
|
40142
|
+
# The access configuration file to control access to the ML model. You
|
40143
|
+
# can explicitly accept the model end-user license agreement (EULA)
|
40144
|
+
# within the `ModelAccessConfig`.
|
40145
|
+
#
|
40146
|
+
# * If you are a Jumpstart user, see the [End-user license
|
40147
|
+
# agreements][1] section for more details on accepting the EULA.
|
40148
|
+
#
|
40149
|
+
# * If you are an AutoML user, see the *Optional Parameters* section
|
40150
|
+
# of *Create an AutoML job to fine-tune text generation models using
|
40151
|
+
# the API* for details on [How to set the EULA acceptance when
|
40152
|
+
# fine-tuning a model using the AutoML API][2].
|
40099
40153
|
#
|
40100
40154
|
#
|
40101
40155
|
#
|
40102
40156
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/jumpstart-foundation-models-choose.html#jumpstart-foundation-models-choose-eula
|
40157
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-create-experiment-finetune-llms.html#autopilot-llms-finetuning-api-optional-params
|
40103
40158
|
# @return [Types::ModelAccessConfig]
|
40104
40159
|
#
|
40105
40160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TextGenerationJobConfig AWS API Documentation
|
@@ -40177,17 +40232,17 @@ module Aws::SageMaker
|
|
40177
40232
|
include Aws::Structure
|
40178
40233
|
end
|
40179
40234
|
|
40180
|
-
# Active throughput configuration of the feature group.
|
40181
|
-
#
|
40182
|
-
#
|
40183
|
-
#
|
40184
|
-
#
|
40185
|
-
#
|
40186
|
-
#
|
40187
|
-
#
|
40188
|
-
#
|
40189
|
-
#
|
40190
|
-
#
|
40235
|
+
# Active throughput configuration of the feature group. There are two
|
40236
|
+
# modes: `ON_DEMAND` and `PROVISIONED`. With on-demand mode, you are
|
40237
|
+
# charged for data reads and writes that your application performs on
|
40238
|
+
# your feature group. You do not need to specify read and write
|
40239
|
+
# throughput because Feature Store accommodates your workloads as they
|
40240
|
+
# ramp up and down. You can switch a feature group to on-demand only
|
40241
|
+
# once in a 24 hour period. With provisioned throughput mode, you
|
40242
|
+
# specify the read and write capacity per second that you expect your
|
40243
|
+
# application to require, and you are billed based on those limits.
|
40244
|
+
# Exceeding provisioned throughput will result in your requests being
|
40245
|
+
# throttled.
|
40191
40246
|
#
|
40192
40247
|
# Note: `PROVISIONED` throughput mode is supported only for feature
|
40193
40248
|
# groups that are offline-only, or use the [ `Standard` ][1] tier online
|
@@ -41777,7 +41832,7 @@ module Aws::SageMaker
|
|
41777
41832
|
# either a key name prefix or a manifest. For example:
|
41778
41833
|
#
|
41779
41834
|
# * A key name prefix might look like this:
|
41780
|
-
# `s3://bucketname/exampleprefix
|
41835
|
+
# `s3://bucketname/exampleprefix/`.
|
41781
41836
|
#
|
41782
41837
|
# * A manifest might look like this:
|
41783
41838
|
# `s3://bucketname/example.manifest`
|
@@ -42685,7 +42740,7 @@ module Aws::SageMaker
|
|
42685
42740
|
end
|
42686
42741
|
|
42687
42742
|
# @!attribute [rw] app_image_config_arn
|
42688
|
-
# The
|
42743
|
+
# The ARN for the AppImageConfig.
|
42689
42744
|
# @return [String]
|
42690
42745
|
#
|
42691
42746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateAppImageConfigResponse AWS API Documentation
|
@@ -42916,7 +42971,7 @@ module Aws::SageMaker
|
|
42916
42971
|
# @return [String]
|
42917
42972
|
#
|
42918
42973
|
# @!attribute [rw] default_space_settings
|
42919
|
-
# The default settings used to create a space within the
|
42974
|
+
# The default settings used to create a space within the domain.
|
42920
42975
|
# @return [Types::DefaultSpaceSettings]
|
42921
42976
|
#
|
42922
42977
|
# @!attribute [rw] subnet_ids
|
@@ -44028,7 +44083,7 @@ module Aws::SageMaker
|
|
44028
44083
|
end
|
44029
44084
|
|
44030
44085
|
# @!attribute [rw] domain_id
|
44031
|
-
# The ID of the associated
|
44086
|
+
# The ID of the associated domain.
|
44032
44087
|
# @return [String]
|
44033
44088
|
#
|
44034
44089
|
# @!attribute [rw] space_name
|
@@ -44669,8 +44724,9 @@ module Aws::SageMaker
|
|
44669
44724
|
# The list of key-value pairs that you specify for your resources.
|
44670
44725
|
#
|
44671
44726
|
# @!attribute [rw] key
|
44672
|
-
# The key
|
44673
|
-
# search results.
|
44727
|
+
# The key that specifies the tag that you're using to filter the
|
44728
|
+
# search results. It must be in the following format:
|
44729
|
+
# `Tags.<key>/EqualsIfExists`.
|
44674
44730
|
# @return [String]
|
44675
44731
|
#
|
44676
44732
|
# @!attribute [rw] value
|