aws-sdk-sagemaker 1.58.0 → 1.63.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/lib/aws-sdk-sagemaker.rb +3 -1
- data/lib/aws-sdk-sagemaker/client.rb +193 -66
- data/lib/aws-sdk-sagemaker/client_api.rb +31 -0
- data/lib/aws-sdk-sagemaker/errors.rb +2 -0
- data/lib/aws-sdk-sagemaker/resource.rb +2 -0
- data/lib/aws-sdk-sagemaker/types.rb +1320 -285
- data/lib/aws-sdk-sagemaker/waiters.rb +2 -0
- 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: e2b1b55954b73c45a95f8ac59903c73332621b75d324b782fa39efeafe385f87
|
4
|
+
data.tar.gz: 27b6289cf5d719587c4f30e5587a8dc57cafe665e5d43076c724ce8ed0e970ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0b3e7d6230e9e13e1a0fef46374c4879e919622c2618c3799151d06bf40ac7f70f3896febf8371b167ea20faab7c931786f4fbd01108817ec7b9b4e5d9b7fa2
|
7
|
+
data.tar.gz: 44e6169470b29bb76b5e5f5edb0e0822d89caa3101f2b70119bbbadd7f5ed8bc8b93a6627189c1104038dd0aa0a8d972af33e6457838bb82692791a253e913f7
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
|
|
46
48
|
# @service
|
47
49
|
module Aws::SageMaker
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.63.0'
|
50
52
|
|
51
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::SageMaker
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::SageMaker
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -648,14 +652,10 @@ module Aws::SageMaker
|
|
648
652
|
end
|
649
653
|
|
650
654
|
# Creates a running App for the specified UserProfile. Supported Apps
|
651
|
-
# are
|
652
|
-
#
|
653
|
-
#
|
654
|
-
#
|
655
|
-
# active simultaneously. Apps will automatically terminate and be
|
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.
|
655
|
+
# are JupyterServer and KernelGateway. This operation is automatically
|
656
|
+
# invoked by Amazon SageMaker Studio upon access to the associated
|
657
|
+
# Domain, and when new kernel configurations are selected by the user. A
|
658
|
+
# user may have multiple Apps active simultaneously.
|
659
659
|
#
|
660
660
|
# @option params [required, String] :domain_id
|
661
661
|
# The domain ID.
|
@@ -991,36 +991,47 @@ module Aws::SageMaker
|
|
991
991
|
req.send_request(options)
|
992
992
|
end
|
993
993
|
|
994
|
-
# Creates a Domain
|
995
|
-
#
|
996
|
-
#
|
997
|
-
#
|
998
|
-
#
|
999
|
-
#
|
1000
|
-
#
|
1001
|
-
#
|
1002
|
-
#
|
1003
|
-
#
|
994
|
+
# Creates a `Domain` used by SageMaker Studio. A domain consists of an
|
995
|
+
# associated directory, a list of authorized users, and a variety of
|
996
|
+
# security, application, policy, and Amazon Virtual Private Cloud (VPC)
|
997
|
+
# configurations. An AWS account is limited to one domain per region.
|
998
|
+
# Users within a domain can share notebook files and other artifacts
|
999
|
+
# with each other.
|
1000
|
+
#
|
1001
|
+
# When a domain is created, an Amazon Elastic File System (EFS) volume
|
1002
|
+
# is also created for use by all of the users within the domain. Each
|
1003
|
+
# user receives a private home directory within the EFS for notebooks,
|
1004
|
+
# Git repositories, and data files.
|
1005
|
+
#
|
1006
|
+
# All traffic between the domain and the EFS volume is communicated
|
1007
|
+
# through the specified subnet IDs. All other traffic goes over the
|
1008
|
+
# Internet through an Amazon SageMaker system VPC. The EFS traffic uses
|
1009
|
+
# the NFS/TCP protocol over port 2049.
|
1010
|
+
#
|
1011
|
+
# NFS traffic over TCP on port 2049 needs to be allowed in both inbound
|
1012
|
+
# and outbound rules in order to launch a SageMaker Studio app
|
1013
|
+
# successfully.
|
1004
1014
|
#
|
1005
1015
|
# @option params [required, String] :domain_name
|
1006
1016
|
# A name for the domain.
|
1007
1017
|
#
|
1008
1018
|
# @option params [required, String] :auth_mode
|
1009
|
-
# The mode of authentication that
|
1019
|
+
# The mode of authentication that members use to access the domain.
|
1010
1020
|
#
|
1011
1021
|
# @option params [required, Types::UserSettings] :default_user_settings
|
1012
1022
|
# The default user settings.
|
1013
1023
|
#
|
1014
1024
|
# @option params [required, Array<String>] :subnet_ids
|
1015
|
-
#
|
1025
|
+
# The VPC subnets to use for communication with the EFS volume.
|
1016
1026
|
#
|
1017
1027
|
# @option params [required, String] :vpc_id
|
1018
|
-
#
|
1019
|
-
#
|
1028
|
+
# The ID of the Amazon Virtual Private Cloud (VPC) to use for
|
1029
|
+
# communication with the EFS volume.
|
1020
1030
|
#
|
1021
1031
|
# @option params [Array<Types::Tag>] :tags
|
1022
|
-
# Each tag consists of a key and an
|
1023
|
-
# unique per resource.
|
1032
|
+
# Tags to associated with the Domain. Each tag consists of a key and an
|
1033
|
+
# optional value. Tag keys must be unique per resource. Tags are
|
1034
|
+
# searchable using the Search API.
|
1024
1035
|
#
|
1025
1036
|
# @option params [String] :home_efs_file_system_kms_key_id
|
1026
1037
|
# The AWS Key Management Service (KMS) encryption key ID. Encryption
|
@@ -1113,6 +1124,20 @@ module Aws::SageMaker
|
|
1113
1124
|
# launches the resources (ML compute instances), and deploys the
|
1114
1125
|
# model(s) on them.
|
1115
1126
|
#
|
1127
|
+
# <note markdown="1"> When you call CreateEndpoint, a load call is made to DynamoDB to
|
1128
|
+
# verify that your endpoint configuration exists. When you read data
|
1129
|
+
# from a DynamoDB table supporting [ `Eventually Consistent Reads` ][2],
|
1130
|
+
# the response might not reflect the results of a recently completed
|
1131
|
+
# write operation. The response might include some stale data. If the
|
1132
|
+
# dependent entities are not yet in DynamoDB, this causes a validation
|
1133
|
+
# error. If you repeat your read request after a short time, the
|
1134
|
+
# response should return the latest data. So retry logic is recommended
|
1135
|
+
# to handle these possible issues. We also recommend that customers call
|
1136
|
+
# DescribeEndpointConfig before calling CreateEndpoint to minimize the
|
1137
|
+
# potential impact of a DynamoDB eventually consistent read.
|
1138
|
+
#
|
1139
|
+
# </note>
|
1140
|
+
#
|
1116
1141
|
# When Amazon SageMaker receives the request, it sets the endpoint
|
1117
1142
|
# status to `Creating`. After it creates the endpoint, it sets the
|
1118
1143
|
# status to `InService`. Amazon SageMaker can then process incoming
|
@@ -1125,13 +1150,14 @@ module Aws::SageMaker
|
|
1125
1150
|
# activated in your IAM user account by default. If you previously
|
1126
1151
|
# deactivated AWS STS for a region, you need to reactivate AWS STS for
|
1127
1152
|
# that region. For more information, see [Activating and Deactivating
|
1128
|
-
# AWS STS in an AWS Region][
|
1153
|
+
# AWS STS in an AWS Region][3] in the *AWS Identity and Access
|
1129
1154
|
# Management User Guide*.
|
1130
1155
|
#
|
1131
1156
|
#
|
1132
1157
|
#
|
1133
1158
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
1134
|
-
# [2]: https://docs.aws.amazon.com/
|
1159
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.html
|
1160
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
|
1135
1161
|
#
|
1136
1162
|
# @option params [required, String] :endpoint_name
|
1137
1163
|
# The name of the endpoint. The name must be unique within an AWS Region
|
@@ -1207,9 +1233,24 @@ module Aws::SageMaker
|
|
1207
1233
|
# SageMaker hosting services, see [Deploy the Model to Amazon SageMaker
|
1208
1234
|
# Hosting Services (AWS SDK for Python (Boto 3)).][1]
|
1209
1235
|
#
|
1236
|
+
# <note markdown="1"> When you call CreateEndpoint, a load call is made to DynamoDB to
|
1237
|
+
# verify that your endpoint configuration exists. When you read data
|
1238
|
+
# from a DynamoDB table supporting [ `Eventually Consistent Reads` ][2],
|
1239
|
+
# the response might not reflect the results of a recently completed
|
1240
|
+
# write operation. The response might include some stale data. If the
|
1241
|
+
# dependent entities are not yet in DynamoDB, this causes a validation
|
1242
|
+
# error. If you repeat your read request after a short time, the
|
1243
|
+
# response should return the latest data. So retry logic is recommended
|
1244
|
+
# to handle these possible issues. We also recommend that customers call
|
1245
|
+
# DescribeEndpointConfig before calling CreateEndpoint to minimize the
|
1246
|
+
# potential impact of a DynamoDB eventually consistent read.
|
1247
|
+
#
|
1248
|
+
# </note>
|
1249
|
+
#
|
1210
1250
|
#
|
1211
1251
|
#
|
1212
1252
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
1253
|
+
# [2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.html
|
1213
1254
|
#
|
1214
1255
|
# @option params [required, String] :endpoint_config_name
|
1215
1256
|
# The name of the endpoint configuration. You specify this name in a
|
@@ -1575,6 +1616,8 @@ module Aws::SageMaker
|
|
1575
1616
|
# resource configuration, and stopping condition.
|
1576
1617
|
#
|
1577
1618
|
# @option params [Array<Types::HyperParameterTrainingJobDefinition>] :training_job_definitions
|
1619
|
+
# A list of the HyperParameterTrainingJobDefinition objects launched for
|
1620
|
+
# this tuning job.
|
1578
1621
|
#
|
1579
1622
|
# @option params [Types::HyperParameterTuningJobWarmStartConfig] :warm_start_config
|
1580
1623
|
# Specifies the configuration for starting the hyperparameter tuning job
|
@@ -1948,7 +1991,13 @@ module Aws::SageMaker
|
|
1948
1991
|
# The S3 URL of the file that defines the categories used to label the
|
1949
1992
|
# data objects.
|
1950
1993
|
#
|
1951
|
-
#
|
1994
|
+
# For 3D point cloud task types, see [Create a Labeling Category
|
1995
|
+
# Configuration File for 3D Point Cloud Labeling Jobs][1].
|
1996
|
+
#
|
1997
|
+
# For all other [built-in task types][2] and [custom tasks][3], your
|
1998
|
+
# label category configuration file must be a JSON file in the following
|
1999
|
+
# format. Identify the labels you want to use by replacing `label_1`,
|
2000
|
+
# `label_2`,`...`,`label_n` with your label categories.
|
1952
2001
|
#
|
1953
2002
|
# `\{`
|
1954
2003
|
#
|
@@ -1958,13 +2007,13 @@ module Aws::SageMaker
|
|
1958
2007
|
#
|
1959
2008
|
# ` \{`
|
1960
2009
|
#
|
1961
|
-
# ` "label": "
|
2010
|
+
# ` "label": "label_1"`
|
1962
2011
|
#
|
1963
2012
|
# ` \},`
|
1964
2013
|
#
|
1965
2014
|
# ` \{`
|
1966
2015
|
#
|
1967
|
-
# ` "label": "
|
2016
|
+
# ` "label": "label_2"`
|
1968
2017
|
#
|
1969
2018
|
# ` \},`
|
1970
2019
|
#
|
@@ -1972,7 +2021,7 @@ module Aws::SageMaker
|
|
1972
2021
|
#
|
1973
2022
|
# ` \{`
|
1974
2023
|
#
|
1975
|
-
# ` "label": "
|
2024
|
+
# ` "label": "label_n"`
|
1976
2025
|
#
|
1977
2026
|
# ` \}`
|
1978
2027
|
#
|
@@ -1980,6 +2029,12 @@ module Aws::SageMaker
|
|
1980
2029
|
#
|
1981
2030
|
# `\}`
|
1982
2031
|
#
|
2032
|
+
#
|
2033
|
+
#
|
2034
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-point-cloud-label-category-config.html
|
2035
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-task-types.html
|
2036
|
+
# [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-custom-templates.html
|
2037
|
+
#
|
1983
2038
|
# @option params [Types::LabelingJobStoppingConditions] :stopping_conditions
|
1984
2039
|
# A set of conditions for stopping the labeling job. If any of the
|
1985
2040
|
# conditions are met, the job is automatically stopped. You can use
|
@@ -2043,6 +2098,7 @@ module Aws::SageMaker
|
|
2043
2098
|
# workteam_arn: "WorkteamArn", # required
|
2044
2099
|
# ui_config: { # required
|
2045
2100
|
# ui_template_s3_uri: "S3Uri",
|
2101
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
2046
2102
|
# },
|
2047
2103
|
# pre_human_task_lambda_arn: "LambdaFunctionArn", # required
|
2048
2104
|
# task_keywords: ["TaskKeyword"],
|
@@ -2755,8 +2811,9 @@ module Aws::SageMaker
|
|
2755
2811
|
# Creates a URL for a specified UserProfile in a Domain. When accessed
|
2756
2812
|
# in a web browser, the user will be automatically signed in to Amazon
|
2757
2813
|
# SageMaker Studio, and granted access to all of the Apps and files
|
2758
|
-
# associated with
|
2759
|
-
# can only be called when
|
2814
|
+
# associated with the Domain's Amazon Elastic File System (EFS) volume.
|
2815
|
+
# This operation can only be called when the authentication mode equals
|
2816
|
+
# IAM.
|
2760
2817
|
#
|
2761
2818
|
# @option params [required, String] :domain_id
|
2762
2819
|
# The domain ID.
|
@@ -2798,14 +2855,19 @@ module Aws::SageMaker
|
|
2798
2855
|
# showing the Jupyter server home page from the notebook instance. The
|
2799
2856
|
# console uses this API to get the URL and show the page.
|
2800
2857
|
#
|
2801
|
-
# IAM
|
2802
|
-
#
|
2803
|
-
#
|
2804
|
-
#
|
2805
|
-
#
|
2806
|
-
#
|
2807
|
-
#
|
2808
|
-
#
|
2858
|
+
# The IAM role or user used to call this API defines the permissions to
|
2859
|
+
# access the notebook instance. Once the presigned URL is created, no
|
2860
|
+
# additional permission is required to access this URL. IAM
|
2861
|
+
# authorization policies for this API are also enforced for every HTTP
|
2862
|
+
# request and WebSocket frame that attempts to connect to the notebook
|
2863
|
+
# instance.
|
2864
|
+
#
|
2865
|
+
# You can restrict access to this API and to the URL that it returns to
|
2866
|
+
# a list of IP addresses that you specify. Use the `NotIpAddress`
|
2867
|
+
# condition operator and the `aws:SourceIP` condition context key to
|
2868
|
+
# specify the list of IP addresses that you want to have access to the
|
2869
|
+
# notebook instance. For more information, see [Limit Access to a
|
2870
|
+
# Notebook Instance by IP Address][1].
|
2809
2871
|
#
|
2810
2872
|
# <note markdown="1"> The URL that you get from a call to CreatePresignedNotebookInstanceUrl
|
2811
2873
|
# is valid only for 5 minutes. If you try to use the URL after the
|
@@ -3392,6 +3454,10 @@ module Aws::SageMaker
|
|
3392
3454
|
#
|
3393
3455
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-batch-code.html#your-algorithms-batch-code-how-containe-serves-requests
|
3394
3456
|
#
|
3457
|
+
# @option params [Types::ModelClientConfig] :model_client_config
|
3458
|
+
# Configures the timeout and maximum number of retries for processing a
|
3459
|
+
# transform job invocation.
|
3460
|
+
#
|
3395
3461
|
# @option params [Integer] :max_payload_in_mb
|
3396
3462
|
# The maximum allowed size of the payload, in MB. A *payload* is the
|
3397
3463
|
# data portion of a record (without metadata). The value in
|
@@ -3473,6 +3539,10 @@ module Aws::SageMaker
|
|
3473
3539
|
# transform_job_name: "TransformJobName", # required
|
3474
3540
|
# model_name: "ModelName", # required
|
3475
3541
|
# max_concurrent_transforms: 1,
|
3542
|
+
# model_client_config: {
|
3543
|
+
# invocations_timeout_in_seconds: 1,
|
3544
|
+
# invocations_max_retries: 1,
|
3545
|
+
# },
|
3476
3546
|
# max_payload_in_mb: 1,
|
3477
3547
|
# batch_strategy: "MultiRecord", # accepts MultiRecord, SingleRecord
|
3478
3548
|
# environment: {
|
@@ -3711,15 +3781,13 @@ module Aws::SageMaker
|
|
3711
3781
|
end
|
3712
3782
|
|
3713
3783
|
# Creates a user profile. A user profile represents a single user within
|
3714
|
-
# a
|
3715
|
-
# purposes of sharing, reporting and other user-oriented features. This
|
3716
|
-
# entity is created
|
3717
|
-
# administrator invites a person by email or imports them from SSO, a
|
3718
|
-
#
|
3719
|
-
#
|
3720
|
-
#
|
3721
|
-
# and, through the domain, has a reference to the user's private Amazon
|
3722
|
-
# Elastic File System (EFS) home directory.
|
3784
|
+
# a domain, and is the main way to reference a "person" for the
|
3785
|
+
# purposes of sharing, reporting, and other user-oriented features. This
|
3786
|
+
# entity is created when a user onboards to Amazon SageMaker Studio. If
|
3787
|
+
# an administrator invites a person by email or imports them from SSO, a
|
3788
|
+
# user profile is automatically created. A user profile is the primary
|
3789
|
+
# holder of settings for an individual user and has a reference to the
|
3790
|
+
# user's private Amazon Elastic File System (EFS) home directory.
|
3723
3791
|
#
|
3724
3792
|
# @option params [required, String] :domain_id
|
3725
3793
|
# The ID of the associated Domain.
|
@@ -3964,9 +4032,10 @@ module Aws::SageMaker
|
|
3964
4032
|
req.send_request(options)
|
3965
4033
|
end
|
3966
4034
|
|
3967
|
-
# Used to delete a domain.
|
3968
|
-
# to
|
3969
|
-
#
|
4035
|
+
# Used to delete a domain. If you onboarded with IAM mode, you will need
|
4036
|
+
# to delete your domain to onboard again using SSO. Use with caution.
|
4037
|
+
# All of the members of the domain will lose access to their EFS volume,
|
4038
|
+
# including data, notebooks, and other artifacts.
|
3970
4039
|
#
|
3971
4040
|
# @option params [required, String] :domain_id
|
3972
4041
|
# The domain ID.
|
@@ -4031,6 +4100,13 @@ module Aws::SageMaker
|
|
4031
4100
|
# deletes only the specified configuration. It does not delete endpoints
|
4032
4101
|
# created using the configuration.
|
4033
4102
|
#
|
4103
|
+
# You must not delete an `EndpointConfig` in use by an endpoint that is
|
4104
|
+
# live or while the `UpdateEndpoint` or `CreateEndpoint` operations are
|
4105
|
+
# being performed on the endpoint. If you delete the `EndpointConfig` of
|
4106
|
+
# an endpoint that is active or being created or updated you may lose
|
4107
|
+
# visibility into the instance type the endpoint is using. The endpoint
|
4108
|
+
# must be deleted in order to stop incurring charges.
|
4109
|
+
#
|
4034
4110
|
# @option params [required, String] :endpoint_config_name
|
4035
4111
|
# The name of the endpoint configuration that you want to delete.
|
4036
4112
|
#
|
@@ -4103,6 +4179,33 @@ module Aws::SageMaker
|
|
4103
4179
|
req.send_request(options)
|
4104
4180
|
end
|
4105
4181
|
|
4182
|
+
# Use this operation to delete a worker task template (`HumanTaskUi`).
|
4183
|
+
#
|
4184
|
+
# To see a list of human task user interfaces (work task templates) in
|
4185
|
+
# your account, use . When you delete a worker task template, it no
|
4186
|
+
# longer appears when you call `ListHumanTaskUis`.
|
4187
|
+
#
|
4188
|
+
# @option params [required, String] :human_task_ui_name
|
4189
|
+
# The name of the human task user interface (work task template) you
|
4190
|
+
# want to delete.
|
4191
|
+
#
|
4192
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4193
|
+
#
|
4194
|
+
# @example Request syntax with placeholder values
|
4195
|
+
#
|
4196
|
+
# resp = client.delete_human_task_ui({
|
4197
|
+
# human_task_ui_name: "HumanTaskUiName", # required
|
4198
|
+
# })
|
4199
|
+
#
|
4200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteHumanTaskUi AWS API Documentation
|
4201
|
+
#
|
4202
|
+
# @overload delete_human_task_ui(params = {})
|
4203
|
+
# @param [Hash] params ({})
|
4204
|
+
def delete_human_task_ui(params = {}, options = {})
|
4205
|
+
req = build_request(:delete_human_task_ui, params)
|
4206
|
+
req.send_request(options)
|
4207
|
+
end
|
4208
|
+
|
4106
4209
|
# Deletes a model. The `DeleteModel` API deletes only the model entry
|
4107
4210
|
# that was created in Amazon SageMaker when you called the CreateModel
|
4108
4211
|
# API. It does not delete model artifacts, inference code, or the IAM
|
@@ -4325,7 +4428,9 @@ module Aws::SageMaker
|
|
4325
4428
|
req.send_request(options)
|
4326
4429
|
end
|
4327
4430
|
|
4328
|
-
# Deletes a user profile.
|
4431
|
+
# Deletes a user profile. When a user profile is deleted, the user loses
|
4432
|
+
# access to their EFS volume, including data, notebooks, and other
|
4433
|
+
# artifacts.
|
4329
4434
|
#
|
4330
4435
|
# @option params [required, String] :domain_id
|
4331
4436
|
# The domain ID.
|
@@ -4784,7 +4889,7 @@ module Aws::SageMaker
|
|
4784
4889
|
req.send_request(options)
|
4785
4890
|
end
|
4786
4891
|
|
4787
|
-
# The
|
4892
|
+
# The description of the domain.
|
4788
4893
|
#
|
4789
4894
|
# @option params [required, String] :domain_id
|
4790
4895
|
# The domain ID.
|
@@ -5076,15 +5181,18 @@ module Aws::SageMaker
|
|
5076
5181
|
req.send_request(options)
|
5077
5182
|
end
|
5078
5183
|
|
5079
|
-
# Returns information about the requested human task user interface
|
5184
|
+
# Returns information about the requested human task user interface
|
5185
|
+
# (worker task template).
|
5080
5186
|
#
|
5081
5187
|
# @option params [required, String] :human_task_ui_name
|
5082
|
-
# The name of the human task user interface
|
5188
|
+
# The name of the human task user interface (worker task template) you
|
5189
|
+
# want information about.
|
5083
5190
|
#
|
5084
5191
|
# @return [Types::DescribeHumanTaskUiResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5085
5192
|
#
|
5086
5193
|
# * {Types::DescribeHumanTaskUiResponse#human_task_ui_arn #human_task_ui_arn} => String
|
5087
5194
|
# * {Types::DescribeHumanTaskUiResponse#human_task_ui_name #human_task_ui_name} => String
|
5195
|
+
# * {Types::DescribeHumanTaskUiResponse#human_task_ui_status #human_task_ui_status} => String
|
5088
5196
|
# * {Types::DescribeHumanTaskUiResponse#creation_time #creation_time} => Time
|
5089
5197
|
# * {Types::DescribeHumanTaskUiResponse#ui_template #ui_template} => Types::UiTemplateInfo
|
5090
5198
|
#
|
@@ -5098,6 +5206,7 @@ module Aws::SageMaker
|
|
5098
5206
|
#
|
5099
5207
|
# resp.human_task_ui_arn #=> String
|
5100
5208
|
# resp.human_task_ui_name #=> String
|
5209
|
+
# resp.human_task_ui_status #=> String, one of "Active", "Deleting"
|
5101
5210
|
# resp.creation_time #=> Time
|
5102
5211
|
# resp.ui_template.url #=> String
|
5103
5212
|
# resp.ui_template.content_sha_256 #=> String
|
@@ -5114,7 +5223,7 @@ module Aws::SageMaker
|
|
5114
5223
|
# Gets a description of a hyperparameter tuning job.
|
5115
5224
|
#
|
5116
5225
|
# @option params [required, String] :hyper_parameter_tuning_job_name
|
5117
|
-
# The name of the tuning job
|
5226
|
+
# The name of the tuning job.
|
5118
5227
|
#
|
5119
5228
|
# @return [Types::DescribeHyperParameterTuningJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5120
5229
|
#
|
@@ -5401,6 +5510,7 @@ module Aws::SageMaker
|
|
5401
5510
|
# resp.labeling_job_algorithms_config.labeling_job_resource_config.volume_kms_key_id #=> String
|
5402
5511
|
# resp.human_task_config.workteam_arn #=> String
|
5403
5512
|
# resp.human_task_config.ui_config.ui_template_s3_uri #=> String
|
5513
|
+
# resp.human_task_config.ui_config.human_task_ui_arn #=> String
|
5404
5514
|
# resp.human_task_config.pre_human_task_lambda_arn #=> String
|
5405
5515
|
# resp.human_task_config.task_keywords #=> Array
|
5406
5516
|
# resp.human_task_config.task_keywords[0] #=> String
|
@@ -6093,6 +6203,7 @@ module Aws::SageMaker
|
|
6093
6203
|
# * {Types::DescribeTransformJobResponse#failure_reason #failure_reason} => String
|
6094
6204
|
# * {Types::DescribeTransformJobResponse#model_name #model_name} => String
|
6095
6205
|
# * {Types::DescribeTransformJobResponse#max_concurrent_transforms #max_concurrent_transforms} => Integer
|
6206
|
+
# * {Types::DescribeTransformJobResponse#model_client_config #model_client_config} => Types::ModelClientConfig
|
6096
6207
|
# * {Types::DescribeTransformJobResponse#max_payload_in_mb #max_payload_in_mb} => Integer
|
6097
6208
|
# * {Types::DescribeTransformJobResponse#batch_strategy #batch_strategy} => String
|
6098
6209
|
# * {Types::DescribeTransformJobResponse#environment #environment} => Hash<String,String>
|
@@ -6121,6 +6232,8 @@ module Aws::SageMaker
|
|
6121
6232
|
# resp.failure_reason #=> String
|
6122
6233
|
# resp.model_name #=> String
|
6123
6234
|
# resp.max_concurrent_transforms #=> Integer
|
6235
|
+
# resp.model_client_config.invocations_timeout_in_seconds #=> Integer
|
6236
|
+
# resp.model_client_config.invocations_max_retries #=> Integer
|
6124
6237
|
# resp.max_payload_in_mb #=> Integer
|
6125
6238
|
# resp.batch_strategy #=> String, one of "MultiRecord", "SingleRecord"
|
6126
6239
|
# resp.environment #=> Hash
|
@@ -6289,7 +6402,8 @@ module Aws::SageMaker
|
|
6289
6402
|
req.send_request(options)
|
6290
6403
|
end
|
6291
6404
|
|
6292
|
-
# Describes
|
6405
|
+
# Describes a user profile. For more information, see
|
6406
|
+
# `CreateUserProfile`.
|
6293
6407
|
#
|
6294
6408
|
# @option params [required, String] :domain_id
|
6295
6409
|
# The domain ID.
|
@@ -8841,6 +8955,13 @@ module Aws::SageMaker
|
|
8841
8955
|
# The Amazon Resource Name (ARN) that has access to the S3 objects that
|
8842
8956
|
# are used by the template.
|
8843
8957
|
#
|
8958
|
+
# @option params [String] :human_task_ui_arn
|
8959
|
+
# The `HumanTaskUiArn` of the worker UI that you want to render. Do not
|
8960
|
+
# provide a `HumanTaskUiArn` if you use the `UiTemplate` parameter.
|
8961
|
+
#
|
8962
|
+
# See a list of available Human Ui Amazon Resource Names (ARNs) in
|
8963
|
+
# UiConfig.
|
8964
|
+
#
|
8844
8965
|
# @return [Types::RenderUiTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8845
8966
|
#
|
8846
8967
|
# * {Types::RenderUiTemplateResponse#rendered_content #rendered_content} => String
|
@@ -8856,6 +8977,7 @@ module Aws::SageMaker
|
|
8856
8977
|
# input: "TaskInput", # required
|
8857
8978
|
# },
|
8858
8979
|
# role_arn: "RoleArn", # required
|
8980
|
+
# human_task_ui_arn: "HumanTaskUiArn",
|
8859
8981
|
# })
|
8860
8982
|
#
|
8861
8983
|
# @example Response structure
|
@@ -9631,10 +9753,10 @@ module Aws::SageMaker
|
|
9631
9753
|
req.send_request(options)
|
9632
9754
|
end
|
9633
9755
|
|
9634
|
-
# Updates
|
9756
|
+
# Updates the default settings for new user profiles in the domain.
|
9635
9757
|
#
|
9636
9758
|
# @option params [required, String] :domain_id
|
9637
|
-
# The domain
|
9759
|
+
# The ID of the domain to be updated.
|
9638
9760
|
#
|
9639
9761
|
# @option params [Types::UserSettings] :default_user_settings
|
9640
9762
|
# A collection of settings.
|
@@ -9704,6 +9826,11 @@ module Aws::SageMaker
|
|
9704
9826
|
# being performed on the endpoint. To update an endpoint, you must
|
9705
9827
|
# create a new `EndpointConfig`.
|
9706
9828
|
#
|
9829
|
+
# If you delete the `EndpointConfig` of an endpoint that is active or
|
9830
|
+
# being created or updated you may lose visibility into the instance
|
9831
|
+
# type the endpoint is using. The endpoint must be deleted in order to
|
9832
|
+
# stop incurring charges.
|
9833
|
+
#
|
9707
9834
|
# </note>
|
9708
9835
|
#
|
9709
9836
|
# @option params [required, String] :endpoint_name
|
@@ -10315,7 +10442,7 @@ module Aws::SageMaker
|
|
10315
10442
|
|
10316
10443
|
# Restricts access to tasks assigned to workers in the specified
|
10317
10444
|
# workforce to those within specific ranges of IP addresses. You specify
|
10318
|
-
# allowed IP addresses by creating a list of up to
|
10445
|
+
# allowed IP addresses by creating a list of up to ten [CIDRs][1].
|
10319
10446
|
#
|
10320
10447
|
# By default, a workforce isn't restricted to specific IP addresses. If
|
10321
10448
|
# you specify a range of IP addresses, workers who attempt to access
|
@@ -10336,10 +10463,10 @@ module Aws::SageMaker
|
|
10336
10463
|
# created and cannot be modified.
|
10337
10464
|
#
|
10338
10465
|
# @option params [Types::SourceIpConfig] :source_ip_config
|
10339
|
-
# A list of one to
|
10340
|
-
#
|
10466
|
+
# A list of one to ten worker IP address ranges ([CIDRs][1]) that can be
|
10467
|
+
# used to access tasks assigned to this workforce.
|
10341
10468
|
#
|
10342
|
-
# Maximum:
|
10469
|
+
# Maximum: Ten CIDR values
|
10343
10470
|
#
|
10344
10471
|
#
|
10345
10472
|
#
|
@@ -10453,7 +10580,7 @@ module Aws::SageMaker
|
|
10453
10580
|
params: params,
|
10454
10581
|
config: config)
|
10455
10582
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
10456
|
-
context[:gem_version] = '1.
|
10583
|
+
context[:gem_version] = '1.63.0'
|
10457
10584
|
Seahorse::Client::Request.new(handlers, context)
|
10458
10585
|
end
|
10459
10586
|
|