aws-sdk-sagemaker 1.50.0 → 1.51.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 +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +93 -41
- data/lib/aws-sdk-sagemaker/client_api.rb +14 -4
- data/lib/aws-sdk-sagemaker/types.rb +123 -35
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4030594a3d1b1e06f5f602b838da400347baf98
|
4
|
+
data.tar.gz: b9f36e856be6998962aeb669d6f193553e7a7299
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3682180d44590929f4b4574e6ae2db73156a3754ddbc9ee2ae53d297621154cb9e43c2ba0b86446456739490ae9aaadb05b883ce857b4b1308e73f9efab1d4a4
|
7
|
+
data.tar.gz: b97ba44539864beb9fce3b7b1f161848ce7978c8f1abdaf772e687c89c1985014c02bbd6fe39751c12acd2fff9b01fc528ef48c3fa5e85f15ce8f95bb3d374ce
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
@@ -902,7 +902,7 @@ module Aws::SageMaker
|
|
902
902
|
# },
|
903
903
|
# output_config: { # required
|
904
904
|
# s3_output_location: "S3Uri", # required
|
905
|
-
# target_device: "lambda", # required, accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, rasp3b, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603
|
905
|
+
# target_device: "lambda", # required, accepts 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, amba_cv22
|
906
906
|
# },
|
907
907
|
# stopping_condition: { # required
|
908
908
|
# max_runtime_in_seconds: 1,
|
@@ -1024,13 +1024,16 @@ module Aws::SageMaker
|
|
1024
1024
|
# deploy models. You create the endpoint configuration with the
|
1025
1025
|
# [CreateEndpointConfig][1] API.
|
1026
1026
|
#
|
1027
|
-
#
|
1028
|
-
# services.
|
1027
|
+
# Use this API to deploy models using Amazon SageMaker hosting services.
|
1029
1028
|
#
|
1030
|
-
#
|
1031
|
-
#
|
1032
|
-
#
|
1033
|
-
#
|
1029
|
+
# For an example that calls this method when deploying a model to Amazon
|
1030
|
+
# SageMaker hosting services, see [Deploy the Model to Amazon SageMaker
|
1031
|
+
# Hosting Services (AWS SDK for Python (Boto 3)).][2]
|
1032
|
+
#
|
1033
|
+
# <note markdown="1"> You must not delete an `EndpointConfig` that is in use by an endpoint
|
1034
|
+
# that is live or while the `UpdateEndpoint` or `CreateEndpoint`
|
1035
|
+
# operations are being performed on the endpoint. To update an endpoint,
|
1036
|
+
# you must create a new `EndpointConfig`.
|
1034
1037
|
#
|
1035
1038
|
# </note>
|
1036
1039
|
#
|
@@ -1045,10 +1048,7 @@ module Aws::SageMaker
|
|
1045
1048
|
# status to `Creating`. After it creates the endpoint, it sets the
|
1046
1049
|
# status to `InService`. Amazon SageMaker can then process incoming
|
1047
1050
|
# requests for inferences. To check the status of an endpoint, use the
|
1048
|
-
# [DescribeEndpoint][
|
1049
|
-
#
|
1050
|
-
# For an example, see [Exercise 1: Using the K-Means Algorithm Provided
|
1051
|
-
# by Amazon SageMaker][3].
|
1051
|
+
# [DescribeEndpoint][3] API.
|
1052
1052
|
#
|
1053
1053
|
# If any of the models hosted at this endpoint get model data from an
|
1054
1054
|
# Amazon S3 location, Amazon SageMaker uses AWS Security Token Service
|
@@ -1062,8 +1062,8 @@ module Aws::SageMaker
|
|
1062
1062
|
#
|
1063
1063
|
#
|
1064
1064
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateEndpointConfig.html
|
1065
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
1066
|
-
# [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
1065
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
1066
|
+
# [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_DescribeEndpoint.html
|
1067
1067
|
# [4]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
|
1068
1068
|
#
|
1069
1069
|
# @option params [required, String] :endpoint_name
|
@@ -1123,15 +1123,15 @@ module Aws::SageMaker
|
|
1123
1123
|
# resources that you want Amazon SageMaker to provision. Then you call
|
1124
1124
|
# the [CreateEndpoint][1] API.
|
1125
1125
|
#
|
1126
|
-
# <note markdown="1"> Use this API
|
1127
|
-
#
|
1126
|
+
# <note markdown="1"> Use this API if you want to use Amazon SageMaker hosting services to
|
1127
|
+
# deploy models into production.
|
1128
1128
|
#
|
1129
1129
|
# </note>
|
1130
1130
|
#
|
1131
|
-
# In the request, you define
|
1132
|
-
#
|
1133
|
-
#
|
1134
|
-
#
|
1131
|
+
# In the request, you define a `ProductionVariant`, for each model that
|
1132
|
+
# you want to deploy. Each `ProductionVariant` parameter also describes
|
1133
|
+
# the resources that you want Amazon SageMaker to provision. This
|
1134
|
+
# includes the number and type of ML compute instances to deploy.
|
1135
1135
|
#
|
1136
1136
|
# If you are hosting multiple models, you also assign a `VariantWeight`
|
1137
1137
|
# to specify how much traffic you want to allocate to each model. For
|
@@ -1140,9 +1140,14 @@ module Aws::SageMaker
|
|
1140
1140
|
# SageMaker distributes two-thirds of the traffic to Model A, and
|
1141
1141
|
# one-third to model B.
|
1142
1142
|
#
|
1143
|
+
# For an example that calls this method when deploying a model to Amazon
|
1144
|
+
# SageMaker hosting services, see [Deploy the Model to Amazon SageMaker
|
1145
|
+
# Hosting Services (AWS SDK for Python (Boto 3)).][2]
|
1146
|
+
#
|
1143
1147
|
#
|
1144
1148
|
#
|
1145
1149
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateEndpoint.html
|
1150
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
1146
1151
|
#
|
1147
1152
|
# @option params [required, String] :endpoint_config_name
|
1148
1153
|
# The name of the endpoint configuration. You specify this name in a
|
@@ -2014,8 +2019,8 @@ module Aws::SageMaker
|
|
2014
2019
|
|
2015
2020
|
# Creates a model in Amazon SageMaker. In the request, you name the
|
2016
2021
|
# model and describe a primary container. For the primary container, you
|
2017
|
-
# specify the
|
2018
|
-
# prior training), and custom environment map that the inference code
|
2022
|
+
# specify the Docker image that contains inference code, artifacts (from
|
2023
|
+
# prior training), and a custom environment map that the inference code
|
2019
2024
|
# uses when you deploy the model for predictions.
|
2020
2025
|
#
|
2021
2026
|
# Use this API to create a model if you want to use Amazon SageMaker
|
@@ -2026,6 +2031,10 @@ module Aws::SageMaker
|
|
2026
2031
|
# `CreateEndpoint` API. Amazon SageMaker then deploys all of the
|
2027
2032
|
# containers that you defined for the model in the hosting environment.
|
2028
2033
|
#
|
2034
|
+
# For an example that calls this method when deploying a model to Amazon
|
2035
|
+
# SageMaker hosting services, see [Deploy the Model to Amazon SageMaker
|
2036
|
+
# Hosting Services (AWS SDK for Python (Boto 3)).][1]
|
2037
|
+
#
|
2029
2038
|
# To run a batch transform using your model, you start a job with the
|
2030
2039
|
# `CreateTransformJob` API. Amazon SageMaker uses your model and your
|
2031
2040
|
# dataset to get inferences which are then saved to a specified S3
|
@@ -2041,6 +2050,10 @@ module Aws::SageMaker
|
|
2041
2050
|
# needs. For example, if the inference code access any other AWS
|
2042
2051
|
# resources, you grant necessary permissions via this role.
|
2043
2052
|
#
|
2053
|
+
#
|
2054
|
+
#
|
2055
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ex1-deploy-model.html#ex1-deploy-model-boto
|
2056
|
+
#
|
2044
2057
|
# @option params [required, String] :model_name
|
2045
2058
|
# The name of the new model.
|
2046
2059
|
#
|
@@ -2883,9 +2896,9 @@ module Aws::SageMaker
|
|
2883
2896
|
# },
|
2884
2897
|
# ],
|
2885
2898
|
# experiment_config: {
|
2886
|
-
# experiment_name: "
|
2887
|
-
# trial_name: "
|
2888
|
-
# trial_component_display_name: "
|
2899
|
+
# experiment_name: "ExperimentEntityName",
|
2900
|
+
# trial_name: "ExperimentEntityName",
|
2901
|
+
# trial_component_display_name: "ExperimentEntityName",
|
2889
2902
|
# },
|
2890
2903
|
# })
|
2891
2904
|
#
|
@@ -3235,9 +3248,9 @@ module Aws::SageMaker
|
|
3235
3248
|
# s3_output_path: "S3Uri", # required
|
3236
3249
|
# },
|
3237
3250
|
# experiment_config: {
|
3238
|
-
# experiment_name: "
|
3239
|
-
# trial_name: "
|
3240
|
-
# trial_component_display_name: "
|
3251
|
+
# experiment_name: "ExperimentEntityName",
|
3252
|
+
# trial_name: "ExperimentEntityName",
|
3253
|
+
# trial_component_display_name: "ExperimentEntityName",
|
3241
3254
|
# },
|
3242
3255
|
# })
|
3243
3256
|
#
|
@@ -3430,9 +3443,9 @@ module Aws::SageMaker
|
|
3430
3443
|
# },
|
3431
3444
|
# ],
|
3432
3445
|
# experiment_config: {
|
3433
|
-
# experiment_name: "
|
3434
|
-
# trial_name: "
|
3435
|
-
# trial_component_display_name: "
|
3446
|
+
# experiment_name: "ExperimentEntityName",
|
3447
|
+
# trial_name: "ExperimentEntityName",
|
3448
|
+
# trial_component_display_name: "ExperimentEntityName",
|
3436
3449
|
# },
|
3437
3450
|
# })
|
3438
3451
|
#
|
@@ -4694,7 +4707,7 @@ module Aws::SageMaker
|
|
4694
4707
|
# resp.input_config.data_input_config #=> String
|
4695
4708
|
# resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST"
|
4696
4709
|
# resp.output_config.s3_output_location #=> String
|
4697
|
-
# 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", "rasp3b", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603"
|
4710
|
+
# 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", "amba_cv22"
|
4698
4711
|
#
|
4699
4712
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCompilationJob AWS API Documentation
|
4700
4713
|
#
|
@@ -6255,8 +6268,8 @@ module Aws::SageMaker
|
|
6255
6268
|
#
|
6256
6269
|
# @option params [required, String] :workforce_name
|
6257
6270
|
# The name of the private workforce whose access you want to restrict.
|
6258
|
-
# `WorkforceName` is automatically set to `
|
6259
|
-
#
|
6271
|
+
# `WorkforceName` is automatically set to `default` when a workforce is
|
6272
|
+
# created and cannot be modified.
|
6260
6273
|
#
|
6261
6274
|
# @return [Types::DescribeWorkforceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6262
6275
|
#
|
@@ -6333,6 +6346,11 @@ module Aws::SageMaker
|
|
6333
6346
|
# associated with. To associate a trial component with a trial, call the
|
6334
6347
|
# AssociateTrialComponent API.
|
6335
6348
|
#
|
6349
|
+
# To get a list of the trials a component is associated with, use the
|
6350
|
+
# Search API. Specify `ExperimentTrialComponent` for the `Resource`
|
6351
|
+
# parameter. The list appears in the response under
|
6352
|
+
# `Results.TrialComponent.Parents`.
|
6353
|
+
#
|
6336
6354
|
# @option params [required, String] :trial_component_name
|
6337
6355
|
# The name of the component to disassociate from the trial.
|
6338
6356
|
#
|
@@ -6827,7 +6845,7 @@ module Aws::SageMaker
|
|
6827
6845
|
# resp.compilation_job_summaries[0].creation_time #=> Time
|
6828
6846
|
# resp.compilation_job_summaries[0].compilation_start_time #=> Time
|
6829
6847
|
# resp.compilation_job_summaries[0].compilation_end_time #=> Time
|
6830
|
-
# 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", "rasp3b", "deeplens", "rk3399", "rk3288", "aisage", "sbe_c", "qcs605", "qcs603"
|
6848
|
+
# 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", "amba_cv22"
|
6831
6849
|
# resp.compilation_job_summaries[0].last_modified_time #=> Time
|
6832
6850
|
# resp.compilation_job_summaries[0].compilation_job_status #=> String, one of "INPROGRESS", "COMPLETED", "FAILED", "STARTING", "STOPPING", "STOPPED"
|
6833
6851
|
# resp.next_token #=> String
|
@@ -8459,14 +8477,20 @@ module Aws::SageMaker
|
|
8459
8477
|
end
|
8460
8478
|
|
8461
8479
|
# Lists the trials in your account. Specify an experiment name to limit
|
8462
|
-
# the list to the trials that are part of that experiment.
|
8463
|
-
#
|
8464
|
-
#
|
8480
|
+
# the list to the trials that are part of that experiment. Specify a
|
8481
|
+
# trial component name to limit the list to the trials that associated
|
8482
|
+
# with that trial component. The list can be filtered to show only
|
8483
|
+
# trials that were created in a specific time range. The list can be
|
8484
|
+
# sorted by trial name or creation time.
|
8465
8485
|
#
|
8466
8486
|
# @option params [String] :experiment_name
|
8467
8487
|
# A filter that returns only trials that are part of the specified
|
8468
8488
|
# experiment.
|
8469
8489
|
#
|
8490
|
+
# @option params [String] :trial_component_name
|
8491
|
+
# A filter that returns only trials that are associated with the
|
8492
|
+
# specified trial component.
|
8493
|
+
#
|
8470
8494
|
# @option params [Time,DateTime,Date,Integer,String] :created_after
|
8471
8495
|
# A filter that returns only trials created after the specified time.
|
8472
8496
|
#
|
@@ -8497,6 +8521,7 @@ module Aws::SageMaker
|
|
8497
8521
|
#
|
8498
8522
|
# resp = client.list_trials({
|
8499
8523
|
# experiment_name: "ExperimentEntityName",
|
8524
|
+
# trial_component_name: "ExperimentEntityName",
|
8500
8525
|
# created_after: Time.now,
|
8501
8526
|
# created_before: Time.now,
|
8502
8527
|
# sort_by: "Name", # accepts Name, CreationTime
|
@@ -9484,6 +9509,27 @@ module Aws::SageMaker
|
|
9484
9509
|
# @option params [required, String] :endpoint_config_name
|
9485
9510
|
# The name of the new endpoint configuration.
|
9486
9511
|
#
|
9512
|
+
# @option params [Boolean] :retain_all_variant_properties
|
9513
|
+
# When updating endpoint resources, enables or disables the retention of
|
9514
|
+
# variant properties, such as the instance count or the variant weight.
|
9515
|
+
# To retain the variant properties of an endpoint when updating it, set
|
9516
|
+
# `RetainAllVariantProperties` to `true`. To use the variant properties
|
9517
|
+
# specified in a new `EndpointConfig` call when updating an endpoint,
|
9518
|
+
# set `RetainAllVariantProperties` to `false`.
|
9519
|
+
#
|
9520
|
+
# @option params [Array<Types::VariantProperty>] :exclude_retained_variant_properties
|
9521
|
+
# When you are updating endpoint resources with
|
9522
|
+
# [RetainAllVariantProperties][1], whose value is set to `true`,
|
9523
|
+
# `ExcludeRetainedVariantProperties` specifies the list of type
|
9524
|
+
# [VariantProperty][2] to override with the values provided by
|
9525
|
+
# `EndpointConfig`. If you don't specify a value for
|
9526
|
+
# `ExcludeAllVariantProperties`, no variant properties are overridden.
|
9527
|
+
#
|
9528
|
+
#
|
9529
|
+
#
|
9530
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_UpdateEndpoint.html#SageMaker-UpdateEndpoint-request-RetainAllVariantProperties
|
9531
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_VariantProperty.html
|
9532
|
+
#
|
9487
9533
|
# @return [Types::UpdateEndpointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9488
9534
|
#
|
9489
9535
|
# * {Types::UpdateEndpointOutput#endpoint_arn #endpoint_arn} => String
|
@@ -9493,6 +9539,12 @@ module Aws::SageMaker
|
|
9493
9539
|
# resp = client.update_endpoint({
|
9494
9540
|
# endpoint_name: "EndpointName", # required
|
9495
9541
|
# endpoint_config_name: "EndpointConfigName", # required
|
9542
|
+
# retain_all_variant_properties: false,
|
9543
|
+
# exclude_retained_variant_properties: [
|
9544
|
+
# {
|
9545
|
+
# variant_property_type: "DesiredInstanceCount", # required, accepts DesiredInstanceCount, DesiredWeight, DataCaptureConfig
|
9546
|
+
# },
|
9547
|
+
# ],
|
9496
9548
|
# })
|
9497
9549
|
#
|
9498
9550
|
# @example Response structure
|
@@ -10085,14 +10137,14 @@ module Aws::SageMaker
|
|
10085
10137
|
#
|
10086
10138
|
# @option params [required, String] :workforce_name
|
10087
10139
|
# The name of the private workforce whose access you want to restrict.
|
10088
|
-
# `WorkforceName` is automatically set to `
|
10089
|
-
#
|
10140
|
+
# `WorkforceName` is automatically set to `default` when a workforce is
|
10141
|
+
# created and cannot be modified.
|
10090
10142
|
#
|
10091
10143
|
# @option params [Types::SourceIpConfig] :source_ip_config
|
10092
10144
|
# A list of one to four worker IP address ranges ([CIDRs][1]) that can
|
10093
10145
|
# be used to access tasks assigned to this workforce.
|
10094
10146
|
#
|
10095
|
-
# Maximum:
|
10147
|
+
# Maximum: Four CIDR values
|
10096
10148
|
#
|
10097
10149
|
#
|
10098
10150
|
#
|
@@ -10206,7 +10258,7 @@ module Aws::SageMaker
|
|
10206
10258
|
params: params,
|
10207
10259
|
config: config)
|
10208
10260
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
10209
|
-
context[:gem_version] = '1.
|
10261
|
+
context[:gem_version] = '1.51.0'
|
10210
10262
|
Seahorse::Client::Request.new(handlers, context)
|
10211
10263
|
end
|
10212
10264
|
|
@@ -342,7 +342,6 @@ module Aws::SageMaker
|
|
342
342
|
Experiment = Shapes::StructureShape.new(name: 'Experiment')
|
343
343
|
ExperimentArn = Shapes::StringShape.new(name: 'ExperimentArn')
|
344
344
|
ExperimentConfig = Shapes::StructureShape.new(name: 'ExperimentConfig')
|
345
|
-
ExperimentConfigName = Shapes::StringShape.new(name: 'ExperimentConfigName')
|
346
345
|
ExperimentDescription = Shapes::StringShape.new(name: 'ExperimentDescription')
|
347
346
|
ExperimentEntityName = Shapes::StringShape.new(name: 'ExperimentEntityName')
|
348
347
|
ExperimentSource = Shapes::StructureShape.new(name: 'ExperimentSource')
|
@@ -905,6 +904,9 @@ module Aws::SageMaker
|
|
905
904
|
UserProfileStatus = Shapes::StringShape.new(name: 'UserProfileStatus')
|
906
905
|
UserSettings = Shapes::StructureShape.new(name: 'UserSettings')
|
907
906
|
VariantName = Shapes::StringShape.new(name: 'VariantName')
|
907
|
+
VariantProperty = Shapes::StructureShape.new(name: 'VariantProperty')
|
908
|
+
VariantPropertyList = Shapes::ListShape.new(name: 'VariantPropertyList')
|
909
|
+
VariantPropertyType = Shapes::StringShape.new(name: 'VariantPropertyType')
|
908
910
|
VariantWeight = Shapes::FloatShape.new(name: 'VariantWeight')
|
909
911
|
VolumeSizeInGB = Shapes::IntegerShape.new(name: 'VolumeSizeInGB')
|
910
912
|
VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
|
@@ -2141,9 +2143,9 @@ module Aws::SageMaker
|
|
2141
2143
|
Experiment.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
2142
2144
|
Experiment.struct_class = Types::Experiment
|
2143
2145
|
|
2144
|
-
ExperimentConfig.add_member(:experiment_name, Shapes::ShapeRef.new(shape:
|
2145
|
-
ExperimentConfig.add_member(:trial_name, Shapes::ShapeRef.new(shape:
|
2146
|
-
ExperimentConfig.add_member(:trial_component_display_name, Shapes::ShapeRef.new(shape:
|
2146
|
+
ExperimentConfig.add_member(:experiment_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, location_name: "ExperimentName"))
|
2147
|
+
ExperimentConfig.add_member(:trial_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, location_name: "TrialName"))
|
2148
|
+
ExperimentConfig.add_member(:trial_component_display_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, location_name: "TrialComponentDisplayName"))
|
2147
2149
|
ExperimentConfig.struct_class = Types::ExperimentConfig
|
2148
2150
|
|
2149
2151
|
ExperimentSource.add_member(:source_arn, Shapes::ShapeRef.new(shape: ExperimentSourceArn, required: true, location_name: "SourceArn"))
|
@@ -2848,6 +2850,7 @@ module Aws::SageMaker
|
|
2848
2850
|
ListTrialComponentsResponse.struct_class = Types::ListTrialComponentsResponse
|
2849
2851
|
|
2850
2852
|
ListTrialsRequest.add_member(:experiment_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, location_name: "ExperimentName"))
|
2853
|
+
ListTrialsRequest.add_member(:trial_component_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, location_name: "TrialComponentName"))
|
2851
2854
|
ListTrialsRequest.add_member(:created_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAfter"))
|
2852
2855
|
ListTrialsRequest.add_member(:created_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedBefore"))
|
2853
2856
|
ListTrialsRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: SortTrialsBy, location_name: "SortBy"))
|
@@ -3663,6 +3666,8 @@ module Aws::SageMaker
|
|
3663
3666
|
|
3664
3667
|
UpdateEndpointInput.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, required: true, location_name: "EndpointName"))
|
3665
3668
|
UpdateEndpointInput.add_member(:endpoint_config_name, Shapes::ShapeRef.new(shape: EndpointConfigName, required: true, location_name: "EndpointConfigName"))
|
3669
|
+
UpdateEndpointInput.add_member(:retain_all_variant_properties, Shapes::ShapeRef.new(shape: Boolean, location_name: "RetainAllVariantProperties"))
|
3670
|
+
UpdateEndpointInput.add_member(:exclude_retained_variant_properties, Shapes::ShapeRef.new(shape: VariantPropertyList, location_name: "ExcludeRetainedVariantProperties"))
|
3666
3671
|
UpdateEndpointInput.struct_class = Types::UpdateEndpointInput
|
3667
3672
|
|
3668
3673
|
UpdateEndpointOutput.add_member(:endpoint_arn, Shapes::ShapeRef.new(shape: EndpointArn, required: true, location_name: "EndpointArn"))
|
@@ -3783,6 +3788,11 @@ module Aws::SageMaker
|
|
3783
3788
|
UserSettings.add_member(:tensor_board_app_settings, Shapes::ShapeRef.new(shape: TensorBoardAppSettings, location_name: "TensorBoardAppSettings"))
|
3784
3789
|
UserSettings.struct_class = Types::UserSettings
|
3785
3790
|
|
3791
|
+
VariantProperty.add_member(:variant_property_type, Shapes::ShapeRef.new(shape: VariantPropertyType, required: true, location_name: "VariantPropertyType"))
|
3792
|
+
VariantProperty.struct_class = Types::VariantProperty
|
3793
|
+
|
3794
|
+
VariantPropertyList.member = Shapes::ShapeRef.new(shape: VariantProperty)
|
3795
|
+
|
3786
3796
|
VpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: VpcSecurityGroupIds, required: true, location_name: "SecurityGroupIds"))
|
3787
3797
|
VpcConfig.add_member(:subnets, Shapes::ShapeRef.new(shape: Subnets, required: true, location_name: "Subnets"))
|
3788
3798
|
VpcConfig.struct_class = Types::VpcConfig
|
@@ -652,7 +652,7 @@ module Aws::SageMaker
|
|
652
652
|
#
|
653
653
|
# * *Semantic segmentation verification* - Uses a variant of the
|
654
654
|
# Expectation Maximization approach to estimate the true class of
|
655
|
-
# verification
|
655
|
+
# verification judgment for semantic segmentation labels based on
|
656
656
|
# annotations from individual workers.
|
657
657
|
#
|
658
658
|
# `arn:aws:lambda:us-east-1:432418664414:function:ACS-VerificationSemanticSegmentation`
|
@@ -969,7 +969,8 @@ module Aws::SageMaker
|
|
969
969
|
# @return [String]
|
970
970
|
#
|
971
971
|
# @!attribute [rw] target_attribute_name
|
972
|
-
# The name of the target variable in supervised learning, a.k.a.
|
972
|
+
# The name of the target variable in supervised learning, a.k.a.
|
973
|
+
# 'y'.
|
973
974
|
# @return [String]
|
974
975
|
#
|
975
976
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLChannel AWS API Documentation
|
@@ -2414,7 +2415,7 @@ module Aws::SageMaker
|
|
2414
2415
|
# },
|
2415
2416
|
# output_config: { # required
|
2416
2417
|
# s3_output_location: "S3Uri", # required
|
2417
|
-
# target_device: "lambda", # required, accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, rasp3b, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603
|
2418
|
+
# target_device: "lambda", # required, accepts 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, amba_cv22
|
2418
2419
|
# },
|
2419
2420
|
# stopping_condition: { # required
|
2420
2421
|
# max_runtime_in_seconds: 1,
|
@@ -4288,9 +4289,9 @@ module Aws::SageMaker
|
|
4288
4289
|
# },
|
4289
4290
|
# ],
|
4290
4291
|
# experiment_config: {
|
4291
|
-
# experiment_name: "
|
4292
|
-
# trial_name: "
|
4293
|
-
# trial_component_display_name: "
|
4292
|
+
# experiment_name: "ExperimentEntityName",
|
4293
|
+
# trial_name: "ExperimentEntityName",
|
4294
|
+
# trial_component_display_name: "ExperimentEntityName",
|
4294
4295
|
# },
|
4295
4296
|
# }
|
4296
4297
|
#
|
@@ -4490,9 +4491,9 @@ module Aws::SageMaker
|
|
4490
4491
|
# s3_output_path: "S3Uri", # required
|
4491
4492
|
# },
|
4492
4493
|
# experiment_config: {
|
4493
|
-
# experiment_name: "
|
4494
|
-
# trial_name: "
|
4495
|
-
# trial_component_display_name: "
|
4494
|
+
# experiment_name: "ExperimentEntityName",
|
4495
|
+
# trial_name: "ExperimentEntityName",
|
4496
|
+
# trial_component_display_name: "ExperimentEntityName",
|
4496
4497
|
# },
|
4497
4498
|
# }
|
4498
4499
|
#
|
@@ -4762,9 +4763,9 @@ module Aws::SageMaker
|
|
4762
4763
|
# },
|
4763
4764
|
# ],
|
4764
4765
|
# experiment_config: {
|
4765
|
-
# experiment_name: "
|
4766
|
-
# trial_name: "
|
4767
|
-
# trial_component_display_name: "
|
4766
|
+
# experiment_name: "ExperimentEntityName",
|
4767
|
+
# trial_name: "ExperimentEntityName",
|
4768
|
+
# trial_component_display_name: "ExperimentEntityName",
|
4768
4769
|
# },
|
4769
4770
|
# }
|
4770
4771
|
#
|
@@ -6323,8 +6324,9 @@ module Aws::SageMaker
|
|
6323
6324
|
#
|
6324
6325
|
# @!attribute [rw] resolved_attributes
|
6325
6326
|
# This contains ProblemType, AutoMLJobObjective and
|
6326
|
-
# CompletionCriteria. They
|
6327
|
-
# you. If you do provide them, then they
|
6327
|
+
# CompletionCriteria. They're auto-inferred values, if not provided
|
6328
|
+
# by you. If you do provide them, then they'll be the same as
|
6329
|
+
# provided.
|
6328
6330
|
# @return [Types::ResolvedAttributes]
|
6329
6331
|
#
|
6330
6332
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAutoMLJobResponse AWS API Documentation
|
@@ -7148,7 +7150,7 @@ module Aws::SageMaker
|
|
7148
7150
|
# * Semantic segmentation labeling jobs using automated labeling: 20
|
7149
7151
|
# labels
|
7150
7152
|
#
|
7151
|
-
# * Box bounding labeling jobs (all): 10
|
7153
|
+
# * Box bounding labeling jobs (all): 10 labels
|
7152
7154
|
#
|
7153
7155
|
# The file is a JSON structure in the following format:
|
7154
7156
|
#
|
@@ -8615,7 +8617,7 @@ module Aws::SageMaker
|
|
8615
8617
|
#
|
8616
8618
|
# @!attribute [rw] workforce_name
|
8617
8619
|
# The name of the private workforce whose access you want to restrict.
|
8618
|
-
# `WorkforceName` is automatically set to `
|
8620
|
+
# `WorkforceName` is automatically set to `default` when a workforce
|
8619
8621
|
# is created and cannot be modified.
|
8620
8622
|
# @return [String]
|
8621
8623
|
#
|
@@ -8629,7 +8631,7 @@ module Aws::SageMaker
|
|
8629
8631
|
# @!attribute [rw] workforce
|
8630
8632
|
# A single private workforce, which is automatically created when you
|
8631
8633
|
# create your first private work team. You can create one private work
|
8632
|
-
# force in each AWS Region. By default, any workforce
|
8634
|
+
# force in each AWS Region. By default, any workforce-related API
|
8633
8635
|
# operation used in a specific region will apply to the workforce
|
8634
8636
|
# created in that region. To learn how to create a private workforce,
|
8635
8637
|
# see [Create a Private Workforce][1].
|
@@ -8994,9 +8996,9 @@ module Aws::SageMaker
|
|
8994
8996
|
# data as a hash:
|
8995
8997
|
#
|
8996
8998
|
# {
|
8997
|
-
# experiment_name: "
|
8998
|
-
# trial_name: "
|
8999
|
-
# trial_component_display_name: "
|
8999
|
+
# experiment_name: "ExperimentEntityName",
|
9000
|
+
# trial_name: "ExperimentEntityName",
|
9001
|
+
# trial_component_display_name: "ExperimentEntityName",
|
9000
9002
|
# }
|
9001
9003
|
#
|
9002
9004
|
# @!attribute [rw] experiment_name
|
@@ -9561,7 +9563,10 @@ module Aws::SageMaker
|
|
9561
9563
|
# @return [String]
|
9562
9564
|
#
|
9563
9565
|
# @!attribute [rw] task_count
|
9564
|
-
# The number of
|
9566
|
+
# The number of distinct workers who will perform the same task on
|
9567
|
+
# each object. For example, if `TaskCount` is set to `3` for an image
|
9568
|
+
# classification labeling job, three workers will classify each input
|
9569
|
+
# image. Increasing `TaskCount` can improve label accuracy.
|
9565
9570
|
# @return [Integer]
|
9566
9571
|
#
|
9567
9572
|
# @!attribute [rw] task_availability_lifetime_in_seconds
|
@@ -14137,6 +14142,7 @@ module Aws::SageMaker
|
|
14137
14142
|
#
|
14138
14143
|
# {
|
14139
14144
|
# experiment_name: "ExperimentEntityName",
|
14145
|
+
# trial_component_name: "ExperimentEntityName",
|
14140
14146
|
# created_after: Time.now,
|
14141
14147
|
# created_before: Time.now,
|
14142
14148
|
# sort_by: "Name", # accepts Name, CreationTime
|
@@ -14150,6 +14156,11 @@ module Aws::SageMaker
|
|
14150
14156
|
# experiment.
|
14151
14157
|
# @return [String]
|
14152
14158
|
#
|
14159
|
+
# @!attribute [rw] trial_component_name
|
14160
|
+
# A filter that returns only trials that are associated with the
|
14161
|
+
# specified trial component.
|
14162
|
+
# @return [String]
|
14163
|
+
#
|
14153
14164
|
# @!attribute [rw] created_after
|
14154
14165
|
# A filter that returns only trials created after the specified time.
|
14155
14166
|
# @return [Time]
|
@@ -14181,6 +14192,7 @@ module Aws::SageMaker
|
|
14181
14192
|
#
|
14182
14193
|
class ListTrialsRequest < Struct.new(
|
14183
14194
|
:experiment_name,
|
14195
|
+
:trial_component_name,
|
14184
14196
|
:created_after,
|
14185
14197
|
:created_before,
|
14186
14198
|
:sort_by,
|
@@ -15678,7 +15690,7 @@ module Aws::SageMaker
|
|
15678
15690
|
#
|
15679
15691
|
# {
|
15680
15692
|
# s3_output_location: "S3Uri", # required
|
15681
|
-
# target_device: "lambda", # required, accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, rasp3b, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603
|
15693
|
+
# target_device: "lambda", # required, accepts 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, amba_cv22
|
15682
15694
|
# }
|
15683
15695
|
#
|
15684
15696
|
# @!attribute [rw] s3_output_location
|
@@ -17647,7 +17659,7 @@ module Aws::SageMaker
|
|
17647
17659
|
# A list of one to four [Classless Inter-Domain Routing][1] (CIDR)
|
17648
17660
|
# values.
|
17649
17661
|
#
|
17650
|
-
# Maximum:
|
17662
|
+
# Maximum: Four CIDR values
|
17651
17663
|
#
|
17652
17664
|
# <note markdown="1"> The following Length Constraints apply to individual CIDR values in
|
17653
17665
|
# the CIDR value list.
|
@@ -19864,6 +19876,12 @@ module Aws::SageMaker
|
|
19864
19876
|
# {
|
19865
19877
|
# endpoint_name: "EndpointName", # required
|
19866
19878
|
# endpoint_config_name: "EndpointConfigName", # required
|
19879
|
+
# retain_all_variant_properties: false,
|
19880
|
+
# exclude_retained_variant_properties: [
|
19881
|
+
# {
|
19882
|
+
# variant_property_type: "DesiredInstanceCount", # required, accepts DesiredInstanceCount, DesiredWeight, DataCaptureConfig
|
19883
|
+
# },
|
19884
|
+
# ],
|
19867
19885
|
# }
|
19868
19886
|
#
|
19869
19887
|
# @!attribute [rw] endpoint_name
|
@@ -19874,11 +19892,36 @@ module Aws::SageMaker
|
|
19874
19892
|
# The name of the new endpoint configuration.
|
19875
19893
|
# @return [String]
|
19876
19894
|
#
|
19895
|
+
# @!attribute [rw] retain_all_variant_properties
|
19896
|
+
# When updating endpoint resources, enables or disables the retention
|
19897
|
+
# of variant properties, such as the instance count or the variant
|
19898
|
+
# weight. To retain the variant properties of an endpoint when
|
19899
|
+
# updating it, set `RetainAllVariantProperties` to `true`. To use the
|
19900
|
+
# variant properties specified in a new `EndpointConfig` call when
|
19901
|
+
# updating an endpoint, set `RetainAllVariantProperties` to `false`.
|
19902
|
+
# @return [Boolean]
|
19903
|
+
#
|
19904
|
+
# @!attribute [rw] exclude_retained_variant_properties
|
19905
|
+
# When you are updating endpoint resources with
|
19906
|
+
# [RetainAllVariantProperties][1], whose value is set to `true`,
|
19907
|
+
# `ExcludeRetainedVariantProperties` specifies the list of type
|
19908
|
+
# [VariantProperty][2] to override with the values provided by
|
19909
|
+
# `EndpointConfig`. If you don't specify a value for
|
19910
|
+
# `ExcludeAllVariantProperties`, no variant properties are overridden.
|
19911
|
+
#
|
19912
|
+
#
|
19913
|
+
#
|
19914
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_UpdateEndpoint.html#SageMaker-UpdateEndpoint-request-RetainAllVariantProperties
|
19915
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_VariantProperty.html
|
19916
|
+
# @return [Array<Types::VariantProperty>]
|
19917
|
+
#
|
19877
19918
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateEndpointInput AWS API Documentation
|
19878
19919
|
#
|
19879
19920
|
class UpdateEndpointInput < Struct.new(
|
19880
19921
|
:endpoint_name,
|
19881
|
-
:endpoint_config_name
|
19922
|
+
:endpoint_config_name,
|
19923
|
+
:retain_all_variant_properties,
|
19924
|
+
:exclude_retained_variant_properties)
|
19882
19925
|
include Aws::Structure
|
19883
19926
|
end
|
19884
19927
|
|
@@ -20519,7 +20562,7 @@ module Aws::SageMaker
|
|
20519
20562
|
#
|
20520
20563
|
# @!attribute [rw] workforce_name
|
20521
20564
|
# The name of the private workforce whose access you want to restrict.
|
20522
|
-
# `WorkforceName` is automatically set to `
|
20565
|
+
# `WorkforceName` is automatically set to `default` when a workforce
|
20523
20566
|
# is created and cannot be modified.
|
20524
20567
|
# @return [String]
|
20525
20568
|
#
|
@@ -20527,7 +20570,7 @@ module Aws::SageMaker
|
|
20527
20570
|
# A list of one to four worker IP address ranges ([CIDRs][1]) that can
|
20528
20571
|
# be used to access tasks assigned to this workforce.
|
20529
20572
|
#
|
20530
|
-
# Maximum:
|
20573
|
+
# Maximum: Four CIDR values
|
20531
20574
|
#
|
20532
20575
|
#
|
20533
20576
|
#
|
@@ -20545,7 +20588,7 @@ module Aws::SageMaker
|
|
20545
20588
|
# @!attribute [rw] workforce
|
20546
20589
|
# A single private workforce, which is automatically created when you
|
20547
20590
|
# create your first private work team. You can create one private work
|
20548
|
-
# force in each AWS Region. By default, any workforce
|
20591
|
+
# force in each AWS Region. By default, any workforce-related API
|
20549
20592
|
# operation used in a specific region will apply to the workforce
|
20550
20593
|
# created in that region. To learn how to create a private workforce,
|
20551
20594
|
# see [Create a Private Workforce][1].
|
@@ -20747,6 +20790,52 @@ module Aws::SageMaker
|
|
20747
20790
|
include Aws::Structure
|
20748
20791
|
end
|
20749
20792
|
|
20793
|
+
# Specifies a production variant property type for an Endpoint.
|
20794
|
+
#
|
20795
|
+
# If you are updating an endpoint with the
|
20796
|
+
# [RetainAllVariantProperties][1] option set to `true`, the
|
20797
|
+
# `VariantProperty` objects listed in
|
20798
|
+
# [ExcludeRetainedVariantProperties][2] override the existing variant
|
20799
|
+
# properties of the endpoint.
|
20800
|
+
#
|
20801
|
+
#
|
20802
|
+
#
|
20803
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_UpdateEndpoint.html#SageMaker-UpdateEndpoint-request-RetainAllVariantProperties
|
20804
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_UpdateEndpoint.html#SageMaker-UpdateEndpoint-request-ExcludeRetainedVariantProperties
|
20805
|
+
#
|
20806
|
+
# @note When making an API call, you may pass VariantProperty
|
20807
|
+
# data as a hash:
|
20808
|
+
#
|
20809
|
+
# {
|
20810
|
+
# variant_property_type: "DesiredInstanceCount", # required, accepts DesiredInstanceCount, DesiredWeight, DataCaptureConfig
|
20811
|
+
# }
|
20812
|
+
#
|
20813
|
+
# @!attribute [rw] variant_property_type
|
20814
|
+
# The type of variant property. The supported values are:
|
20815
|
+
#
|
20816
|
+
# * `DesiredInstanceCount`\: Overrides the existing variant instance
|
20817
|
+
# counts using the [InitialInstanceCount][1] values in the
|
20818
|
+
# [ProductionVariants][2].
|
20819
|
+
#
|
20820
|
+
# * `DesiredWeight`\: Overrides the existing variant weights using the
|
20821
|
+
# [InitialVariantWeight][3] values in the [ProductionVariants][2].
|
20822
|
+
#
|
20823
|
+
# * `DataCaptureConfig`\: (Not currently supported.)
|
20824
|
+
#
|
20825
|
+
#
|
20826
|
+
#
|
20827
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_ProductionVariant.html#SageMaker-Type-ProductionVariant-InitialInstanceCount
|
20828
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_CreateEndpointConfig.html#SageMaker-CreateEndpointConfig-request-ProductionVariants
|
20829
|
+
# [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/API_ProductionVariant.html#SageMaker-Type-ProductionVariant-InitialVariantWeight
|
20830
|
+
# @return [String]
|
20831
|
+
#
|
20832
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/VariantProperty AWS API Documentation
|
20833
|
+
#
|
20834
|
+
class VariantProperty < Struct.new(
|
20835
|
+
:variant_property_type)
|
20836
|
+
include Aws::Structure
|
20837
|
+
end
|
20838
|
+
|
20750
20839
|
# Specifies a VPC that your training jobs and hosted models have access
|
20751
20840
|
# to. Control access to and from your training and model containers by
|
20752
20841
|
# configuring the VPC. For more information, see [Protect Endpoints by
|
@@ -20774,14 +20863,13 @@ module Aws::SageMaker
|
|
20774
20863
|
#
|
20775
20864
|
# @!attribute [rw] subnets
|
20776
20865
|
# The ID of the subnets in the VPC to which you want to connect your
|
20777
|
-
# training job or model.
|
20866
|
+
# training job or model. For information about the availability of
|
20867
|
+
# specific instance types, see [Supported Instance Types and
|
20868
|
+
# Availability Zones][1].
|
20778
20869
|
#
|
20779
|
-
# <note markdown="1"> Amazon EC2 P3 accelerated computing instances are not available in
|
20780
|
-
# the c/d/e availability zones of region us-east-1. If you want to
|
20781
|
-
# create endpoints with P3 instances in VPC mode in region us-east-1,
|
20782
|
-
# create subnets in a/b/f availability zones instead.
|
20783
20870
|
#
|
20784
|
-
#
|
20871
|
+
#
|
20872
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/instance-types-az.html
|
20785
20873
|
# @return [Array<String>]
|
20786
20874
|
#
|
20787
20875
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/VpcConfig AWS API Documentation
|
@@ -20794,7 +20882,7 @@ module Aws::SageMaker
|
|
20794
20882
|
|
20795
20883
|
# A single private workforce, which is automatically created when you
|
20796
20884
|
# create your first private work team. You can create one private work
|
20797
|
-
# force in each AWS Region. By default, any workforce
|
20885
|
+
# force in each AWS Region. By default, any workforce-related API
|
20798
20886
|
# operation used in a specific region will apply to the workforce
|
20799
20887
|
# created in that region. To learn how to create a private workforce,
|
20800
20888
|
# see [Create a Private Workforce][1].
|
@@ -20805,7 +20893,7 @@ module Aws::SageMaker
|
|
20805
20893
|
#
|
20806
20894
|
# @!attribute [rw] workforce_name
|
20807
20895
|
# The name of the private workforce whose access you want to restrict.
|
20808
|
-
# `WorkforceName` is automatically set to `
|
20896
|
+
# `WorkforceName` is automatically set to `default` when a workforce
|
20809
20897
|
# is created and cannot be modified.
|
20810
20898
|
# @return [String]
|
20811
20899
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sagemaker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.51.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|