aws-sdk-sagemaker 1.61.0 → 1.66.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-sagemaker.rb +2 -2
- data/lib/aws-sdk-sagemaker/client.rb +569 -105
- data/lib/aws-sdk-sagemaker/client_api.rb +199 -14
- data/lib/aws-sdk-sagemaker/types.rb +2199 -277
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92ee945e491a15aaf0bb659a68e5b250b00e39bf57153cd28ff903c218ee5638
|
4
|
+
data.tar.gz: 4758058370f742eee6262f6568a63e152f1621c384fa585cb94411a4308fa1ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 298268ac4279492ae6ebd60171611afe04ea09812498432d3d8394d4258e889c51cd2c1af23f78f4bcee13bfc9fbfe424f9eda2c5cdfd0903b0864fbb20150b6
|
7
|
+
data.tar.gz: b94ca96f0d61dad5bd58ad01f09ae4091595052f4478a0f2b98f36c5c57161d764947ab79b253c01fedaf612f98c5603ff0407a38505370e3253ec44b444125f
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
@@ -85,13 +85,28 @@ module Aws::SageMaker
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::SageMaker
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -486,7 +501,7 @@ module Aws::SageMaker
|
|
486
501
|
# algorithm_name: "EntityName", # required
|
487
502
|
# algorithm_description: "EntityDescription",
|
488
503
|
# training_specification: { # required
|
489
|
-
# training_image: "
|
504
|
+
# training_image: "ContainerImage", # required
|
490
505
|
# training_image_digest: "ImageDigest",
|
491
506
|
# supported_hyper_parameters: [
|
492
507
|
# {
|
@@ -540,7 +555,7 @@ module Aws::SageMaker
|
|
540
555
|
# containers: [ # required
|
541
556
|
# {
|
542
557
|
# container_hostname: "ContainerHostname",
|
543
|
-
# image: "
|
558
|
+
# image: "ContainerImage", # required
|
544
559
|
# image_digest: "ImageDigest",
|
545
560
|
# model_data_url: "Url",
|
546
561
|
# product_id: "ProductId",
|
@@ -652,11 +667,10 @@ module Aws::SageMaker
|
|
652
667
|
end
|
653
668
|
|
654
669
|
# Creates a running App for the specified UserProfile. Supported Apps
|
655
|
-
# are JupyterServer
|
656
|
-
#
|
657
|
-
#
|
658
|
-
#
|
659
|
-
# UserProfiles are limited to 5 concurrently running Apps at a time.
|
670
|
+
# are JupyterServer and KernelGateway. This operation is automatically
|
671
|
+
# invoked by Amazon SageMaker Studio upon access to the associated
|
672
|
+
# Domain, and when new kernel configurations are selected by the user. A
|
673
|
+
# user may have multiple Apps active simultaneously.
|
660
674
|
#
|
661
675
|
# @option params [required, String] :domain_id
|
662
676
|
# The domain ID.
|
@@ -696,7 +710,7 @@ module Aws::SageMaker
|
|
696
710
|
# },
|
697
711
|
# ],
|
698
712
|
# resource_spec: {
|
699
|
-
# sage_maker_image_arn: "
|
713
|
+
# sage_maker_image_arn: "ImageArn",
|
700
714
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
701
715
|
# },
|
702
716
|
# })
|
@@ -714,15 +728,14 @@ module Aws::SageMaker
|
|
714
728
|
req.send_request(options)
|
715
729
|
end
|
716
730
|
|
717
|
-
# Creates an
|
731
|
+
# Creates an Autopilot job.
|
718
732
|
#
|
719
|
-
#
|
720
|
-
#
|
721
|
-
#
|
722
|
-
# Services][1].
|
733
|
+
# Find the best performing model after you run an Autopilot job by
|
734
|
+
# calling . Deploy that model by following the steps described in [Step
|
735
|
+
# 6.1: Deploy the Model to Amazon SageMaker Hosting Services][1].
|
723
736
|
#
|
724
|
-
# For information about how to use
|
725
|
-
#
|
737
|
+
# For information about how to use Autopilot, see [ Automate Model
|
738
|
+
# Development with Amazon SageMaker Autopilot][2].
|
726
739
|
#
|
727
740
|
#
|
728
741
|
#
|
@@ -730,7 +743,7 @@ module Aws::SageMaker
|
|
730
743
|
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-automate-model-development.html
|
731
744
|
#
|
732
745
|
# @option params [required, String] :auto_ml_job_name
|
733
|
-
# Identifies an
|
746
|
+
# Identifies an Autopilot job. Must be unique to your account and is
|
734
747
|
# case-insensitive.
|
735
748
|
#
|
736
749
|
# @option params [required, Array<Types::AutoMLChannel>] :input_data_config
|
@@ -747,20 +760,21 @@ module Aws::SageMaker
|
|
747
760
|
# MulticlassClassification, and Regression.
|
748
761
|
#
|
749
762
|
# @option params [Types::AutoMLJobObjective] :auto_ml_job_objective
|
750
|
-
# Defines the job
|
751
|
-
#
|
752
|
-
#
|
763
|
+
# Defines the objective of a an AutoML job. You provide a
|
764
|
+
# AutoMLJobObjective$MetricName and Autopilot infers whether to minimize
|
765
|
+
# or maximize it. If a metric is not specified, the most commonly used
|
766
|
+
# ObjectiveMetric for problem type is automaically selected.
|
753
767
|
#
|
754
768
|
# @option params [Types::AutoMLJobConfig] :auto_ml_job_config
|
755
769
|
# Contains CompletionCriteria and SecurityConfig.
|
756
770
|
#
|
757
771
|
# @option params [required, String] :role_arn
|
758
|
-
# The ARN of the role that
|
772
|
+
# The ARN of the role that is used to access the data.
|
759
773
|
#
|
760
774
|
# @option params [Boolean] :generate_candidate_definitions_only
|
761
|
-
#
|
762
|
-
#
|
763
|
-
#
|
775
|
+
# Generates possible candidates without training a model. A candidate is
|
776
|
+
# a combination of data preprocessors, algorithms, and algorithm
|
777
|
+
# parameter settings.
|
764
778
|
#
|
765
779
|
# @option params [Array<Types::Tag>] :tags
|
766
780
|
# Each tag consists of a key and an optional value. Tag keys must be
|
@@ -792,7 +806,7 @@ module Aws::SageMaker
|
|
792
806
|
# },
|
793
807
|
# problem_type: "BinaryClassification", # accepts BinaryClassification, MulticlassClassification, Regression
|
794
808
|
# auto_ml_job_objective: {
|
795
|
-
# metric_name: "Accuracy", # required, accepts Accuracy, MSE, F1, F1macro
|
809
|
+
# metric_name: "Accuracy", # required, accepts Accuracy, MSE, F1, F1macro, AUC
|
796
810
|
# },
|
797
811
|
# auto_ml_job_config: {
|
798
812
|
# completion_criteria: {
|
@@ -902,8 +916,8 @@ module Aws::SageMaker
|
|
902
916
|
# * The output location for the compiled model and the device (target)
|
903
917
|
# that the model runs on
|
904
918
|
#
|
905
|
-
# *
|
906
|
-
#
|
919
|
+
# * The Amazon Resource Name (ARN) of the IAM role that Amazon SageMaker
|
920
|
+
# assumes to perform the model compilation job.
|
907
921
|
#
|
908
922
|
# You can also provide a `Tag` to track the model compilation job's
|
909
923
|
# resource use and costs. The response body contains the
|
@@ -971,7 +985,13 @@ module Aws::SageMaker
|
|
971
985
|
# },
|
972
986
|
# output_config: { # required
|
973
987
|
# s3_output_location: "S3Uri", # required
|
974
|
-
# target_device: "lambda", #
|
988
|
+
# target_device: "lambda", # accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_g4dn, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, jetson_xavier, rasp3b, imx8qm, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603, sitara_am57x, amba_cv22, x86_win32, x86_win64
|
989
|
+
# target_platform: {
|
990
|
+
# os: "ANDROID", # required, accepts ANDROID, LINUX
|
991
|
+
# arch: "X86_64", # required, accepts X86_64, X86, ARM64, ARM_EABI, ARM_EABIHF
|
992
|
+
# accelerator: "INTEL_GRAPHICS", # accepts INTEL_GRAPHICS, MALI, NVIDIA
|
993
|
+
# },
|
994
|
+
# compiler_options: "CompilerOptions",
|
975
995
|
# },
|
976
996
|
# stopping_condition: { # required
|
977
997
|
# max_runtime_in_seconds: 1,
|
@@ -1058,19 +1078,19 @@ module Aws::SageMaker
|
|
1058
1078
|
# },
|
1059
1079
|
# jupyter_server_app_settings: {
|
1060
1080
|
# default_resource_spec: {
|
1061
|
-
# sage_maker_image_arn: "
|
1081
|
+
# sage_maker_image_arn: "ImageArn",
|
1062
1082
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
1063
1083
|
# },
|
1064
1084
|
# },
|
1065
1085
|
# kernel_gateway_app_settings: {
|
1066
1086
|
# default_resource_spec: {
|
1067
|
-
# sage_maker_image_arn: "
|
1087
|
+
# sage_maker_image_arn: "ImageArn",
|
1068
1088
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
1069
1089
|
# },
|
1070
1090
|
# },
|
1071
1091
|
# tensor_board_app_settings: {
|
1072
1092
|
# default_resource_spec: {
|
1073
|
-
# sage_maker_image_arn: "
|
1093
|
+
# sage_maker_image_arn: "ImageArn",
|
1074
1094
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
1075
1095
|
# },
|
1076
1096
|
# },
|
@@ -1373,10 +1393,10 @@ module Aws::SageMaker
|
|
1373
1393
|
req.send_request(options)
|
1374
1394
|
end
|
1375
1395
|
|
1376
|
-
# Creates an
|
1377
|
-
#
|
1378
|
-
#
|
1379
|
-
#
|
1396
|
+
# Creates an SageMaker *experiment*. An experiment is a collection of
|
1397
|
+
# *trials* that are observed, compared and evaluated as a group. A trial
|
1398
|
+
# is a set of steps, called *trial components*, that produce a machine
|
1399
|
+
# learning model.
|
1380
1400
|
#
|
1381
1401
|
# The goal of an experiment is to determine the components that produce
|
1382
1402
|
# the best model. Multiple trials are performed, each one isolating and
|
@@ -1992,7 +2012,13 @@ module Aws::SageMaker
|
|
1992
2012
|
# The S3 URL of the file that defines the categories used to label the
|
1993
2013
|
# data objects.
|
1994
2014
|
#
|
1995
|
-
#
|
2015
|
+
# For 3D point cloud task types, see [Create a Labeling Category
|
2016
|
+
# Configuration File for 3D Point Cloud Labeling Jobs][1].
|
2017
|
+
#
|
2018
|
+
# For all other [built-in task types][2] and [custom tasks][3], your
|
2019
|
+
# label category configuration file must be a JSON file in the following
|
2020
|
+
# format. Identify the labels you want to use by replacing `label_1`,
|
2021
|
+
# `label_2`,`...`,`label_n` with your label categories.
|
1996
2022
|
#
|
1997
2023
|
# `\{`
|
1998
2024
|
#
|
@@ -2002,13 +2028,13 @@ module Aws::SageMaker
|
|
2002
2028
|
#
|
2003
2029
|
# ` \{`
|
2004
2030
|
#
|
2005
|
-
# ` "label": "
|
2031
|
+
# ` "label": "label_1"`
|
2006
2032
|
#
|
2007
2033
|
# ` \},`
|
2008
2034
|
#
|
2009
2035
|
# ` \{`
|
2010
2036
|
#
|
2011
|
-
# ` "label": "
|
2037
|
+
# ` "label": "label_2"`
|
2012
2038
|
#
|
2013
2039
|
# ` \},`
|
2014
2040
|
#
|
@@ -2016,7 +2042,7 @@ module Aws::SageMaker
|
|
2016
2042
|
#
|
2017
2043
|
# ` \{`
|
2018
2044
|
#
|
2019
|
-
# ` "label": "
|
2045
|
+
# ` "label": "label_n"`
|
2020
2046
|
#
|
2021
2047
|
# ` \}`
|
2022
2048
|
#
|
@@ -2024,6 +2050,12 @@ module Aws::SageMaker
|
|
2024
2050
|
#
|
2025
2051
|
# `\}`
|
2026
2052
|
#
|
2053
|
+
#
|
2054
|
+
#
|
2055
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-point-cloud-label-category-config.html
|
2056
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-task-types.html
|
2057
|
+
# [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-custom-templates.html
|
2058
|
+
#
|
2027
2059
|
# @option params [Types::LabelingJobStoppingConditions] :stopping_conditions
|
2028
2060
|
# A set of conditions for stopping the labeling job. If any of the
|
2029
2061
|
# conditions are met, the job is automatically stopped. You can use
|
@@ -2058,7 +2090,7 @@ module Aws::SageMaker
|
|
2058
2090
|
# label_attribute_name: "LabelAttributeName", # required
|
2059
2091
|
# input_config: { # required
|
2060
2092
|
# data_source: { # required
|
2061
|
-
# s3_data_source: {
|
2093
|
+
# s3_data_source: {
|
2062
2094
|
# manifest_s3_uri: "S3Uri", # required
|
2063
2095
|
# },
|
2064
2096
|
# },
|
@@ -2229,7 +2261,10 @@ module Aws::SageMaker
|
|
2229
2261
|
# model_name: "ModelName", # required
|
2230
2262
|
# primary_container: {
|
2231
2263
|
# container_hostname: "ContainerHostname",
|
2232
|
-
# image: "
|
2264
|
+
# image: "ContainerImage",
|
2265
|
+
# image_config: {
|
2266
|
+
# repository_access_mode: "Platform", # required, accepts Platform, Vpc
|
2267
|
+
# },
|
2233
2268
|
# mode: "SingleModel", # accepts SingleModel, MultiModel
|
2234
2269
|
# model_data_url: "Url",
|
2235
2270
|
# environment: {
|
@@ -2240,7 +2275,10 @@ module Aws::SageMaker
|
|
2240
2275
|
# containers: [
|
2241
2276
|
# {
|
2242
2277
|
# container_hostname: "ContainerHostname",
|
2243
|
-
# image: "
|
2278
|
+
# image: "ContainerImage",
|
2279
|
+
# image_config: {
|
2280
|
+
# repository_access_mode: "Platform", # required, accepts Platform, Vpc
|
2281
|
+
# },
|
2244
2282
|
# mode: "SingleModel", # accepts SingleModel, MultiModel
|
2245
2283
|
# model_data_url: "Url",
|
2246
2284
|
# environment: {
|
@@ -2330,7 +2368,7 @@ module Aws::SageMaker
|
|
2330
2368
|
# containers: [ # required
|
2331
2369
|
# {
|
2332
2370
|
# container_hostname: "ContainerHostname",
|
2333
|
-
# image: "
|
2371
|
+
# image: "ContainerImage", # required
|
2334
2372
|
# image_digest: "ImageDigest",
|
2335
2373
|
# model_data_url: "Url",
|
2336
2374
|
# product_id: "ProductId",
|
@@ -2945,7 +2983,14 @@ module Aws::SageMaker
|
|
2945
2983
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL
|
2946
2984
|
#
|
2947
2985
|
# @option params [Types::ExperimentConfig] :experiment_config
|
2948
|
-
#
|
2986
|
+
# Associates a SageMaker job as a trial component with an experiment and
|
2987
|
+
# trial. Specified when you call the following APIs:
|
2988
|
+
#
|
2989
|
+
# * CreateProcessingJob
|
2990
|
+
#
|
2991
|
+
# * CreateTrainingJob
|
2992
|
+
#
|
2993
|
+
# * CreateTransformJob
|
2949
2994
|
#
|
2950
2995
|
# @return [Types::CreateProcessingJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2951
2996
|
#
|
@@ -3252,7 +3297,14 @@ module Aws::SageMaker
|
|
3252
3297
|
# Configuration of storage locations for TensorBoard output.
|
3253
3298
|
#
|
3254
3299
|
# @option params [Types::ExperimentConfig] :experiment_config
|
3255
|
-
#
|
3300
|
+
# Associates a SageMaker job as a trial component with an experiment and
|
3301
|
+
# trial. Specified when you call the following APIs:
|
3302
|
+
#
|
3303
|
+
# * CreateProcessingJob
|
3304
|
+
#
|
3305
|
+
# * CreateTrainingJob
|
3306
|
+
#
|
3307
|
+
# * CreateTransformJob
|
3256
3308
|
#
|
3257
3309
|
# @return [Types::CreateTrainingJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3258
3310
|
#
|
@@ -3443,6 +3495,10 @@ module Aws::SageMaker
|
|
3443
3495
|
#
|
3444
3496
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-batch-code.html#your-algorithms-batch-code-how-containe-serves-requests
|
3445
3497
|
#
|
3498
|
+
# @option params [Types::ModelClientConfig] :model_client_config
|
3499
|
+
# Configures the timeout and maximum number of retries for processing a
|
3500
|
+
# transform job invocation.
|
3501
|
+
#
|
3446
3502
|
# @option params [Integer] :max_payload_in_mb
|
3447
3503
|
# The maximum allowed size of the payload, in MB. A *payload* is the
|
3448
3504
|
# data portion of a record (without metadata). The value in
|
@@ -3512,7 +3568,14 @@ module Aws::SageMaker
|
|
3512
3568
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-what
|
3513
3569
|
#
|
3514
3570
|
# @option params [Types::ExperimentConfig] :experiment_config
|
3515
|
-
#
|
3571
|
+
# Associates a SageMaker job as a trial component with an experiment and
|
3572
|
+
# trial. Specified when you call the following APIs:
|
3573
|
+
#
|
3574
|
+
# * CreateProcessingJob
|
3575
|
+
#
|
3576
|
+
# * CreateTrainingJob
|
3577
|
+
#
|
3578
|
+
# * CreateTransformJob
|
3516
3579
|
#
|
3517
3580
|
# @return [Types::CreateTransformJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3518
3581
|
#
|
@@ -3524,6 +3587,10 @@ module Aws::SageMaker
|
|
3524
3587
|
# transform_job_name: "TransformJobName", # required
|
3525
3588
|
# model_name: "ModelName", # required
|
3526
3589
|
# max_concurrent_transforms: 1,
|
3590
|
+
# model_client_config: {
|
3591
|
+
# invocations_timeout_in_seconds: 1,
|
3592
|
+
# invocations_max_retries: 1,
|
3593
|
+
# },
|
3527
3594
|
# max_payload_in_mb: 1,
|
3528
3595
|
# batch_strategy: "MultiRecord", # accepts MultiRecord, SingleRecord
|
3529
3596
|
# environment: {
|
@@ -3822,19 +3889,19 @@ module Aws::SageMaker
|
|
3822
3889
|
# },
|
3823
3890
|
# jupyter_server_app_settings: {
|
3824
3891
|
# default_resource_spec: {
|
3825
|
-
# sage_maker_image_arn: "
|
3892
|
+
# sage_maker_image_arn: "ImageArn",
|
3826
3893
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
3827
3894
|
# },
|
3828
3895
|
# },
|
3829
3896
|
# kernel_gateway_app_settings: {
|
3830
3897
|
# default_resource_spec: {
|
3831
|
-
# sage_maker_image_arn: "
|
3898
|
+
# sage_maker_image_arn: "ImageArn",
|
3832
3899
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
3833
3900
|
# },
|
3834
3901
|
# },
|
3835
3902
|
# tensor_board_app_settings: {
|
3836
3903
|
# default_resource_spec: {
|
3837
|
-
# sage_maker_image_arn: "
|
3904
|
+
# sage_maker_image_arn: "ImageArn",
|
3838
3905
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
3839
3906
|
# },
|
3840
3907
|
# },
|
@@ -3854,6 +3921,112 @@ module Aws::SageMaker
|
|
3854
3921
|
req.send_request(options)
|
3855
3922
|
end
|
3856
3923
|
|
3924
|
+
# Use this operation to create a workforce. This operation will return
|
3925
|
+
# an error if a workforce already exists in the AWS Region that you
|
3926
|
+
# specify. You can only create one workforce in each AWS Region per AWS
|
3927
|
+
# account.
|
3928
|
+
#
|
3929
|
+
# If you want to create a new workforce in an AWS Region where a
|
3930
|
+
# workforce already exists, use the API operation to delete the existing
|
3931
|
+
# workforce and then use `CreateWorkforce` to create a new workforce.
|
3932
|
+
#
|
3933
|
+
# To create a private workforce using Amazon Cognito, you must specify a
|
3934
|
+
# Cognito user pool in `CognitoConfig`. You can also create an Amazon
|
3935
|
+
# Cognito workforce using the Amazon SageMaker console. For more
|
3936
|
+
# information, see [ Create a Private Workforce (Amazon Cognito)][1].
|
3937
|
+
#
|
3938
|
+
# To create a private workforce using your own OIDC Identity Provider
|
3939
|
+
# (IdP), specify your IdP configuration in `OidcConfig`. Your OIDC IdP
|
3940
|
+
# must support *groups* because groups are used by Ground Truth and
|
3941
|
+
# Amazon A2I to create work teams. For more information, see [ Create a
|
3942
|
+
# Private Workforce (OIDC IdP)][2].
|
3943
|
+
#
|
3944
|
+
#
|
3945
|
+
#
|
3946
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-workforce-create-private.html
|
3947
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-workforce-create-private-oidc.html
|
3948
|
+
#
|
3949
|
+
# @option params [Types::CognitoConfig] :cognito_config
|
3950
|
+
# Use this parameter to configure an Amazon Cognito private workforce. A
|
3951
|
+
# single Cognito workforce is created using and corresponds to a single
|
3952
|
+
# [ Amazon Cognito user pool][1].
|
3953
|
+
#
|
3954
|
+
# Do not use `OidcConfig` if you specify values for `CognitoConfig`.
|
3955
|
+
#
|
3956
|
+
#
|
3957
|
+
#
|
3958
|
+
# [1]: https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools.html
|
3959
|
+
#
|
3960
|
+
# @option params [Types::OidcConfig] :oidc_config
|
3961
|
+
# Use this parameter to configure a private workforce using your own
|
3962
|
+
# OIDC Identity Provider.
|
3963
|
+
#
|
3964
|
+
# Do not use `CognitoConfig` if you specify values for `OidcConfig`.
|
3965
|
+
#
|
3966
|
+
# @option params [Types::SourceIpConfig] :source_ip_config
|
3967
|
+
# A list of IP address ranges ([CIDRs][1]). Used to create an allow list
|
3968
|
+
# of IP addresses for a private workforce. Workers will only be able to
|
3969
|
+
# login to their worker portal from an IP address within this range. By
|
3970
|
+
# default, a workforce isn't restricted to specific IP addresses.
|
3971
|
+
#
|
3972
|
+
#
|
3973
|
+
#
|
3974
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html
|
3975
|
+
#
|
3976
|
+
# @option params [required, String] :workforce_name
|
3977
|
+
# The name of the private workforce.
|
3978
|
+
#
|
3979
|
+
# @option params [Array<Types::Tag>] :tags
|
3980
|
+
# An array of key-value pairs that contain metadata to help you
|
3981
|
+
# categorize and organize our workforce. Each tag consists of a key and
|
3982
|
+
# a value, both of which you define.
|
3983
|
+
#
|
3984
|
+
# @return [Types::CreateWorkforceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3985
|
+
#
|
3986
|
+
# * {Types::CreateWorkforceResponse#workforce_arn #workforce_arn} => String
|
3987
|
+
#
|
3988
|
+
# @example Request syntax with placeholder values
|
3989
|
+
#
|
3990
|
+
# resp = client.create_workforce({
|
3991
|
+
# cognito_config: {
|
3992
|
+
# user_pool: "CognitoUserPool", # required
|
3993
|
+
# client_id: "ClientId", # required
|
3994
|
+
# },
|
3995
|
+
# oidc_config: {
|
3996
|
+
# client_id: "ClientId", # required
|
3997
|
+
# client_secret: "ClientSecret", # required
|
3998
|
+
# issuer: "OidcEndpoint", # required
|
3999
|
+
# authorization_endpoint: "OidcEndpoint", # required
|
4000
|
+
# token_endpoint: "OidcEndpoint", # required
|
4001
|
+
# user_info_endpoint: "OidcEndpoint", # required
|
4002
|
+
# logout_endpoint: "OidcEndpoint", # required
|
4003
|
+
# jwks_uri: "OidcEndpoint", # required
|
4004
|
+
# },
|
4005
|
+
# source_ip_config: {
|
4006
|
+
# cidrs: ["Cidr"], # required
|
4007
|
+
# },
|
4008
|
+
# workforce_name: "WorkforceName", # required
|
4009
|
+
# tags: [
|
4010
|
+
# {
|
4011
|
+
# key: "TagKey", # required
|
4012
|
+
# value: "TagValue", # required
|
4013
|
+
# },
|
4014
|
+
# ],
|
4015
|
+
# })
|
4016
|
+
#
|
4017
|
+
# @example Response structure
|
4018
|
+
#
|
4019
|
+
# resp.workforce_arn #=> String
|
4020
|
+
#
|
4021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateWorkforce AWS API Documentation
|
4022
|
+
#
|
4023
|
+
# @overload create_workforce(params = {})
|
4024
|
+
# @param [Hash] params ({})
|
4025
|
+
def create_workforce(params = {}, options = {})
|
4026
|
+
req = build_request(:create_workforce, params)
|
4027
|
+
req.send_request(options)
|
4028
|
+
end
|
4029
|
+
|
3857
4030
|
# Creates a new work team for labeling your data. A work team is defined
|
3858
4031
|
# by one or more Amazon Cognito user pools. You must first create the
|
3859
4032
|
# user pools before you can create a work team.
|
@@ -3863,13 +4036,30 @@ module Aws::SageMaker
|
|
3863
4036
|
# @option params [required, String] :workteam_name
|
3864
4037
|
# The name of the work team. Use this name to identify the work team.
|
3865
4038
|
#
|
4039
|
+
# @option params [String] :workforce_name
|
4040
|
+
# The name of the workforce.
|
4041
|
+
#
|
3866
4042
|
# @option params [required, Array<Types::MemberDefinition>] :member_definitions
|
3867
4043
|
# A list of `MemberDefinition` objects that contains objects that
|
3868
|
-
# identify the
|
3869
|
-
#
|
4044
|
+
# identify the workers that make up the work team.
|
4045
|
+
#
|
4046
|
+
# Workforces can be created using Amazon Cognito or your own OIDC
|
4047
|
+
# Identity Provider (IdP). For private workforces created using Amazon
|
4048
|
+
# Cognito use `CognitoMemberDefinition`. For workforces created using
|
4049
|
+
# your own OIDC identity provider (IdP) use `OidcMemberDefinition`. Do
|
4050
|
+
# not provide input for both of these parameters in a single request.
|
3870
4051
|
#
|
3871
|
-
#
|
3872
|
-
#
|
4052
|
+
# For workforces created using Amazon Cognito, private work teams
|
4053
|
+
# correspond to Amazon Cognito *user groups* within the user pool used
|
4054
|
+
# to create a workforce. All of the `CognitoMemberDefinition` objects
|
4055
|
+
# that make up the member definition must have the same `ClientId` and
|
4056
|
+
# `UserPool` values. To add a Amazon Cognito user group to an existing
|
4057
|
+
# worker pool, see [Adding groups to a User Pool](). For more
|
4058
|
+
# information about user pools, see [Amazon Cognito User Pools][1].
|
4059
|
+
#
|
4060
|
+
# For workforces created using your own OIDC IdP, specify the user
|
4061
|
+
# groups that you want to include in your private work team in
|
4062
|
+
# `OidcMemberDefinition` by listing those groups in `Groups`.
|
3873
4063
|
#
|
3874
4064
|
#
|
3875
4065
|
#
|
@@ -3901,12 +4091,16 @@ module Aws::SageMaker
|
|
3901
4091
|
#
|
3902
4092
|
# resp = client.create_workteam({
|
3903
4093
|
# workteam_name: "WorkteamName", # required
|
4094
|
+
# workforce_name: "WorkforceName",
|
3904
4095
|
# member_definitions: [ # required
|
3905
4096
|
# {
|
3906
4097
|
# cognito_member_definition: {
|
3907
4098
|
# user_pool: "CognitoUserPool", # required
|
3908
4099
|
# user_group: "CognitoUserGroup", # required
|
3909
|
-
# client_id: "
|
4100
|
+
# client_id: "ClientId", # required
|
4101
|
+
# },
|
4102
|
+
# oidc_member_definition: {
|
4103
|
+
# groups: ["Group"], # required
|
3910
4104
|
# },
|
3911
4105
|
# },
|
3912
4106
|
# ],
|
@@ -4160,6 +4354,34 @@ module Aws::SageMaker
|
|
4160
4354
|
req.send_request(options)
|
4161
4355
|
end
|
4162
4356
|
|
4357
|
+
# Use this operation to delete a human task user interface (worker task
|
4358
|
+
# template).
|
4359
|
+
#
|
4360
|
+
# To see a list of human task user interfaces (work task templates) in
|
4361
|
+
# your account, use . When you delete a worker task template, it no
|
4362
|
+
# longer appears when you call `ListHumanTaskUis`.
|
4363
|
+
#
|
4364
|
+
# @option params [required, String] :human_task_ui_name
|
4365
|
+
# The name of the human task user interface (work task template) you
|
4366
|
+
# want to delete.
|
4367
|
+
#
|
4368
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4369
|
+
#
|
4370
|
+
# @example Request syntax with placeholder values
|
4371
|
+
#
|
4372
|
+
# resp = client.delete_human_task_ui({
|
4373
|
+
# human_task_ui_name: "HumanTaskUiName", # required
|
4374
|
+
# })
|
4375
|
+
#
|
4376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteHumanTaskUi AWS API Documentation
|
4377
|
+
#
|
4378
|
+
# @overload delete_human_task_ui(params = {})
|
4379
|
+
# @param [Hash] params ({})
|
4380
|
+
def delete_human_task_ui(params = {}, options = {})
|
4381
|
+
req = build_request(:delete_human_task_ui, params)
|
4382
|
+
req.send_request(options)
|
4383
|
+
end
|
4384
|
+
|
4163
4385
|
# Deletes a model. The `DeleteModel` API deletes only the model entry
|
4164
4386
|
# that was created in Amazon SageMaker when you called the CreateModel
|
4165
4387
|
# API. It does not delete model artifacts, inference code, or the IAM
|
@@ -4410,6 +4632,37 @@ module Aws::SageMaker
|
|
4410
4632
|
req.send_request(options)
|
4411
4633
|
end
|
4412
4634
|
|
4635
|
+
# Use this operation to delete a workforce.
|
4636
|
+
#
|
4637
|
+
# If you want to create a new workforce in an AWS Region where a
|
4638
|
+
# workforce already exists, use this operation to delete the existing
|
4639
|
+
# workforce and then use to create a new workforce.
|
4640
|
+
#
|
4641
|
+
# If a private workforce contains one or more work teams, you must use
|
4642
|
+
# the operation to delete all work teams before you delete the
|
4643
|
+
# workforce. If you try to delete a workforce that contains one or more
|
4644
|
+
# work teams, you will recieve a `ResourceInUse` error.
|
4645
|
+
#
|
4646
|
+
# @option params [required, String] :workforce_name
|
4647
|
+
# The name of the workforce.
|
4648
|
+
#
|
4649
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4650
|
+
#
|
4651
|
+
# @example Request syntax with placeholder values
|
4652
|
+
#
|
4653
|
+
# resp = client.delete_workforce({
|
4654
|
+
# workforce_name: "WorkforceName", # required
|
4655
|
+
# })
|
4656
|
+
#
|
4657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteWorkforce AWS API Documentation
|
4658
|
+
#
|
4659
|
+
# @overload delete_workforce(params = {})
|
4660
|
+
# @param [Hash] params ({})
|
4661
|
+
def delete_workforce(params = {}, options = {})
|
4662
|
+
req = build_request(:delete_workforce, params)
|
4663
|
+
req.send_request(options)
|
4664
|
+
end
|
4665
|
+
|
4413
4666
|
# Deletes an existing work team. This operation can't be undone.
|
4414
4667
|
#
|
4415
4668
|
# @option params [required, String] :workteam_name
|
@@ -4691,7 +4944,7 @@ module Aws::SageMaker
|
|
4691
4944
|
# resp.output_data_config.kms_key_id #=> String
|
4692
4945
|
# resp.output_data_config.s3_output_path #=> String
|
4693
4946
|
# resp.role_arn #=> String
|
4694
|
-
# resp.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro"
|
4947
|
+
# resp.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC"
|
4695
4948
|
# resp.problem_type #=> String, one of "BinaryClassification", "MulticlassClassification", "Regression"
|
4696
4949
|
# resp.auto_ml_job_config.completion_criteria.max_candidates #=> Integer
|
4697
4950
|
# resp.auto_ml_job_config.completion_criteria.max_runtime_per_training_job_in_seconds #=> Integer
|
@@ -4708,7 +4961,7 @@ module Aws::SageMaker
|
|
4708
4961
|
# resp.failure_reason #=> String
|
4709
4962
|
# resp.best_candidate.candidate_name #=> String
|
4710
4963
|
# resp.best_candidate.final_auto_ml_job_objective_metric.type #=> String, one of "Maximize", "Minimize"
|
4711
|
-
# resp.best_candidate.final_auto_ml_job_objective_metric.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro"
|
4964
|
+
# resp.best_candidate.final_auto_ml_job_objective_metric.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC"
|
4712
4965
|
# resp.best_candidate.final_auto_ml_job_objective_metric.value #=> Float
|
4713
4966
|
# resp.best_candidate.objective_status #=> String, one of "Succeeded", "Pending", "Failed"
|
4714
4967
|
# resp.best_candidate.candidate_steps #=> Array
|
@@ -4730,7 +4983,7 @@ module Aws::SageMaker
|
|
4730
4983
|
# resp.generate_candidate_definitions_only #=> Boolean
|
4731
4984
|
# resp.auto_ml_job_artifacts.candidate_definition_notebook_location #=> String
|
4732
4985
|
# resp.auto_ml_job_artifacts.data_exploration_notebook_location #=> String
|
4733
|
-
# resp.resolved_attributes.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro"
|
4986
|
+
# resp.resolved_attributes.auto_ml_job_objective.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC"
|
4734
4987
|
# resp.resolved_attributes.problem_type #=> String, one of "BinaryClassification", "MulticlassClassification", "Regression"
|
4735
4988
|
# resp.resolved_attributes.completion_criteria.max_candidates #=> Integer
|
4736
4989
|
# resp.resolved_attributes.completion_criteria.max_runtime_per_training_job_in_seconds #=> Integer
|
@@ -4832,7 +5085,11 @@ module Aws::SageMaker
|
|
4832
5085
|
# resp.input_config.data_input_config #=> String
|
4833
5086
|
# resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST", "TFLITE"
|
4834
5087
|
# resp.output_config.s3_output_location #=> String
|
4835
|
-
# resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22"
|
5088
|
+
# resp.output_config.target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "x86_win32", "x86_win64"
|
5089
|
+
# resp.output_config.target_platform.os #=> String, one of "ANDROID", "LINUX"
|
5090
|
+
# resp.output_config.target_platform.arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
|
5091
|
+
# resp.output_config.target_platform.accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
|
5092
|
+
# resp.output_config.compiler_options #=> String
|
4836
5093
|
#
|
4837
5094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCompilationJob AWS API Documentation
|
4838
5095
|
#
|
@@ -5135,15 +5392,18 @@ module Aws::SageMaker
|
|
5135
5392
|
req.send_request(options)
|
5136
5393
|
end
|
5137
5394
|
|
5138
|
-
# Returns information about the requested human task user interface
|
5395
|
+
# Returns information about the requested human task user interface
|
5396
|
+
# (worker task template).
|
5139
5397
|
#
|
5140
5398
|
# @option params [required, String] :human_task_ui_name
|
5141
|
-
# The name of the human task user interface
|
5399
|
+
# The name of the human task user interface (worker task template) you
|
5400
|
+
# want information about.
|
5142
5401
|
#
|
5143
5402
|
# @return [Types::DescribeHumanTaskUiResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5144
5403
|
#
|
5145
5404
|
# * {Types::DescribeHumanTaskUiResponse#human_task_ui_arn #human_task_ui_arn} => String
|
5146
5405
|
# * {Types::DescribeHumanTaskUiResponse#human_task_ui_name #human_task_ui_name} => String
|
5406
|
+
# * {Types::DescribeHumanTaskUiResponse#human_task_ui_status #human_task_ui_status} => String
|
5147
5407
|
# * {Types::DescribeHumanTaskUiResponse#creation_time #creation_time} => Time
|
5148
5408
|
# * {Types::DescribeHumanTaskUiResponse#ui_template #ui_template} => Types::UiTemplateInfo
|
5149
5409
|
#
|
@@ -5157,6 +5417,7 @@ module Aws::SageMaker
|
|
5157
5417
|
#
|
5158
5418
|
# resp.human_task_ui_arn #=> String
|
5159
5419
|
# resp.human_task_ui_name #=> String
|
5420
|
+
# resp.human_task_ui_status #=> String, one of "Active", "Deleting"
|
5160
5421
|
# resp.creation_time #=> Time
|
5161
5422
|
# resp.ui_template.url #=> String
|
5162
5423
|
# resp.ui_template.content_sha_256 #=> String
|
@@ -5173,7 +5434,7 @@ module Aws::SageMaker
|
|
5173
5434
|
# Gets a description of a hyperparameter tuning job.
|
5174
5435
|
#
|
5175
5436
|
# @option params [required, String] :hyper_parameter_tuning_job_name
|
5176
|
-
# The name of the tuning job
|
5437
|
+
# The name of the tuning job.
|
5177
5438
|
#
|
5178
5439
|
# @return [Types::DescribeHyperParameterTuningJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5179
5440
|
#
|
@@ -5433,7 +5694,7 @@ module Aws::SageMaker
|
|
5433
5694
|
#
|
5434
5695
|
# @example Response structure
|
5435
5696
|
#
|
5436
|
-
# resp.labeling_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
5697
|
+
# resp.labeling_job_status #=> String, one of "Initializing", "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
5437
5698
|
# resp.label_counters.total_labeled #=> Integer
|
5438
5699
|
# resp.label_counters.human_labeled #=> Integer
|
5439
5700
|
# resp.label_counters.machine_labeled #=> Integer
|
@@ -5516,6 +5777,7 @@ module Aws::SageMaker
|
|
5516
5777
|
# resp.model_name #=> String
|
5517
5778
|
# resp.primary_container.container_hostname #=> String
|
5518
5779
|
# resp.primary_container.image #=> String
|
5780
|
+
# resp.primary_container.image_config.repository_access_mode #=> String, one of "Platform", "Vpc"
|
5519
5781
|
# resp.primary_container.mode #=> String, one of "SingleModel", "MultiModel"
|
5520
5782
|
# resp.primary_container.model_data_url #=> String
|
5521
5783
|
# resp.primary_container.environment #=> Hash
|
@@ -5524,6 +5786,7 @@ module Aws::SageMaker
|
|
5524
5786
|
# resp.containers #=> Array
|
5525
5787
|
# resp.containers[0].container_hostname #=> String
|
5526
5788
|
# resp.containers[0].image #=> String
|
5789
|
+
# resp.containers[0].image_config.repository_access_mode #=> String, one of "Platform", "Vpc"
|
5527
5790
|
# resp.containers[0].mode #=> String, one of "SingleModel", "MultiModel"
|
5528
5791
|
# resp.containers[0].model_data_url #=> String
|
5529
5792
|
# resp.containers[0].environment #=> Hash
|
@@ -6153,6 +6416,7 @@ module Aws::SageMaker
|
|
6153
6416
|
# * {Types::DescribeTransformJobResponse#failure_reason #failure_reason} => String
|
6154
6417
|
# * {Types::DescribeTransformJobResponse#model_name #model_name} => String
|
6155
6418
|
# * {Types::DescribeTransformJobResponse#max_concurrent_transforms #max_concurrent_transforms} => Integer
|
6419
|
+
# * {Types::DescribeTransformJobResponse#model_client_config #model_client_config} => Types::ModelClientConfig
|
6156
6420
|
# * {Types::DescribeTransformJobResponse#max_payload_in_mb #max_payload_in_mb} => Integer
|
6157
6421
|
# * {Types::DescribeTransformJobResponse#batch_strategy #batch_strategy} => String
|
6158
6422
|
# * {Types::DescribeTransformJobResponse#environment #environment} => Hash<String,String>
|
@@ -6181,6 +6445,8 @@ module Aws::SageMaker
|
|
6181
6445
|
# resp.failure_reason #=> String
|
6182
6446
|
# resp.model_name #=> String
|
6183
6447
|
# resp.max_concurrent_transforms #=> Integer
|
6448
|
+
# resp.model_client_config.invocations_timeout_in_seconds #=> Integer
|
6449
|
+
# resp.model_client_config.invocations_max_retries #=> Integer
|
6184
6450
|
# resp.max_payload_in_mb #=> Integer
|
6185
6451
|
# resp.batch_strategy #=> String, one of "MultiRecord", "SingleRecord"
|
6186
6452
|
# resp.environment #=> Hash
|
@@ -6446,6 +6712,17 @@ module Aws::SageMaker
|
|
6446
6712
|
# resp.workforce.last_updated_date #=> Time
|
6447
6713
|
# resp.workforce.source_ip_config.cidrs #=> Array
|
6448
6714
|
# resp.workforce.source_ip_config.cidrs[0] #=> String
|
6715
|
+
# resp.workforce.sub_domain #=> String
|
6716
|
+
# resp.workforce.cognito_config.user_pool #=> String
|
6717
|
+
# resp.workforce.cognito_config.client_id #=> String
|
6718
|
+
# resp.workforce.oidc_config.client_id #=> String
|
6719
|
+
# resp.workforce.oidc_config.issuer #=> String
|
6720
|
+
# resp.workforce.oidc_config.authorization_endpoint #=> String
|
6721
|
+
# resp.workforce.oidc_config.token_endpoint #=> String
|
6722
|
+
# resp.workforce.oidc_config.user_info_endpoint #=> String
|
6723
|
+
# resp.workforce.oidc_config.logout_endpoint #=> String
|
6724
|
+
# resp.workforce.oidc_config.jwks_uri #=> String
|
6725
|
+
# resp.workforce.create_date #=> Time
|
6449
6726
|
#
|
6450
6727
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeWorkforce AWS API Documentation
|
6451
6728
|
#
|
@@ -6480,7 +6757,10 @@ module Aws::SageMaker
|
|
6480
6757
|
# resp.workteam.member_definitions[0].cognito_member_definition.user_pool #=> String
|
6481
6758
|
# resp.workteam.member_definitions[0].cognito_member_definition.user_group #=> String
|
6482
6759
|
# resp.workteam.member_definitions[0].cognito_member_definition.client_id #=> String
|
6760
|
+
# resp.workteam.member_definitions[0].oidc_member_definition.groups #=> Array
|
6761
|
+
# resp.workteam.member_definitions[0].oidc_member_definition.groups[0] #=> String
|
6483
6762
|
# resp.workteam.workteam_arn #=> String
|
6763
|
+
# resp.workteam.workforce_arn #=> String
|
6484
6764
|
# resp.workteam.product_listing_ids #=> Array
|
6485
6765
|
# resp.workteam.product_listing_ids[0] #=> String
|
6486
6766
|
# resp.workteam.description #=> String
|
@@ -6739,8 +7019,8 @@ module Aws::SageMaker
|
|
6739
7019
|
# Request a list of jobs up to a specified limit.
|
6740
7020
|
#
|
6741
7021
|
# @option params [String] :next_token
|
6742
|
-
# If the previous response was truncated, you
|
6743
|
-
#
|
7022
|
+
# If the previous response was truncated, you receive this token. Use it
|
7023
|
+
# in your next request to receive the next set of results.
|
6744
7024
|
#
|
6745
7025
|
# @return [Types::ListAutoMLJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6746
7026
|
#
|
@@ -6807,8 +7087,8 @@ module Aws::SageMaker
|
|
6807
7087
|
# List the job's Candidates up to a specified limit.
|
6808
7088
|
#
|
6809
7089
|
# @option params [String] :next_token
|
6810
|
-
# If the previous response was truncated, you
|
6811
|
-
#
|
7090
|
+
# If the previous response was truncated, you receive this token. Use it
|
7091
|
+
# in your next request to receive the next set of results.
|
6812
7092
|
#
|
6813
7093
|
# @return [Types::ListCandidatesForAutoMLJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6814
7094
|
#
|
@@ -6834,7 +7114,7 @@ module Aws::SageMaker
|
|
6834
7114
|
# resp.candidates #=> Array
|
6835
7115
|
# resp.candidates[0].candidate_name #=> String
|
6836
7116
|
# resp.candidates[0].final_auto_ml_job_objective_metric.type #=> String, one of "Maximize", "Minimize"
|
6837
|
-
# resp.candidates[0].final_auto_ml_job_objective_metric.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro"
|
7117
|
+
# resp.candidates[0].final_auto_ml_job_objective_metric.metric_name #=> String, one of "Accuracy", "MSE", "F1", "F1macro", "AUC"
|
6838
7118
|
# resp.candidates[0].final_auto_ml_job_objective_metric.value #=> Float
|
6839
7119
|
# resp.candidates[0].objective_status #=> String, one of "Succeeded", "Pending", "Failed"
|
6840
7120
|
# resp.candidates[0].candidate_steps #=> Array
|
@@ -7015,7 +7295,10 @@ module Aws::SageMaker
|
|
7015
7295
|
# resp.compilation_job_summaries[0].creation_time #=> Time
|
7016
7296
|
# resp.compilation_job_summaries[0].compilation_start_time #=> Time
|
7017
7297
|
# resp.compilation_job_summaries[0].compilation_end_time #=> Time
|
7018
|
-
# resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22"
|
7298
|
+
# resp.compilation_job_summaries[0].compilation_target_device #=> String, one of "lambda", "ml_m4", "ml_m5", "ml_c4", "ml_c5", "ml_p2", "ml_p3", "ml_g4dn", "ml_inf1", "jetson_tx1", "jetson_tx2", "jetson_nano", "jetson_xavier", "rasp3b", "imx8qm", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603", "sitara_am57x", "amba_cv22", "x86_win32", "x86_win64"
|
7299
|
+
# resp.compilation_job_summaries[0].compilation_target_platform_os #=> String, one of "ANDROID", "LINUX"
|
7300
|
+
# resp.compilation_job_summaries[0].compilation_target_platform_arch #=> String, one of "X86_64", "X86", "ARM64", "ARM_EABI", "ARM_EABIHF"
|
7301
|
+
# resp.compilation_job_summaries[0].compilation_target_platform_accelerator #=> String, one of "INTEL_GRAPHICS", "MALI", "NVIDIA"
|
7019
7302
|
# resp.compilation_job_summaries[0].last_modified_time #=> Time
|
7020
7303
|
# resp.compilation_job_summaries[0].compilation_job_status #=> String, one of "INPROGRESS", "COMPLETED", "FAILED", "STARTING", "STOPPING", "STOPPED"
|
7021
7304
|
# resp.next_token #=> String
|
@@ -7553,7 +7836,7 @@ module Aws::SageMaker
|
|
7553
7836
|
# name_contains: "NameContains",
|
7554
7837
|
# sort_by: "Name", # accepts Name, CreationTime, Status
|
7555
7838
|
# sort_order: "Ascending", # accepts Ascending, Descending
|
7556
|
-
# status_equals: "
|
7839
|
+
# status_equals: "Initializing", # accepts Initializing, InProgress, Completed, Failed, Stopping, Stopped
|
7557
7840
|
# })
|
7558
7841
|
#
|
7559
7842
|
# @example Response structure
|
@@ -7563,7 +7846,7 @@ module Aws::SageMaker
|
|
7563
7846
|
# resp.labeling_job_summary_list[0].labeling_job_arn #=> String
|
7564
7847
|
# resp.labeling_job_summary_list[0].creation_time #=> Time
|
7565
7848
|
# resp.labeling_job_summary_list[0].last_modified_time #=> Time
|
7566
|
-
# resp.labeling_job_summary_list[0].labeling_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
7849
|
+
# resp.labeling_job_summary_list[0].labeling_job_status #=> String, one of "Initializing", "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
7567
7850
|
# resp.labeling_job_summary_list[0].label_counters.total_labeled #=> Integer
|
7568
7851
|
# resp.labeling_job_summary_list[0].label_counters.human_labeled #=> Integer
|
7569
7852
|
# resp.labeling_job_summary_list[0].label_counters.machine_labeled #=> Integer
|
@@ -8822,9 +9105,76 @@ module Aws::SageMaker
|
|
8822
9105
|
req.send_request(options)
|
8823
9106
|
end
|
8824
9107
|
|
8825
|
-
#
|
8826
|
-
#
|
8827
|
-
#
|
9108
|
+
# Use this operation to list all private and vendor workforces in an AWS
|
9109
|
+
# Region. Note that you can only have one private workforce per AWS
|
9110
|
+
# Region.
|
9111
|
+
#
|
9112
|
+
# @option params [String] :sort_by
|
9113
|
+
# Sort workforces using the workforce name or creation date.
|
9114
|
+
#
|
9115
|
+
# @option params [String] :sort_order
|
9116
|
+
# Sort workforces in ascending or descending order.
|
9117
|
+
#
|
9118
|
+
# @option params [String] :name_contains
|
9119
|
+
# A filter you can use to search for workforces using part of the
|
9120
|
+
# workforce name.
|
9121
|
+
#
|
9122
|
+
# @option params [String] :next_token
|
9123
|
+
# A token to resume pagination.
|
9124
|
+
#
|
9125
|
+
# @option params [Integer] :max_results
|
9126
|
+
# The maximum number of workforces returned in the response.
|
9127
|
+
#
|
9128
|
+
# @return [Types::ListWorkforcesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9129
|
+
#
|
9130
|
+
# * {Types::ListWorkforcesResponse#workforces #workforces} => Array<Types::Workforce>
|
9131
|
+
# * {Types::ListWorkforcesResponse#next_token #next_token} => String
|
9132
|
+
#
|
9133
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9134
|
+
#
|
9135
|
+
# @example Request syntax with placeholder values
|
9136
|
+
#
|
9137
|
+
# resp = client.list_workforces({
|
9138
|
+
# sort_by: "Name", # accepts Name, CreateDate
|
9139
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
9140
|
+
# name_contains: "WorkforceName",
|
9141
|
+
# next_token: "NextToken",
|
9142
|
+
# max_results: 1,
|
9143
|
+
# })
|
9144
|
+
#
|
9145
|
+
# @example Response structure
|
9146
|
+
#
|
9147
|
+
# resp.workforces #=> Array
|
9148
|
+
# resp.workforces[0].workforce_name #=> String
|
9149
|
+
# resp.workforces[0].workforce_arn #=> String
|
9150
|
+
# resp.workforces[0].last_updated_date #=> Time
|
9151
|
+
# resp.workforces[0].source_ip_config.cidrs #=> Array
|
9152
|
+
# resp.workforces[0].source_ip_config.cidrs[0] #=> String
|
9153
|
+
# resp.workforces[0].sub_domain #=> String
|
9154
|
+
# resp.workforces[0].cognito_config.user_pool #=> String
|
9155
|
+
# resp.workforces[0].cognito_config.client_id #=> String
|
9156
|
+
# resp.workforces[0].oidc_config.client_id #=> String
|
9157
|
+
# resp.workforces[0].oidc_config.issuer #=> String
|
9158
|
+
# resp.workforces[0].oidc_config.authorization_endpoint #=> String
|
9159
|
+
# resp.workforces[0].oidc_config.token_endpoint #=> String
|
9160
|
+
# resp.workforces[0].oidc_config.user_info_endpoint #=> String
|
9161
|
+
# resp.workforces[0].oidc_config.logout_endpoint #=> String
|
9162
|
+
# resp.workforces[0].oidc_config.jwks_uri #=> String
|
9163
|
+
# resp.workforces[0].create_date #=> Time
|
9164
|
+
# resp.next_token #=> String
|
9165
|
+
#
|
9166
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListWorkforces AWS API Documentation
|
9167
|
+
#
|
9168
|
+
# @overload list_workforces(params = {})
|
9169
|
+
# @param [Hash] params ({})
|
9170
|
+
def list_workforces(params = {}, options = {})
|
9171
|
+
req = build_request(:list_workforces, params)
|
9172
|
+
req.send_request(options)
|
9173
|
+
end
|
9174
|
+
|
9175
|
+
# Gets a list of private work teams that you have defined in a region.
|
9176
|
+
# The list may be empty if no work team satisfies the filter specified
|
9177
|
+
# in the `NameContains` parameter.
|
8828
9178
|
#
|
8829
9179
|
# @option params [String] :sort_by
|
8830
9180
|
# The field to sort results by. The default is `CreationTime`.
|
@@ -8870,7 +9220,10 @@ module Aws::SageMaker
|
|
8870
9220
|
# resp.workteams[0].member_definitions[0].cognito_member_definition.user_pool #=> String
|
8871
9221
|
# resp.workteams[0].member_definitions[0].cognito_member_definition.user_group #=> String
|
8872
9222
|
# resp.workteams[0].member_definitions[0].cognito_member_definition.client_id #=> String
|
9223
|
+
# resp.workteams[0].member_definitions[0].oidc_member_definition.groups #=> Array
|
9224
|
+
# resp.workteams[0].member_definitions[0].oidc_member_definition.groups[0] #=> String
|
8873
9225
|
# resp.workteams[0].workteam_arn #=> String
|
9226
|
+
# resp.workteams[0].workforce_arn #=> String
|
8874
9227
|
# resp.workteams[0].product_listing_ids #=> Array
|
8875
9228
|
# resp.workteams[0].product_listing_ids[0] #=> String
|
8876
9229
|
# resp.workteams[0].description #=> String
|
@@ -8906,6 +9259,9 @@ module Aws::SageMaker
|
|
8906
9259
|
# The `HumanTaskUiArn` of the worker UI that you want to render. Do not
|
8907
9260
|
# provide a `HumanTaskUiArn` if you use the `UiTemplate` parameter.
|
8908
9261
|
#
|
9262
|
+
# See a list of available Human Ui Amazon Resource Names (ARNs) in
|
9263
|
+
# UiConfig.
|
9264
|
+
#
|
8909
9265
|
# @return [Types::RenderUiTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8910
9266
|
#
|
8911
9267
|
# * {Types::RenderUiTemplateResponse#rendered_content #rendered_content} => String
|
@@ -9349,6 +9705,44 @@ module Aws::SageMaker
|
|
9349
9705
|
# resp.results[0].trial_component.source_detail.processing_job.tags #=> Array
|
9350
9706
|
# resp.results[0].trial_component.source_detail.processing_job.tags[0].key #=> String
|
9351
9707
|
# resp.results[0].trial_component.source_detail.processing_job.tags[0].value #=> String
|
9708
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_job_name #=> String
|
9709
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_job_arn #=> String
|
9710
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
|
9711
|
+
# resp.results[0].trial_component.source_detail.transform_job.failure_reason #=> String
|
9712
|
+
# resp.results[0].trial_component.source_detail.transform_job.model_name #=> String
|
9713
|
+
# resp.results[0].trial_component.source_detail.transform_job.max_concurrent_transforms #=> Integer
|
9714
|
+
# resp.results[0].trial_component.source_detail.transform_job.model_client_config.invocations_timeout_in_seconds #=> Integer
|
9715
|
+
# resp.results[0].trial_component.source_detail.transform_job.model_client_config.invocations_max_retries #=> Integer
|
9716
|
+
# resp.results[0].trial_component.source_detail.transform_job.max_payload_in_mb #=> Integer
|
9717
|
+
# resp.results[0].trial_component.source_detail.transform_job.batch_strategy #=> String, one of "MultiRecord", "SingleRecord"
|
9718
|
+
# resp.results[0].trial_component.source_detail.transform_job.environment #=> Hash
|
9719
|
+
# resp.results[0].trial_component.source_detail.transform_job.environment["TransformEnvironmentKey"] #=> String
|
9720
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_input.data_source.s3_data_source.s3_data_type #=> String, one of "ManifestFile", "S3Prefix", "AugmentedManifestFile"
|
9721
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_input.data_source.s3_data_source.s3_uri #=> String
|
9722
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_input.content_type #=> String
|
9723
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_input.compression_type #=> String, one of "None", "Gzip"
|
9724
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_input.split_type #=> String, one of "None", "Line", "RecordIO", "TFRecord"
|
9725
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_output.s3_output_path #=> String
|
9726
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_output.accept #=> String
|
9727
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_output.assemble_with #=> String, one of "None", "Line"
|
9728
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_output.kms_key_id #=> String
|
9729
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_resources.instance_type #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge"
|
9730
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_resources.instance_count #=> Integer
|
9731
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_resources.volume_kms_key_id #=> String
|
9732
|
+
# resp.results[0].trial_component.source_detail.transform_job.creation_time #=> Time
|
9733
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_start_time #=> Time
|
9734
|
+
# resp.results[0].trial_component.source_detail.transform_job.transform_end_time #=> Time
|
9735
|
+
# resp.results[0].trial_component.source_detail.transform_job.labeling_job_arn #=> String
|
9736
|
+
# resp.results[0].trial_component.source_detail.transform_job.auto_ml_job_arn #=> String
|
9737
|
+
# resp.results[0].trial_component.source_detail.transform_job.data_processing.input_filter #=> String
|
9738
|
+
# resp.results[0].trial_component.source_detail.transform_job.data_processing.output_filter #=> String
|
9739
|
+
# resp.results[0].trial_component.source_detail.transform_job.data_processing.join_source #=> String, one of "Input", "None"
|
9740
|
+
# resp.results[0].trial_component.source_detail.transform_job.experiment_config.experiment_name #=> String
|
9741
|
+
# resp.results[0].trial_component.source_detail.transform_job.experiment_config.trial_name #=> String
|
9742
|
+
# resp.results[0].trial_component.source_detail.transform_job.experiment_config.trial_component_display_name #=> String
|
9743
|
+
# resp.results[0].trial_component.source_detail.transform_job.tags #=> Array
|
9744
|
+
# resp.results[0].trial_component.source_detail.transform_job.tags[0].key #=> String
|
9745
|
+
# resp.results[0].trial_component.source_detail.transform_job.tags[0].value #=> String
|
9352
9746
|
# resp.results[0].trial_component.tags #=> Array
|
9353
9747
|
# resp.results[0].trial_component.tags[0].key #=> String
|
9354
9748
|
# resp.results[0].trial_component.tags[0].value #=> String
|
@@ -9723,19 +10117,19 @@ module Aws::SageMaker
|
|
9723
10117
|
# },
|
9724
10118
|
# jupyter_server_app_settings: {
|
9725
10119
|
# default_resource_spec: {
|
9726
|
-
# sage_maker_image_arn: "
|
10120
|
+
# sage_maker_image_arn: "ImageArn",
|
9727
10121
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
9728
10122
|
# },
|
9729
10123
|
# },
|
9730
10124
|
# kernel_gateway_app_settings: {
|
9731
10125
|
# default_resource_spec: {
|
9732
|
-
# sage_maker_image_arn: "
|
10126
|
+
# sage_maker_image_arn: "ImageArn",
|
9733
10127
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
9734
10128
|
# },
|
9735
10129
|
# },
|
9736
10130
|
# tensor_board_app_settings: {
|
9737
10131
|
# default_resource_spec: {
|
9738
|
-
# sage_maker_image_arn: "
|
10132
|
+
# sage_maker_image_arn: "ImageArn",
|
9739
10133
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
9740
10134
|
# },
|
9741
10135
|
# },
|
@@ -10352,19 +10746,19 @@ module Aws::SageMaker
|
|
10352
10746
|
# },
|
10353
10747
|
# jupyter_server_app_settings: {
|
10354
10748
|
# default_resource_spec: {
|
10355
|
-
# sage_maker_image_arn: "
|
10749
|
+
# sage_maker_image_arn: "ImageArn",
|
10356
10750
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
10357
10751
|
# },
|
10358
10752
|
# },
|
10359
10753
|
# kernel_gateway_app_settings: {
|
10360
10754
|
# default_resource_spec: {
|
10361
|
-
# sage_maker_image_arn: "
|
10755
|
+
# sage_maker_image_arn: "ImageArn",
|
10362
10756
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
10363
10757
|
# },
|
10364
10758
|
# },
|
10365
10759
|
# tensor_board_app_settings: {
|
10366
10760
|
# default_resource_spec: {
|
10367
|
-
# sage_maker_image_arn: "
|
10761
|
+
# sage_maker_image_arn: "ImageArn",
|
10368
10762
|
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
10369
10763
|
# },
|
10370
10764
|
# },
|
@@ -10384,38 +10778,54 @@ module Aws::SageMaker
|
|
10384
10778
|
req.send_request(options)
|
10385
10779
|
end
|
10386
10780
|
|
10387
|
-
#
|
10388
|
-
#
|
10389
|
-
#
|
10781
|
+
# Use this operation to update your workforce. You can use this
|
10782
|
+
# operation to require that workers use specific IP addresses to work on
|
10783
|
+
# tasks and to update your OpenID Connect (OIDC) Identity Provider (IdP)
|
10784
|
+
# workforce configuration.
|
10390
10785
|
#
|
10391
|
-
#
|
10392
|
-
#
|
10393
|
-
#
|
10394
|
-
#
|
10395
|
-
#
|
10396
|
-
#
|
10786
|
+
# Use `SourceIpConfig` to restrict worker access to tasks to a specific
|
10787
|
+
# range of IP addresses. You specify allowed IP addresses by creating a
|
10788
|
+
# list of up to ten [CIDRs][1]. By default, a workforce isn't
|
10789
|
+
# restricted to specific IP addresses. If you specify a range of IP
|
10790
|
+
# addresses, workers who attempt to access tasks using any IP address
|
10791
|
+
# outside the specified range are denied and get a `Not Found` error
|
10792
|
+
# message on the worker portal.
|
10397
10793
|
#
|
10398
|
-
#
|
10794
|
+
# Use `OidcConfig` to update the configuration of a workforce created
|
10795
|
+
# using your own OIDC IdP.
|
10796
|
+
#
|
10797
|
+
# You can only update your OIDC IdP configuration when there are no work
|
10798
|
+
# teams associated with your workforce. You can delete work teams using
|
10799
|
+
# the operation.
|
10800
|
+
#
|
10801
|
+
# After restricting access to a range of IP addresses or updating your
|
10802
|
+
# OIDC IdP configuration with this operation, you can view details about
|
10803
|
+
# your update workforce using the operation.
|
10804
|
+
#
|
10805
|
+
# This operation only applies to private workforces.
|
10399
10806
|
#
|
10400
10807
|
#
|
10401
10808
|
#
|
10402
10809
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html
|
10403
10810
|
#
|
10404
10811
|
# @option params [required, String] :workforce_name
|
10405
|
-
# The name of the private workforce
|
10406
|
-
#
|
10407
|
-
# created and cannot be modified.
|
10812
|
+
# The name of the private workforce that you want to update. You can
|
10813
|
+
# find your workforce name by using the operation.
|
10408
10814
|
#
|
10409
10815
|
# @option params [Types::SourceIpConfig] :source_ip_config
|
10410
|
-
# A list of one to
|
10411
|
-
#
|
10816
|
+
# A list of one to ten worker IP address ranges ([CIDRs][1]) that can be
|
10817
|
+
# used to access tasks assigned to this workforce.
|
10412
10818
|
#
|
10413
|
-
# Maximum:
|
10819
|
+
# Maximum: Ten CIDR values
|
10414
10820
|
#
|
10415
10821
|
#
|
10416
10822
|
#
|
10417
10823
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Subnets.html
|
10418
10824
|
#
|
10825
|
+
# @option params [Types::OidcConfig] :oidc_config
|
10826
|
+
# Use this parameter to update your OIDC Identity Provider (IdP)
|
10827
|
+
# configuration for a workforce made using your own IdP.
|
10828
|
+
#
|
10419
10829
|
# @return [Types::UpdateWorkforceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10420
10830
|
#
|
10421
10831
|
# * {Types::UpdateWorkforceResponse#workforce #workforce} => Types::Workforce
|
@@ -10427,6 +10837,16 @@ module Aws::SageMaker
|
|
10427
10837
|
# source_ip_config: {
|
10428
10838
|
# cidrs: ["Cidr"], # required
|
10429
10839
|
# },
|
10840
|
+
# oidc_config: {
|
10841
|
+
# client_id: "ClientId", # required
|
10842
|
+
# client_secret: "ClientSecret", # required
|
10843
|
+
# issuer: "OidcEndpoint", # required
|
10844
|
+
# authorization_endpoint: "OidcEndpoint", # required
|
10845
|
+
# token_endpoint: "OidcEndpoint", # required
|
10846
|
+
# user_info_endpoint: "OidcEndpoint", # required
|
10847
|
+
# logout_endpoint: "OidcEndpoint", # required
|
10848
|
+
# jwks_uri: "OidcEndpoint", # required
|
10849
|
+
# },
|
10430
10850
|
# })
|
10431
10851
|
#
|
10432
10852
|
# @example Response structure
|
@@ -10436,6 +10856,17 @@ module Aws::SageMaker
|
|
10436
10856
|
# resp.workforce.last_updated_date #=> Time
|
10437
10857
|
# resp.workforce.source_ip_config.cidrs #=> Array
|
10438
10858
|
# resp.workforce.source_ip_config.cidrs[0] #=> String
|
10859
|
+
# resp.workforce.sub_domain #=> String
|
10860
|
+
# resp.workforce.cognito_config.user_pool #=> String
|
10861
|
+
# resp.workforce.cognito_config.client_id #=> String
|
10862
|
+
# resp.workforce.oidc_config.client_id #=> String
|
10863
|
+
# resp.workforce.oidc_config.issuer #=> String
|
10864
|
+
# resp.workforce.oidc_config.authorization_endpoint #=> String
|
10865
|
+
# resp.workforce.oidc_config.token_endpoint #=> String
|
10866
|
+
# resp.workforce.oidc_config.user_info_endpoint #=> String
|
10867
|
+
# resp.workforce.oidc_config.logout_endpoint #=> String
|
10868
|
+
# resp.workforce.oidc_config.jwks_uri #=> String
|
10869
|
+
# resp.workforce.create_date #=> Time
|
10439
10870
|
#
|
10440
10871
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateWorkforce AWS API Documentation
|
10441
10872
|
#
|
@@ -10453,8 +10884,35 @@ module Aws::SageMaker
|
|
10453
10884
|
# The name of the work team to update.
|
10454
10885
|
#
|
10455
10886
|
# @option params [Array<Types::MemberDefinition>] :member_definitions
|
10456
|
-
# A list of `MemberDefinition` objects that
|
10457
|
-
# team
|
10887
|
+
# A list of `MemberDefinition` objects that contains objects that
|
10888
|
+
# identify the workers that make up the work team.
|
10889
|
+
#
|
10890
|
+
# Workforces can be created using Amazon Cognito or your own OIDC
|
10891
|
+
# Identity Provider (IdP). For private workforces created using Amazon
|
10892
|
+
# Cognito use `CognitoMemberDefinition`. For workforces created using
|
10893
|
+
# your own OIDC identity provider (IdP) use `OidcMemberDefinition`. You
|
10894
|
+
# should not provide input for both of these parameters in a single
|
10895
|
+
# request.
|
10896
|
+
#
|
10897
|
+
# For workforces created using Amazon Cognito, private work teams
|
10898
|
+
# correspond to Amazon Cognito *user groups* within the user pool used
|
10899
|
+
# to create a workforce. All of the `CognitoMemberDefinition` objects
|
10900
|
+
# that make up the member definition must have the same `ClientId` and
|
10901
|
+
# `UserPool` values. To add a Amazon Cognito user group to an existing
|
10902
|
+
# worker pool, see [Adding groups to a User Pool](). For more
|
10903
|
+
# information about user pools, see [Amazon Cognito User Pools][1].
|
10904
|
+
#
|
10905
|
+
# For workforces created using your own OIDC IdP, specify the user
|
10906
|
+
# groups that you want to include in your private work team in
|
10907
|
+
# `OidcMemberDefinition` by listing those groups in `Groups`. Be aware
|
10908
|
+
# that user groups that are already in the work team must also be listed
|
10909
|
+
# in `Groups` when you make this request to remain on the work team. If
|
10910
|
+
# you do not include these user groups, they will no longer be
|
10911
|
+
# associated with the work team you update.
|
10912
|
+
#
|
10913
|
+
#
|
10914
|
+
#
|
10915
|
+
# [1]: https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools.html
|
10458
10916
|
#
|
10459
10917
|
# @option params [String] :description
|
10460
10918
|
# An updated description for the work team.
|
@@ -10476,7 +10934,10 @@ module Aws::SageMaker
|
|
10476
10934
|
# cognito_member_definition: {
|
10477
10935
|
# user_pool: "CognitoUserPool", # required
|
10478
10936
|
# user_group: "CognitoUserGroup", # required
|
10479
|
-
# client_id: "
|
10937
|
+
# client_id: "ClientId", # required
|
10938
|
+
# },
|
10939
|
+
# oidc_member_definition: {
|
10940
|
+
# groups: ["Group"], # required
|
10480
10941
|
# },
|
10481
10942
|
# },
|
10482
10943
|
# ],
|
@@ -10493,7 +10954,10 @@ module Aws::SageMaker
|
|
10493
10954
|
# resp.workteam.member_definitions[0].cognito_member_definition.user_pool #=> String
|
10494
10955
|
# resp.workteam.member_definitions[0].cognito_member_definition.user_group #=> String
|
10495
10956
|
# resp.workteam.member_definitions[0].cognito_member_definition.client_id #=> String
|
10957
|
+
# resp.workteam.member_definitions[0].oidc_member_definition.groups #=> Array
|
10958
|
+
# resp.workteam.member_definitions[0].oidc_member_definition.groups[0] #=> String
|
10496
10959
|
# resp.workteam.workteam_arn #=> String
|
10960
|
+
# resp.workteam.workforce_arn #=> String
|
10497
10961
|
# resp.workteam.product_listing_ids #=> Array
|
10498
10962
|
# resp.workteam.product_listing_ids[0] #=> String
|
10499
10963
|
# resp.workteam.description #=> String
|
@@ -10524,7 +10988,7 @@ module Aws::SageMaker
|
|
10524
10988
|
params: params,
|
10525
10989
|
config: config)
|
10526
10990
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
10527
|
-
context[:gem_version] = '1.
|
10991
|
+
context[:gem_version] = '1.66.0'
|
10528
10992
|
Seahorse::Client::Request.new(handlers, context)
|
10529
10993
|
end
|
10530
10994
|
|