aws-sdk-sagemaker 1.55.0 → 1.60.1
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/lib/aws-sdk-sagemaker.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +144 -66
- data/lib/aws-sdk-sagemaker/client_api.rb +5 -2
- data/lib/aws-sdk-sagemaker/types.rb +304 -221
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ddb71cf7dd85c13f58c7c3e5ea44323fc2ac716be22c01773716ee8a99e6beb
|
4
|
+
data.tar.gz: 4a78a2506ef98e80e42d1d3ab504c0c8fc2390757de5d30bc248e10c0a34080e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35f483ce8747277e78e1ae14c23cbadf86a5094abe8c3094d721393b68f3a4e056ea1820ba4fa2c79772a828c60bb43e2466a908f82251b2e17837773c1219b8
|
7
|
+
data.tar.gz: a8f45cdd3f6e342341d6e77b9e1e4c76f2c526a66a338d9ec7ef1d71636406f869d779f64a7c920d56458f286d8a20bec7a1b1e4f7818c3df17a7d0a6ba61c68
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
30
|
|
@@ -69,6 +70,7 @@ module Aws::SageMaker
|
|
69
70
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
71
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
72
|
add_plugin(Aws::Plugins::TransferEncoding)
|
73
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
74
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
75
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
76
|
|
@@ -105,7 +107,7 @@ module Aws::SageMaker
|
|
105
107
|
# @option options [required, String] :region
|
106
108
|
# The AWS region to connect to. The configured `:region` is
|
107
109
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
109
111
|
#
|
110
112
|
# * `Aws.config[:region]`
|
111
113
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +163,7 @@ module Aws::SageMaker
|
|
161
163
|
# @option options [String] :endpoint
|
162
164
|
# The client endpoint is normally constructed from the `:region`
|
163
165
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
166
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
167
|
#
|
166
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +178,7 @@ module Aws::SageMaker
|
|
176
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
179
|
#
|
178
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
182
|
#
|
181
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
184
|
# The log formatter.
|
@@ -648,14 +650,11 @@ module Aws::SageMaker
|
|
648
650
|
end
|
649
651
|
|
650
652
|
# Creates a running App for the specified UserProfile. Supported Apps
|
651
|
-
# are JupyterServer and
|
652
|
-
# invoked by Amazon SageMaker
|
653
|
-
#
|
654
|
-
#
|
655
|
-
#
|
656
|
-
# deleted when stopped from within Studio, or when the DeleteApp API is
|
657
|
-
# manually called. UserProfiles are limited to 5 concurrently running
|
658
|
-
# Apps at a time.
|
653
|
+
# are JupyterServer, KernelGateway, and TensorBoard. This operation is
|
654
|
+
# automatically invoked by Amazon SageMaker Studio upon access to the
|
655
|
+
# associated Domain, and when new kernel configurations are selected by
|
656
|
+
# the user. A user may have multiple Apps active simultaneously.
|
657
|
+
# UserProfiles are limited to 5 concurrently running Apps at a time.
|
659
658
|
#
|
660
659
|
# @option params [required, String] :domain_id
|
661
660
|
# The domain ID.
|
@@ -674,7 +673,8 @@ module Aws::SageMaker
|
|
674
673
|
# unique per resource.
|
675
674
|
#
|
676
675
|
# @option params [Types::ResourceSpec] :resource_spec
|
677
|
-
# The instance type and
|
676
|
+
# The instance type and the Amazon Resource Name (ARN) of the SageMaker
|
677
|
+
# image created on the instance.
|
678
678
|
#
|
679
679
|
# @return [Types::CreateAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
680
680
|
#
|
@@ -990,39 +990,51 @@ module Aws::SageMaker
|
|
990
990
|
req.send_request(options)
|
991
991
|
end
|
992
992
|
|
993
|
-
# Creates a Domain
|
994
|
-
#
|
995
|
-
#
|
996
|
-
#
|
997
|
-
#
|
998
|
-
#
|
999
|
-
#
|
1000
|
-
#
|
1001
|
-
#
|
1002
|
-
#
|
993
|
+
# Creates a `Domain` used by SageMaker Studio. A domain consists of an
|
994
|
+
# associated directory, a list of authorized users, and a variety of
|
995
|
+
# security, application, policy, and Amazon Virtual Private Cloud (VPC)
|
996
|
+
# configurations. An AWS account is limited to one domain per region.
|
997
|
+
# Users within a domain can share notebook files and other artifacts
|
998
|
+
# with each other.
|
999
|
+
#
|
1000
|
+
# When a domain is created, an Amazon Elastic File System (EFS) volume
|
1001
|
+
# is also created for use by all of the users within the domain. Each
|
1002
|
+
# user receives a private home directory within the EFS for notebooks,
|
1003
|
+
# Git repositories, and data files.
|
1004
|
+
#
|
1005
|
+
# All traffic between the domain and the EFS volume is communicated
|
1006
|
+
# through the specified subnet IDs. All other traffic goes over the
|
1007
|
+
# Internet through an Amazon SageMaker system VPC. The EFS traffic uses
|
1008
|
+
# the NFS/TCP protocol over port 2049.
|
1009
|
+
#
|
1010
|
+
# NFS traffic over TCP on port 2049 needs to be allowed in both inbound
|
1011
|
+
# and outbound rules in order to launch a SageMaker Studio app
|
1012
|
+
# successfully.
|
1003
1013
|
#
|
1004
1014
|
# @option params [required, String] :domain_name
|
1005
1015
|
# A name for the domain.
|
1006
1016
|
#
|
1007
1017
|
# @option params [required, String] :auth_mode
|
1008
|
-
# The mode of authentication that
|
1018
|
+
# The mode of authentication that members use to access the domain.
|
1009
1019
|
#
|
1010
1020
|
# @option params [required, Types::UserSettings] :default_user_settings
|
1011
1021
|
# The default user settings.
|
1012
1022
|
#
|
1013
1023
|
# @option params [required, Array<String>] :subnet_ids
|
1014
|
-
#
|
1024
|
+
# The VPC subnets to use for communication with the EFS volume.
|
1015
1025
|
#
|
1016
1026
|
# @option params [required, String] :vpc_id
|
1017
|
-
#
|
1018
|
-
#
|
1027
|
+
# The ID of the Amazon Virtual Private Cloud (VPC) to use for
|
1028
|
+
# communication with the EFS volume.
|
1019
1029
|
#
|
1020
1030
|
# @option params [Array<Types::Tag>] :tags
|
1021
|
-
# Each tag consists of a key and an
|
1022
|
-
# unique per resource.
|
1031
|
+
# Tags to associated with the Domain. Each tag consists of a key and an
|
1032
|
+
# optional value. Tag keys must be unique per resource. Tags are
|
1033
|
+
# searchable using the Search API.
|
1023
1034
|
#
|
1024
1035
|
# @option params [String] :home_efs_file_system_kms_key_id
|
1025
|
-
# The AWS Key Management Service encryption key ID.
|
1036
|
+
# The AWS Key Management Service (KMS) encryption key ID. Encryption
|
1037
|
+
# with a customer master key (CMK) is not supported.
|
1026
1038
|
#
|
1027
1039
|
# @return [Types::CreateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1028
1040
|
#
|
@@ -1111,6 +1123,20 @@ module Aws::SageMaker
|
|
1111
1123
|
# launches the resources (ML compute instances), and deploys the
|
1112
1124
|
# model(s) on them.
|
1113
1125
|
#
|
1126
|
+
# <note markdown="1"> When you call CreateEndpoint, a load call is made to DynamoDB to
|
1127
|
+
# verify that your endpoint configuration exists. When you read data
|
1128
|
+
# from a DynamoDB table supporting [ `Eventually Consistent Reads` ][2],
|
1129
|
+
# the response might not reflect the results of a recently completed
|
1130
|
+
# write operation. The response might include some stale data. If the
|
1131
|
+
# dependent entities are not yet in DynamoDB, this causes a validation
|
1132
|
+
# error. If you repeat your read request after a short time, the
|
1133
|
+
# response should return the latest data. So retry logic is recommended
|
1134
|
+
# to handle these possible issues. We also recommend that customers call
|
1135
|
+
# DescribeEndpointConfig before calling CreateEndpoint to minimize the
|
1136
|
+
# potential impact of a DynamoDB eventually consistent read.
|
1137
|
+
#
|
1138
|
+
# </note>
|
1139
|
+
#
|
1114
1140
|
# When Amazon SageMaker receives the request, it sets the endpoint
|
1115
1141
|
# status to `Creating`. After it creates the endpoint, it sets the
|
1116
1142
|
# status to `InService`. Amazon SageMaker can then process incoming
|
@@ -1123,13 +1149,14 @@ module Aws::SageMaker
|
|
1123
1149
|
# activated in your IAM user account by default. If you previously
|
1124
1150
|
# deactivated AWS STS for a region, you need to reactivate AWS STS for
|
1125
1151
|
# that region. For more information, see [Activating and Deactivating
|
1126
|
-
# AWS STS in an AWS Region][
|
1152
|
+
# AWS STS in an AWS Region][3] in the *AWS Identity and Access
|
1127
1153
|
# Management User Guide*.
|
1128
1154
|
#
|
1129
1155
|
#
|
1130
1156
|
#
|
1131
1157
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
1132
|
-
# [2]: https://docs.aws.amazon.com/
|
1158
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.html
|
1159
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
|
1133
1160
|
#
|
1134
1161
|
# @option params [required, String] :endpoint_name
|
1135
1162
|
# The name of the endpoint. The name must be unique within an AWS Region
|
@@ -1205,9 +1232,24 @@ module Aws::SageMaker
|
|
1205
1232
|
# SageMaker hosting services, see [Deploy the Model to Amazon SageMaker
|
1206
1233
|
# Hosting Services (AWS SDK for Python (Boto 3)).][1]
|
1207
1234
|
#
|
1235
|
+
# <note markdown="1"> When you call CreateEndpoint, a load call is made to DynamoDB to
|
1236
|
+
# verify that your endpoint configuration exists. When you read data
|
1237
|
+
# from a DynamoDB table supporting [ `Eventually Consistent Reads` ][2],
|
1238
|
+
# the response might not reflect the results of a recently completed
|
1239
|
+
# write operation. The response might include some stale data. If the
|
1240
|
+
# dependent entities are not yet in DynamoDB, this causes a validation
|
1241
|
+
# error. If you repeat your read request after a short time, the
|
1242
|
+
# response should return the latest data. So retry logic is recommended
|
1243
|
+
# to handle these possible issues. We also recommend that customers call
|
1244
|
+
# DescribeEndpointConfig before calling CreateEndpoint to minimize the
|
1245
|
+
# potential impact of a DynamoDB eventually consistent read.
|
1246
|
+
#
|
1247
|
+
# </note>
|
1248
|
+
#
|
1208
1249
|
#
|
1209
1250
|
#
|
1210
1251
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
1252
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.html
|
1211
1253
|
#
|
1212
1254
|
# @option params [required, String] :endpoint_config_name
|
1213
1255
|
# The name of the endpoint configuration. You specify this name in a
|
@@ -1573,6 +1615,8 @@ module Aws::SageMaker
|
|
1573
1615
|
# resource configuration, and stopping condition.
|
1574
1616
|
#
|
1575
1617
|
# @option params [Array<Types::HyperParameterTrainingJobDefinition>] :training_job_definitions
|
1618
|
+
# A list of the HyperParameterTrainingJobDefinition objects launched for
|
1619
|
+
# this tuning job.
|
1576
1620
|
#
|
1577
1621
|
# @option params [Types::HyperParameterTuningJobWarmStartConfig] :warm_start_config
|
1578
1622
|
# Specifies the configuration for starting the hyperparameter tuning job
|
@@ -2040,7 +2084,8 @@ module Aws::SageMaker
|
|
2040
2084
|
# human_task_config: { # required
|
2041
2085
|
# workteam_arn: "WorkteamArn", # required
|
2042
2086
|
# ui_config: { # required
|
2043
|
-
# ui_template_s3_uri: "S3Uri",
|
2087
|
+
# ui_template_s3_uri: "S3Uri",
|
2088
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
2044
2089
|
# },
|
2045
2090
|
# pre_human_task_lambda_arn: "LambdaFunctionArn", # required
|
2046
2091
|
# task_keywords: ["TaskKeyword"],
|
@@ -2438,6 +2483,7 @@ module Aws::SageMaker
|
|
2438
2483
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
2439
2484
|
# },
|
2440
2485
|
# network_config: {
|
2486
|
+
# enable_inter_container_traffic_encryption: false,
|
2441
2487
|
# enable_network_isolation: false,
|
2442
2488
|
# vpc_config: {
|
2443
2489
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -2751,9 +2797,10 @@ module Aws::SageMaker
|
|
2751
2797
|
|
2752
2798
|
# Creates a URL for a specified UserProfile in a Domain. When accessed
|
2753
2799
|
# in a web browser, the user will be automatically signed in to Amazon
|
2754
|
-
# SageMaker
|
2755
|
-
#
|
2756
|
-
#
|
2800
|
+
# SageMaker Studio, and granted access to all of the Apps and files
|
2801
|
+
# associated with the Domain's Amazon Elastic File System (EFS) volume.
|
2802
|
+
# This operation can only be called when the authentication mode equals
|
2803
|
+
# IAM.
|
2757
2804
|
#
|
2758
2805
|
# @option params [required, String] :domain_id
|
2759
2806
|
# The domain ID.
|
@@ -2795,14 +2842,19 @@ module Aws::SageMaker
|
|
2795
2842
|
# showing the Jupyter server home page from the notebook instance. The
|
2796
2843
|
# console uses this API to get the URL and show the page.
|
2797
2844
|
#
|
2798
|
-
# IAM
|
2799
|
-
#
|
2800
|
-
#
|
2801
|
-
#
|
2802
|
-
#
|
2803
|
-
#
|
2804
|
-
#
|
2805
|
-
#
|
2845
|
+
# The IAM role or user used to call this API defines the permissions to
|
2846
|
+
# access the notebook instance. Once the presigned URL is created, no
|
2847
|
+
# additional permission is required to access this URL. IAM
|
2848
|
+
# authorization policies for this API are also enforced for every HTTP
|
2849
|
+
# request and WebSocket frame that attempts to connect to the notebook
|
2850
|
+
# instance.
|
2851
|
+
#
|
2852
|
+
# You can restrict access to this API and to the URL that it returns to
|
2853
|
+
# a list of IP addresses that you specify. Use the `NotIpAddress`
|
2854
|
+
# condition operator and the `aws:SourceIP` condition context key to
|
2855
|
+
# specify the list of IP addresses that you want to have access to the
|
2856
|
+
# notebook instance. For more information, see [Limit Access to a
|
2857
|
+
# Notebook Instance by IP Address][1].
|
2806
2858
|
#
|
2807
2859
|
# <note markdown="1"> The URL that you get from a call to CreatePresignedNotebookInstanceUrl
|
2808
2860
|
# is valid only for 5 minutes. If you try to use the URL after the
|
@@ -2947,6 +2999,7 @@ module Aws::SageMaker
|
|
2947
2999
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
2948
3000
|
# },
|
2949
3001
|
# network_config: {
|
3002
|
+
# enable_inter_container_traffic_encryption: false,
|
2950
3003
|
# enable_network_isolation: false,
|
2951
3004
|
# vpc_config: {
|
2952
3005
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -3706,14 +3759,14 @@ module Aws::SageMaker
|
|
3706
3759
|
req.send_request(options)
|
3707
3760
|
end
|
3708
3761
|
|
3709
|
-
# Creates a
|
3710
|
-
#
|
3711
|
-
# purposes of sharing, reporting and other user-oriented features. This
|
3712
|
-
# entity is created
|
3713
|
-
# person by email or imports them from SSO, a
|
3714
|
-
# automatically created.
|
3715
|
-
# for an individual user and has a reference to the
|
3716
|
-
# Amazon Elastic File System (EFS) home directory.
|
3762
|
+
# Creates a user profile. A user profile represents a single user within
|
3763
|
+
# a domain, and is the main way to reference a "person" for the
|
3764
|
+
# purposes of sharing, reporting, and other user-oriented features. This
|
3765
|
+
# entity is created when a user onboards to Amazon SageMaker Studio. If
|
3766
|
+
# an administrator invites a person by email or imports them from SSO, a
|
3767
|
+
# user profile is automatically created. A user profile is the primary
|
3768
|
+
# holder of settings for an individual user and has a reference to the
|
3769
|
+
# user's private Amazon Elastic File System (EFS) home directory.
|
3717
3770
|
#
|
3718
3771
|
# @option params [required, String] :domain_id
|
3719
3772
|
# The ID of the associated Domain.
|
@@ -3958,18 +4011,18 @@ module Aws::SageMaker
|
|
3958
4011
|
req.send_request(options)
|
3959
4012
|
end
|
3960
4013
|
|
3961
|
-
# Used to delete a domain. If you
|
3962
|
-
#
|
3963
|
-
#
|
3964
|
-
#
|
4014
|
+
# Used to delete a domain. If you onboarded with IAM mode, you will need
|
4015
|
+
# to delete your domain to onboard again using SSO. Use with caution.
|
4016
|
+
# All of the members of the domain will lose access to their EFS volume,
|
4017
|
+
# including data, notebooks, and other artifacts.
|
3965
4018
|
#
|
3966
4019
|
# @option params [required, String] :domain_id
|
3967
4020
|
# The domain ID.
|
3968
4021
|
#
|
3969
4022
|
# @option params [Types::RetentionPolicy] :retention_policy
|
3970
|
-
# The retention policy for this domain, which specifies
|
3971
|
-
# will be retained after the Domain is deleted. By default,
|
3972
|
-
# resources are retained (not automatically deleted).
|
4023
|
+
# The retention policy for this domain, which specifies whether
|
4024
|
+
# resources will be retained after the Domain is deleted. By default,
|
4025
|
+
# all resources are retained (not automatically deleted).
|
3973
4026
|
#
|
3974
4027
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3975
4028
|
#
|
@@ -4026,6 +4079,13 @@ module Aws::SageMaker
|
|
4026
4079
|
# deletes only the specified configuration. It does not delete endpoints
|
4027
4080
|
# created using the configuration.
|
4028
4081
|
#
|
4082
|
+
# You must not delete an `EndpointConfig` in use by an endpoint that is
|
4083
|
+
# live or while the `UpdateEndpoint` or `CreateEndpoint` operations are
|
4084
|
+
# being performed on the endpoint. If you delete the `EndpointConfig` of
|
4085
|
+
# an endpoint that is active or being created or updated you may lose
|
4086
|
+
# visibility into the instance type the endpoint is using. The endpoint
|
4087
|
+
# must be deleted in order to stop incurring charges.
|
4088
|
+
#
|
4029
4089
|
# @option params [required, String] :endpoint_config_name
|
4030
4090
|
# The name of the endpoint configuration that you want to delete.
|
4031
4091
|
#
|
@@ -4320,7 +4380,9 @@ module Aws::SageMaker
|
|
4320
4380
|
req.send_request(options)
|
4321
4381
|
end
|
4322
4382
|
|
4323
|
-
# Deletes a user profile.
|
4383
|
+
# Deletes a user profile. When a user profile is deleted, the user loses
|
4384
|
+
# access to their EFS volume, including data, notebooks, and other
|
4385
|
+
# artifacts.
|
4324
4386
|
#
|
4325
4387
|
# @option params [required, String] :domain_id
|
4326
4388
|
# The domain ID.
|
@@ -4779,7 +4841,7 @@ module Aws::SageMaker
|
|
4779
4841
|
req.send_request(options)
|
4780
4842
|
end
|
4781
4843
|
|
4782
|
-
# The
|
4844
|
+
# The description of the domain.
|
4783
4845
|
#
|
4784
4846
|
# @option params [required, String] :domain_id
|
4785
4847
|
# The domain ID.
|
@@ -5396,6 +5458,7 @@ module Aws::SageMaker
|
|
5396
5458
|
# resp.labeling_job_algorithms_config.labeling_job_resource_config.volume_kms_key_id #=> String
|
5397
5459
|
# resp.human_task_config.workteam_arn #=> String
|
5398
5460
|
# resp.human_task_config.ui_config.ui_template_s3_uri #=> String
|
5461
|
+
# resp.human_task_config.ui_config.human_task_ui_arn #=> String
|
5399
5462
|
# resp.human_task_config.pre_human_task_lambda_arn #=> String
|
5400
5463
|
# resp.human_task_config.task_keywords #=> Array
|
5401
5464
|
# resp.human_task_config.task_keywords[0] #=> String
|
@@ -5631,6 +5694,7 @@ module Aws::SageMaker
|
|
5631
5694
|
# resp.monitoring_schedule_config.monitoring_job_definition.stopping_condition.max_runtime_in_seconds #=> Integer
|
5632
5695
|
# resp.monitoring_schedule_config.monitoring_job_definition.environment #=> Hash
|
5633
5696
|
# resp.monitoring_schedule_config.monitoring_job_definition.environment["ProcessingEnvironmentKey"] #=> String
|
5697
|
+
# resp.monitoring_schedule_config.monitoring_job_definition.network_config.enable_inter_container_traffic_encryption #=> Boolean
|
5634
5698
|
# resp.monitoring_schedule_config.monitoring_job_definition.network_config.enable_network_isolation #=> Boolean
|
5635
5699
|
# resp.monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.security_group_ids #=> Array
|
5636
5700
|
# resp.monitoring_schedule_config.monitoring_job_definition.network_config.vpc_config.security_group_ids[0] #=> String
|
@@ -5844,6 +5908,7 @@ module Aws::SageMaker
|
|
5844
5908
|
# resp.app_specification.container_arguments[0] #=> String
|
5845
5909
|
# resp.environment #=> Hash
|
5846
5910
|
# resp.environment["ProcessingEnvironmentKey"] #=> String
|
5911
|
+
# resp.network_config.enable_inter_container_traffic_encryption #=> Boolean
|
5847
5912
|
# resp.network_config.enable_network_isolation #=> Boolean
|
5848
5913
|
# resp.network_config.vpc_config.security_group_ids #=> Array
|
5849
5914
|
# resp.network_config.vpc_config.security_group_ids[0] #=> String
|
@@ -6282,7 +6347,8 @@ module Aws::SageMaker
|
|
6282
6347
|
req.send_request(options)
|
6283
6348
|
end
|
6284
6349
|
|
6285
|
-
# Describes
|
6350
|
+
# Describes a user profile. For more information, see
|
6351
|
+
# `CreateUserProfile`.
|
6286
6352
|
#
|
6287
6353
|
# @option params [required, String] :domain_id
|
6288
6354
|
# The domain ID.
|
@@ -8824,7 +8890,7 @@ module Aws::SageMaker
|
|
8824
8890
|
# Renders the UI template so that you can preview the worker's
|
8825
8891
|
# experience.
|
8826
8892
|
#
|
8827
|
-
# @option params [
|
8893
|
+
# @option params [Types::UiTemplate] :ui_template
|
8828
8894
|
# A `Template` object containing the worker UI template to render.
|
8829
8895
|
#
|
8830
8896
|
# @option params [required, Types::RenderableTask] :task
|
@@ -8834,6 +8900,10 @@ module Aws::SageMaker
|
|
8834
8900
|
# The Amazon Resource Name (ARN) that has access to the S3 objects that
|
8835
8901
|
# are used by the template.
|
8836
8902
|
#
|
8903
|
+
# @option params [String] :human_task_ui_arn
|
8904
|
+
# The `HumanTaskUiArn` of the worker UI that you want to render. Do not
|
8905
|
+
# provide a `HumanTaskUiArn` if you use the `UiTemplate` parameter.
|
8906
|
+
#
|
8837
8907
|
# @return [Types::RenderUiTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8838
8908
|
#
|
8839
8909
|
# * {Types::RenderUiTemplateResponse#rendered_content #rendered_content} => String
|
@@ -8842,13 +8912,14 @@ module Aws::SageMaker
|
|
8842
8912
|
# @example Request syntax with placeholder values
|
8843
8913
|
#
|
8844
8914
|
# resp = client.render_ui_template({
|
8845
|
-
# ui_template: {
|
8915
|
+
# ui_template: {
|
8846
8916
|
# content: "TemplateContent", # required
|
8847
8917
|
# },
|
8848
8918
|
# task: { # required
|
8849
8919
|
# input: "TaskInput", # required
|
8850
8920
|
# },
|
8851
8921
|
# role_arn: "RoleArn", # required
|
8922
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
8852
8923
|
# })
|
8853
8924
|
#
|
8854
8925
|
# @example Response structure
|
@@ -9252,6 +9323,7 @@ module Aws::SageMaker
|
|
9252
9323
|
# resp.results[0].trial_component.source_detail.processing_job.app_specification.container_arguments[0] #=> String
|
9253
9324
|
# resp.results[0].trial_component.source_detail.processing_job.environment #=> Hash
|
9254
9325
|
# resp.results[0].trial_component.source_detail.processing_job.environment["ProcessingEnvironmentKey"] #=> String
|
9326
|
+
# resp.results[0].trial_component.source_detail.processing_job.network_config.enable_inter_container_traffic_encryption #=> Boolean
|
9255
9327
|
# resp.results[0].trial_component.source_detail.processing_job.network_config.enable_network_isolation #=> Boolean
|
9256
9328
|
# resp.results[0].trial_component.source_detail.processing_job.network_config.vpc_config.security_group_ids #=> Array
|
9257
9329
|
# resp.results[0].trial_component.source_detail.processing_job.network_config.vpc_config.security_group_ids[0] #=> String
|
@@ -9623,10 +9695,10 @@ module Aws::SageMaker
|
|
9623
9695
|
req.send_request(options)
|
9624
9696
|
end
|
9625
9697
|
|
9626
|
-
# Updates
|
9698
|
+
# Updates the default settings for new user profiles in the domain.
|
9627
9699
|
#
|
9628
9700
|
# @option params [required, String] :domain_id
|
9629
|
-
# The domain
|
9701
|
+
# The ID of the domain to be updated.
|
9630
9702
|
#
|
9631
9703
|
# @option params [Types::UserSettings] :default_user_settings
|
9632
9704
|
# A collection of settings.
|
@@ -9696,6 +9768,11 @@ module Aws::SageMaker
|
|
9696
9768
|
# being performed on the endpoint. To update an endpoint, you must
|
9697
9769
|
# create a new `EndpointConfig`.
|
9698
9770
|
#
|
9771
|
+
# If you delete the `EndpointConfig` of an endpoint that is active or
|
9772
|
+
# being created or updated you may lose visibility into the instance
|
9773
|
+
# type the endpoint is using. The endpoint must be deleted in order to
|
9774
|
+
# stop incurring charges.
|
9775
|
+
#
|
9699
9776
|
# </note>
|
9700
9777
|
#
|
9701
9778
|
# @option params [required, String] :endpoint_name
|
@@ -9907,6 +9984,7 @@ module Aws::SageMaker
|
|
9907
9984
|
# "ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
|
9908
9985
|
# },
|
9909
9986
|
# network_config: {
|
9987
|
+
# enable_inter_container_traffic_encryption: false,
|
9910
9988
|
# enable_network_isolation: false,
|
9911
9989
|
# vpc_config: {
|
9912
9990
|
# security_group_ids: ["SecurityGroupId"], # required
|
@@ -10444,7 +10522,7 @@ module Aws::SageMaker
|
|
10444
10522
|
params: params,
|
10445
10523
|
config: config)
|
10446
10524
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
10447
|
-
context[:gem_version] = '1.
|
10525
|
+
context[:gem_version] = '1.60.1'
|
10448
10526
|
Seahorse::Client::Request.new(handlers, context)
|
10449
10527
|
end
|
10450
10528
|
|