aws-sdk-sagemaker 1.48.0 → 1.49.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 +58 -32
- data/lib/aws-sdk-sagemaker/client_api.rb +5 -0
- data/lib/aws-sdk-sagemaker/types.rb +88 -59
- 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: c0bcff781467d2bedd117e98c5639f863119a36f
|
4
|
+
data.tar.gz: 1debb4c2d13fdea7ec43b5fc0fad7bd6d286d9f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42bddb93eb5cb4e4bd4f06857e4d1479d2a408f373a278c6ae99ef470d67ecf32726a75357ba6ca3cb70cbfb37514ba3d36a0a5189453b9e2995ea18cbd5f3f6
|
7
|
+
data.tar.gz: ebfbdcc1b9e2b3eba8fc31c8c1b19beae43f80ce3f25697ce61456ed198f5bcce2f9c904afd1b71e8d949ae928c0724b275c870f612a9878836af1e9c3a42827
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
@@ -898,7 +898,7 @@ module Aws::SageMaker
|
|
898
898
|
# input_config: { # required
|
899
899
|
# s3_uri: "S3Uri", # required
|
900
900
|
# data_input_config: "DataInputConfig", # required
|
901
|
-
# framework: "TENSORFLOW", # required, accepts TENSORFLOW, MXNET, ONNX, PYTORCH, XGBOOST
|
901
|
+
# framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST
|
902
902
|
# },
|
903
903
|
# output_config: { # required
|
904
904
|
# s3_output_location: "S3Uri", # required
|
@@ -1172,6 +1172,29 @@ module Aws::SageMaker
|
|
1172
1172
|
# that Amazon SageMaker uses to encrypt data on the storage volume
|
1173
1173
|
# attached to the ML compute instance that hosts the endpoint.
|
1174
1174
|
#
|
1175
|
+
# The KmsKeyId can be any of the following formats:
|
1176
|
+
#
|
1177
|
+
# * // KMS Key ID
|
1178
|
+
#
|
1179
|
+
# `"1234abcd-12ab-34cd-56ef-1234567890ab" `
|
1180
|
+
#
|
1181
|
+
# * // Amazon Resource Name (ARN) (ARN) of a KMS Key
|
1182
|
+
#
|
1183
|
+
# "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
|
1184
|
+
#
|
1185
|
+
# * // KMS Key Alias
|
1186
|
+
#
|
1187
|
+
# "alias/ExampleAlias"
|
1188
|
+
#
|
1189
|
+
# * // Amazon Resource Name (ARN) of a KMS Key Alias
|
1190
|
+
#
|
1191
|
+
# `"arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias" `
|
1192
|
+
#
|
1193
|
+
# The KMS key policy must grant permission to the IAM role that you
|
1194
|
+
# specify in your `CreateEndpoint`, `UpdateEndpoint` requests. For more
|
1195
|
+
# information, refer to the AWS Key Management Service section[ Using
|
1196
|
+
# Key Policies in AWS KMS ][1]
|
1197
|
+
#
|
1175
1198
|
# <note markdown="1"> Certain Nitro-based instances include local storage, dependent on the
|
1176
1199
|
# instance type. Local storage volumes are encrypted using a hardware
|
1177
1200
|
# module on the instance. You can't request a `KmsKeyId` when using an
|
@@ -1183,17 +1206,18 @@ module Aws::SageMaker
|
|
1183
1206
|
# `CreateEndpointConfig` fails.
|
1184
1207
|
#
|
1185
1208
|
# For a list of instance types that support local instance storage, see
|
1186
|
-
# [Instance Store Volumes][
|
1209
|
+
# [Instance Store Volumes][2].
|
1187
1210
|
#
|
1188
1211
|
# For more information about local instance storage encryption, see [SSD
|
1189
|
-
# Instance Store Volumes][
|
1212
|
+
# Instance Store Volumes][3].
|
1190
1213
|
#
|
1191
1214
|
# </note>
|
1192
1215
|
#
|
1193
1216
|
#
|
1194
1217
|
#
|
1195
|
-
# [1]: https://docs.aws.amazon.com/
|
1196
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
1218
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html
|
1219
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html#instance-store-volumes
|
1220
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ssd-instance-store.html
|
1197
1221
|
#
|
1198
1222
|
# @return [Types::CreateEndpointConfigOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1199
1223
|
#
|
@@ -2077,11 +2101,6 @@ module Aws::SageMaker
|
|
2077
2101
|
# Isolates the model container. No inbound or outbound network calls can
|
2078
2102
|
# be made to or from the model container.
|
2079
2103
|
#
|
2080
|
-
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support network
|
2081
|
-
# isolation.
|
2082
|
-
#
|
2083
|
-
# </note>
|
2084
|
-
#
|
2085
2104
|
# @return [Types::CreateModelOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2086
2105
|
#
|
2087
2106
|
# * {Types::CreateModelOutput#model_arn #model_arn} => String
|
@@ -3064,11 +3083,6 @@ module Aws::SageMaker
|
|
3064
3083
|
# uploads customer data and model artifacts through the specified VPC,
|
3065
3084
|
# but the training container does not have network access.
|
3066
3085
|
#
|
3067
|
-
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support network
|
3068
|
-
# isolation.
|
3069
|
-
#
|
3070
|
-
# </note>
|
3071
|
-
#
|
3072
3086
|
# @option params [Boolean] :enable_inter_container_traffic_encryption
|
3073
3087
|
# To encrypt all communications between ML compute instances in
|
3074
3088
|
# distributed training, choose `True`. Encryption provides greater
|
@@ -3518,12 +3532,11 @@ module Aws::SageMaker
|
|
3518
3532
|
# You can add tags to a trial component and then use the Search API to
|
3519
3533
|
# search for the tags.
|
3520
3534
|
#
|
3521
|
-
# <note markdown="1">
|
3522
|
-
#
|
3523
|
-
#
|
3524
|
-
#
|
3525
|
-
#
|
3526
|
-
# Python (Boto) to create the component with a valid `Source` property.
|
3535
|
+
# <note markdown="1"> `CreateTrialComponent` can only be invoked from within an Amazon
|
3536
|
+
# SageMaker managed environment. This includes Amazon SageMaker training
|
3537
|
+
# jobs, processing jobs, transform jobs, and Amazon SageMaker notebooks.
|
3538
|
+
# A call to `CreateTrialComponent` from outside one of these
|
3539
|
+
# environments results in an error.
|
3527
3540
|
#
|
3528
3541
|
# </note>
|
3529
3542
|
#
|
@@ -4685,7 +4698,7 @@ module Aws::SageMaker
|
|
4685
4698
|
# resp.role_arn #=> String
|
4686
4699
|
# resp.input_config.s3_uri #=> String
|
4687
4700
|
# resp.input_config.data_input_config #=> String
|
4688
|
-
# resp.input_config.framework #=> String, one of "TENSORFLOW", "MXNET", "ONNX", "PYTORCH", "XGBOOST"
|
4701
|
+
# resp.input_config.framework #=> String, one of "TENSORFLOW", "KERAS", "MXNET", "ONNX", "PYTORCH", "XGBOOST"
|
4689
4702
|
# resp.output_config.s3_output_location #=> String
|
4690
4703
|
# 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"
|
4691
4704
|
#
|
@@ -6321,8 +6334,7 @@ module Aws::SageMaker
|
|
6321
6334
|
# `HyperParameters`, `Tags`, and `Metrics`.
|
6322
6335
|
#
|
6323
6336
|
# @option params [required, String] :resource
|
6324
|
-
# The name of the Amazon SageMaker resource to Search for.
|
6325
|
-
# valid `Resource` value is `TrainingJob`.
|
6337
|
+
# The name of the Amazon SageMaker resource to Search for.
|
6326
6338
|
#
|
6327
6339
|
# @option params [Types::SuggestionQuery] :suggestion_query
|
6328
6340
|
# Limits the property names that are included in the response.
|
@@ -6999,7 +7011,8 @@ module Aws::SageMaker
|
|
6999
7011
|
# experiments.
|
7000
7012
|
#
|
7001
7013
|
# @option params [Integer] :max_results
|
7002
|
-
# The maximum number of experiments to return in the response.
|
7014
|
+
# The maximum number of experiments to return in the response. The
|
7015
|
+
# default value is 10.
|
7003
7016
|
#
|
7004
7017
|
# @return [Types::ListExperimentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7005
7018
|
#
|
@@ -8312,6 +8325,16 @@ module Aws::SageMaker
|
|
8312
8325
|
# show only components that were created in a specific time range. You
|
8313
8326
|
# can sort the list by trial component name or creation time.
|
8314
8327
|
#
|
8328
|
+
# @option params [String] :experiment_name
|
8329
|
+
# A filter that returns only components that are part of the specified
|
8330
|
+
# experiment. If you specify `ExperimentName`, you can't specify
|
8331
|
+
# `TrialName`.
|
8332
|
+
#
|
8333
|
+
# @option params [String] :trial_name
|
8334
|
+
# A filter that returns only components that are part of the specified
|
8335
|
+
# trial. If you specify `TrialName`, you can't specify
|
8336
|
+
# `ExperimentName`.
|
8337
|
+
#
|
8315
8338
|
# @option params [String] :source_arn
|
8316
8339
|
# A filter that returns only components that have the specified source
|
8317
8340
|
# Amazon Resource Name (ARN).
|
@@ -8332,7 +8355,8 @@ module Aws::SageMaker
|
|
8332
8355
|
# The sort order. The default value is `Descending`.
|
8333
8356
|
#
|
8334
8357
|
# @option params [Integer] :max_results
|
8335
|
-
# The maximum number of components to return in the response.
|
8358
|
+
# The maximum number of components to return in the response. The
|
8359
|
+
# default value is 10.
|
8336
8360
|
#
|
8337
8361
|
# @option params [String] :next_token
|
8338
8362
|
# If the previous call to `ListTrialComponents` didn't return the full
|
@@ -8347,6 +8371,8 @@ module Aws::SageMaker
|
|
8347
8371
|
# @example Request syntax with placeholder values
|
8348
8372
|
#
|
8349
8373
|
# resp = client.list_trial_components({
|
8374
|
+
# experiment_name: "ExperimentEntityName",
|
8375
|
+
# trial_name: "ExperimentEntityName",
|
8350
8376
|
# source_arn: "String256",
|
8351
8377
|
# created_after: Time.now,
|
8352
8378
|
# created_before: Time.now,
|
@@ -8410,7 +8436,8 @@ module Aws::SageMaker
|
|
8410
8436
|
# The sort order. The default value is `Descending`.
|
8411
8437
|
#
|
8412
8438
|
# @option params [Integer] :max_results
|
8413
|
-
# The maximum number of trials to return in the response.
|
8439
|
+
# The maximum number of trials to return in the response. The default
|
8440
|
+
# value is 10.
|
8414
8441
|
#
|
8415
8442
|
# @option params [String] :next_token
|
8416
8443
|
# If the previous call to `ListTrials` didn't return the full set of
|
@@ -8627,12 +8654,11 @@ module Aws::SageMaker
|
|
8627
8654
|
# the response. You can sort the search results by any resource property
|
8628
8655
|
# in a ascending or descending order.
|
8629
8656
|
#
|
8630
|
-
# You can query against the following value types:
|
8631
|
-
#
|
8657
|
+
# You can query against the following value types: numeric, text,
|
8658
|
+
# Boolean, and timestamp.
|
8632
8659
|
#
|
8633
8660
|
# @option params [required, String] :resource
|
8634
|
-
# The name of the Amazon SageMaker resource to search for.
|
8635
|
-
# the only valid `Resource` value is `TrainingJob`.
|
8661
|
+
# The name of the Amazon SageMaker resource to search for.
|
8636
8662
|
#
|
8637
8663
|
# @option params [Types::SearchExpression] :search_expression
|
8638
8664
|
# A Boolean conditional statement. Resource objects must satisfy this
|
@@ -10073,7 +10099,7 @@ module Aws::SageMaker
|
|
10073
10099
|
params: params,
|
10074
10100
|
config: config)
|
10075
10101
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
10076
|
-
context[:gem_version] = '1.
|
10102
|
+
context[:gem_version] = '1.49.0'
|
10077
10103
|
Seahorse::Client::Request.new(handlers, context)
|
10078
10104
|
end
|
10079
10105
|
|
@@ -2814,6 +2814,8 @@ module Aws::SageMaker
|
|
2814
2814
|
|
2815
2815
|
ListTrialComponentKey256.member = Shapes::ShapeRef.new(shape: TrialComponentKey256)
|
2816
2816
|
|
2817
|
+
ListTrialComponentsRequest.add_member(:experiment_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, location_name: "ExperimentName"))
|
2818
|
+
ListTrialComponentsRequest.add_member(:trial_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, location_name: "TrialName"))
|
2817
2819
|
ListTrialComponentsRequest.add_member(:source_arn, Shapes::ShapeRef.new(shape: String256, location_name: "SourceArn"))
|
2818
2820
|
ListTrialComponentsRequest.add_member(:created_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAfter"))
|
2819
2821
|
ListTrialComponentsRequest.add_member(:created_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedBefore"))
|
@@ -3984,6 +3986,7 @@ module Aws::SageMaker
|
|
3984
3986
|
o.http_request_uri = "/"
|
3985
3987
|
o.input = Shapes::ShapeRef.new(shape: CreatePresignedDomainUrlRequest)
|
3986
3988
|
o.output = Shapes::ShapeRef.new(shape: CreatePresignedDomainUrlResponse)
|
3989
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
3987
3990
|
end)
|
3988
3991
|
|
3989
3992
|
api.add_operation(:create_presigned_notebook_instance_url, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4850,6 +4853,7 @@ module Aws::SageMaker
|
|
4850
4853
|
o.http_request_uri = "/"
|
4851
4854
|
o.input = Shapes::ShapeRef.new(shape: ListTrialComponentsRequest)
|
4852
4855
|
o.output = Shapes::ShapeRef.new(shape: ListTrialComponentsResponse)
|
4856
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
4853
4857
|
o[:pager] = Aws::Pager.new(
|
4854
4858
|
limit_key: "max_results",
|
4855
4859
|
tokens: {
|
@@ -4864,6 +4868,7 @@ module Aws::SageMaker
|
|
4864
4868
|
o.http_request_uri = "/"
|
4865
4869
|
o.input = Shapes::ShapeRef.new(shape: ListTrialsRequest)
|
4866
4870
|
o.output = Shapes::ShapeRef.new(shape: ListTrialsResponse)
|
4871
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
4867
4872
|
o[:pager] = Aws::Pager.new(
|
4868
4873
|
limit_key: "max_results",
|
4869
4874
|
tokens: {
|
@@ -142,16 +142,20 @@ module Aws::SageMaker
|
|
142
142
|
#
|
143
143
|
# * You use one of the Amazon SageMaker built-in algorithms
|
144
144
|
#
|
145
|
-
# * You use one of the following
|
146
|
-
#
|
145
|
+
# * You use one of the following [Prebuilt Amazon SageMaker Docker
|
146
|
+
# Images][1]\:
|
147
147
|
#
|
148
|
-
# * Tensorflow
|
148
|
+
# * Tensorflow (version >= 1.15)
|
149
149
|
#
|
150
|
-
# * MXNet
|
150
|
+
# * MXNet (version >= 1.6)
|
151
151
|
#
|
152
|
-
# * PyTorch
|
152
|
+
# * PyTorch (version >= 1.3)
|
153
153
|
#
|
154
154
|
# * You specify at least one MetricDefinition
|
155
|
+
#
|
156
|
+
#
|
157
|
+
#
|
158
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/pre-built-containers-frameworks-deep-learning.html
|
155
159
|
# @return [Boolean]
|
156
160
|
#
|
157
161
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AlgorithmSpecification AWS API Documentation
|
@@ -1642,7 +1646,8 @@ module Aws::SageMaker
|
|
1642
1646
|
# }
|
1643
1647
|
#
|
1644
1648
|
# @!attribute [rw] collection_name
|
1645
|
-
# The name of the tensor collection.
|
1649
|
+
# The name of the tensor collection. The name must be unique relative
|
1650
|
+
# to other rule configuration names.
|
1646
1651
|
# @return [String]
|
1647
1652
|
#
|
1648
1653
|
# @!attribute [rw] collection_parameters
|
@@ -2405,7 +2410,7 @@ module Aws::SageMaker
|
|
2405
2410
|
# input_config: { # required
|
2406
2411
|
# s3_uri: "S3Uri", # required
|
2407
2412
|
# data_input_config: "DataInputConfig", # required
|
2408
|
-
# framework: "TENSORFLOW", # required, accepts TENSORFLOW, MXNET, ONNX, PYTORCH, XGBOOST
|
2413
|
+
# framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST
|
2409
2414
|
# },
|
2410
2415
|
# output_config: { # required
|
2411
2416
|
# s3_output_location: "S3Uri", # required
|
@@ -2666,6 +2671,29 @@ module Aws::SageMaker
|
|
2666
2671
|
# that Amazon SageMaker uses to encrypt data on the storage volume
|
2667
2672
|
# attached to the ML compute instance that hosts the endpoint.
|
2668
2673
|
#
|
2674
|
+
# The KmsKeyId can be any of the following formats:
|
2675
|
+
#
|
2676
|
+
# * // KMS Key ID
|
2677
|
+
#
|
2678
|
+
# `"1234abcd-12ab-34cd-56ef-1234567890ab" `
|
2679
|
+
#
|
2680
|
+
# * // Amazon Resource Name (ARN) (ARN) of a KMS Key
|
2681
|
+
#
|
2682
|
+
# "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
|
2683
|
+
#
|
2684
|
+
# * // KMS Key Alias
|
2685
|
+
#
|
2686
|
+
# "alias/ExampleAlias"
|
2687
|
+
#
|
2688
|
+
# * // Amazon Resource Name (ARN) of a KMS Key Alias
|
2689
|
+
#
|
2690
|
+
# `"arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias" `
|
2691
|
+
#
|
2692
|
+
# The KMS key policy must grant permission to the IAM role that you
|
2693
|
+
# specify in your `CreateEndpoint`, `UpdateEndpoint` requests. For
|
2694
|
+
# more information, refer to the AWS Key Management Service section[
|
2695
|
+
# Using Key Policies in AWS KMS ][1]
|
2696
|
+
#
|
2669
2697
|
# <note markdown="1"> Certain Nitro-based instances include local storage, dependent on
|
2670
2698
|
# the instance type. Local storage volumes are encrypted using a
|
2671
2699
|
# hardware module on the instance. You can't request a `KmsKeyId`
|
@@ -2677,17 +2705,18 @@ module Aws::SageMaker
|
|
2677
2705
|
# `CreateEndpointConfig` fails.
|
2678
2706
|
#
|
2679
2707
|
# For a list of instance types that support local instance storage,
|
2680
|
-
# see [Instance Store Volumes][
|
2708
|
+
# see [Instance Store Volumes][2].
|
2681
2709
|
#
|
2682
2710
|
# For more information about local instance storage encryption, see
|
2683
|
-
# [SSD Instance Store Volumes][
|
2711
|
+
# [SSD Instance Store Volumes][3].
|
2684
2712
|
#
|
2685
2713
|
# </note>
|
2686
2714
|
#
|
2687
2715
|
#
|
2688
2716
|
#
|
2689
|
-
# [1]: https://docs.aws.amazon.com/
|
2690
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/
|
2717
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html
|
2718
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html#instance-store-volumes
|
2719
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ssd-instance-store.html
|
2691
2720
|
# @return [String]
|
2692
2721
|
#
|
2693
2722
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEndpointConfigInput AWS API Documentation
|
@@ -3606,11 +3635,6 @@ module Aws::SageMaker
|
|
3606
3635
|
# @!attribute [rw] enable_network_isolation
|
3607
3636
|
# Isolates the model container. No inbound or outbound network calls
|
3608
3637
|
# can be made to or from the model container.
|
3609
|
-
#
|
3610
|
-
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support
|
3611
|
-
# network isolation.
|
3612
|
-
#
|
3613
|
-
# </note>
|
3614
3638
|
# @return [Boolean]
|
3615
3639
|
#
|
3616
3640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelInput AWS API Documentation
|
@@ -4610,11 +4634,6 @@ module Aws::SageMaker
|
|
4610
4634
|
# downloads and uploads customer data and model artifacts through the
|
4611
4635
|
# specified VPC, but the training container does not have network
|
4612
4636
|
# access.
|
4613
|
-
#
|
4614
|
-
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support
|
4615
|
-
# network isolation.
|
4616
|
-
#
|
4617
|
-
# </note>
|
4618
4637
|
# @return [Boolean]
|
4619
4638
|
#
|
4620
4639
|
# @!attribute [rw] enable_inter_container_traffic_encryption
|
@@ -5511,7 +5530,7 @@ module Aws::SageMaker
|
|
5511
5530
|
# @return [String]
|
5512
5531
|
#
|
5513
5532
|
# @!attribute [rw] local_path
|
5514
|
-
# Path to local storage location for rules. Defaults to
|
5533
|
+
# Path to local storage location for output of rules. Defaults to
|
5515
5534
|
# `/opt/ml/processing/output/rule/`.
|
5516
5535
|
# @return [String]
|
5517
5536
|
#
|
@@ -5529,7 +5548,7 @@ module Aws::SageMaker
|
|
5529
5548
|
# @return [String]
|
5530
5549
|
#
|
5531
5550
|
# @!attribute [rw] volume_size_in_gb
|
5532
|
-
# The size, in GB, of the ML storage volume attached to the
|
5551
|
+
# The size, in GB, of the ML storage volume attached to the processing
|
5533
5552
|
# instance.
|
5534
5553
|
# @return [Integer]
|
5535
5554
|
#
|
@@ -7280,11 +7299,6 @@ module Aws::SageMaker
|
|
7280
7299
|
# @!attribute [rw] enable_network_isolation
|
7281
7300
|
# If `True`, no inbound or outbound network calls can be made to or
|
7282
7301
|
# from the model container.
|
7283
|
-
#
|
7284
|
-
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support
|
7285
|
-
# network isolation.
|
7286
|
-
#
|
7287
|
-
# </note>
|
7288
7302
|
# @return [Boolean]
|
7289
7303
|
#
|
7290
7304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelOutput AWS API Documentation
|
@@ -8086,11 +8100,6 @@ module Aws::SageMaker
|
|
8086
8100
|
# downloads and uploads customer data and model artifacts through the
|
8087
8101
|
# specified VPC, but the training container does not have network
|
8088
8102
|
# access.
|
8089
|
-
#
|
8090
|
-
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support
|
8091
|
-
# network isolation.
|
8092
|
-
#
|
8093
|
-
# </note>
|
8094
8103
|
# @return [Boolean]
|
8095
8104
|
#
|
8096
8105
|
# @!attribute [rw] enable_inter_container_traffic_encryption
|
@@ -9330,8 +9339,7 @@ module Aws::SageMaker
|
|
9330
9339
|
# }
|
9331
9340
|
#
|
9332
9341
|
# @!attribute [rw] resource
|
9333
|
-
# The name of the Amazon SageMaker resource to Search for.
|
9334
|
-
# valid `Resource` value is `TrainingJob`.
|
9342
|
+
# The name of the Amazon SageMaker resource to Search for.
|
9335
9343
|
# @return [String]
|
9336
9344
|
#
|
9337
9345
|
# @!attribute [rw] suggestion_query
|
@@ -10096,14 +10104,16 @@ module Aws::SageMaker
|
|
10096
10104
|
# @!attribute [rw] task_availability_lifetime_in_seconds
|
10097
10105
|
# The length of time that a task remains available for labeling by
|
10098
10106
|
# human workers. **If you choose the Amazon Mechanical Turk workforce,
|
10099
|
-
# the maximum is 12 hours (43200)**.
|
10100
|
-
# workforces, the maximum is
|
10107
|
+
# the maximum is 12 hours (43200)**. The default value is 864000
|
10108
|
+
# seconds (1 day). For private and vendor workforces, the maximum is
|
10109
|
+
# as listed.
|
10101
10110
|
# @return [Integer]
|
10102
10111
|
#
|
10103
10112
|
# @!attribute [rw] max_concurrent_task_count
|
10104
10113
|
# Defines the maximum number of data objects that can be labeled by
|
10105
10114
|
# human workers at the same time. Also referred to as batch size. Each
|
10106
|
-
# object may have more than one worker at one time.
|
10115
|
+
# object may have more than one worker at one time. The default value
|
10116
|
+
# is 1000 objects.
|
10107
10117
|
# @return [Integer]
|
10108
10118
|
#
|
10109
10119
|
# @!attribute [rw] annotation_consolidation_config
|
@@ -10499,11 +10509,6 @@ module Aws::SageMaker
|
|
10499
10509
|
# downloads and uploads customer data and model artifacts through the
|
10500
10510
|
# specified VPC, but the training container does not have network
|
10501
10511
|
# access.
|
10502
|
-
#
|
10503
|
-
# <note markdown="1"> The Semantic Segmentation built-in algorithm does not support
|
10504
|
-
# network isolation.
|
10505
|
-
#
|
10506
|
-
# </note>
|
10507
10512
|
# @return [Boolean]
|
10508
10513
|
#
|
10509
10514
|
# @!attribute [rw] enable_inter_container_traffic_encryption
|
@@ -10997,7 +11002,7 @@ module Aws::SageMaker
|
|
10997
11002
|
# {
|
10998
11003
|
# s3_uri: "S3Uri", # required
|
10999
11004
|
# data_input_config: "DataInputConfig", # required
|
11000
|
-
# framework: "TENSORFLOW", # required, accepts TENSORFLOW, MXNET, ONNX, PYTORCH, XGBOOST
|
11005
|
+
# framework: "TENSORFLOW", # required, accepts TENSORFLOW, KERAS, MXNET, ONNX, PYTORCH, XGBOOST
|
11001
11006
|
# }
|
11002
11007
|
#
|
11003
11008
|
# @!attribute [rw] s3_uri
|
@@ -12459,7 +12464,8 @@ module Aws::SageMaker
|
|
12459
12464
|
# @return [String]
|
12460
12465
|
#
|
12461
12466
|
# @!attribute [rw] max_results
|
12462
|
-
# The maximum number of experiments to return in the response.
|
12467
|
+
# The maximum number of experiments to return in the response. The
|
12468
|
+
# default value is 10.
|
12463
12469
|
# @return [Integer]
|
12464
12470
|
#
|
12465
12471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListExperimentsRequest AWS API Documentation
|
@@ -13980,6 +13986,8 @@ module Aws::SageMaker
|
|
13980
13986
|
# data as a hash:
|
13981
13987
|
#
|
13982
13988
|
# {
|
13989
|
+
# experiment_name: "ExperimentEntityName",
|
13990
|
+
# trial_name: "ExperimentEntityName",
|
13983
13991
|
# source_arn: "String256",
|
13984
13992
|
# created_after: Time.now,
|
13985
13993
|
# created_before: Time.now,
|
@@ -13989,6 +13997,18 @@ module Aws::SageMaker
|
|
13989
13997
|
# next_token: "NextToken",
|
13990
13998
|
# }
|
13991
13999
|
#
|
14000
|
+
# @!attribute [rw] experiment_name
|
14001
|
+
# A filter that returns only components that are part of the specified
|
14002
|
+
# experiment. If you specify `ExperimentName`, you can't specify
|
14003
|
+
# `TrialName`.
|
14004
|
+
# @return [String]
|
14005
|
+
#
|
14006
|
+
# @!attribute [rw] trial_name
|
14007
|
+
# A filter that returns only components that are part of the specified
|
14008
|
+
# trial. If you specify `TrialName`, you can't specify
|
14009
|
+
# `ExperimentName`.
|
14010
|
+
# @return [String]
|
14011
|
+
#
|
13992
14012
|
# @!attribute [rw] source_arn
|
13993
14013
|
# A filter that returns only components that have the specified source
|
13994
14014
|
# Amazon Resource Name (ARN).
|
@@ -14014,7 +14034,8 @@ module Aws::SageMaker
|
|
14014
14034
|
# @return [String]
|
14015
14035
|
#
|
14016
14036
|
# @!attribute [rw] max_results
|
14017
|
-
# The maximum number of components to return in the response.
|
14037
|
+
# The maximum number of components to return in the response. The
|
14038
|
+
# default value is 10.
|
14018
14039
|
# @return [Integer]
|
14019
14040
|
#
|
14020
14041
|
# @!attribute [rw] next_token
|
@@ -14026,6 +14047,8 @@ module Aws::SageMaker
|
|
14026
14047
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListTrialComponentsRequest AWS API Documentation
|
14027
14048
|
#
|
14028
14049
|
class ListTrialComponentsRequest < Struct.new(
|
14050
|
+
:experiment_name,
|
14051
|
+
:trial_name,
|
14029
14052
|
:source_arn,
|
14030
14053
|
:created_after,
|
14031
14054
|
:created_before,
|
@@ -14088,7 +14111,8 @@ module Aws::SageMaker
|
|
14088
14111
|
# @return [String]
|
14089
14112
|
#
|
14090
14113
|
# @!attribute [rw] max_results
|
14091
|
-
# The maximum number of trials to return in the response.
|
14114
|
+
# The maximum number of trials to return in the response. The default
|
14115
|
+
# value is 10.
|
14092
14116
|
# @return [Integer]
|
14093
14117
|
#
|
14094
14118
|
# @!attribute [rw] next_token
|
@@ -15312,7 +15336,7 @@ module Aws::SageMaker
|
|
15312
15336
|
#
|
15313
15337
|
# @!attribute [rw] nested_property_name
|
15314
15338
|
# The name of the property to use in the nested filters. The value
|
15315
|
-
# must match a listed property name, such as `InputDataConfig
|
15339
|
+
# must match a listed property name, such as `InputDataConfig`.
|
15316
15340
|
# @return [String]
|
15317
15341
|
#
|
15318
15342
|
# @!attribute [rw] filters
|
@@ -16298,8 +16322,8 @@ module Aws::SageMaker
|
|
16298
16322
|
include Aws::Structure
|
16299
16323
|
end
|
16300
16324
|
|
16301
|
-
#
|
16302
|
-
# property names that
|
16325
|
+
# Part of the `SuggestionQuery` type. Specifies a hint for retrieving
|
16326
|
+
# property names that begin with the specified text.
|
16303
16327
|
#
|
16304
16328
|
# @note When making an API call, you may pass PropertyNameQuery
|
16305
16329
|
# data as a hash:
|
@@ -16309,9 +16333,7 @@ module Aws::SageMaker
|
|
16309
16333
|
# }
|
16310
16334
|
#
|
16311
16335
|
# @!attribute [rw] property_name_hint
|
16312
|
-
# Text that
|
16313
|
-
# hyperparameter, metric, and tag key names that begin with the
|
16314
|
-
# specified text in the `PropertyNameHint`.
|
16336
|
+
# Text that begins a property's name.
|
16315
16337
|
# @return [String]
|
16316
16338
|
#
|
16317
16339
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PropertyNameQuery AWS API Documentation
|
@@ -17242,8 +17264,7 @@ module Aws::SageMaker
|
|
17242
17264
|
# }
|
17243
17265
|
#
|
17244
17266
|
# @!attribute [rw] resource
|
17245
|
-
# The name of the Amazon SageMaker resource to search for.
|
17246
|
-
# the only valid `Resource` value is `TrainingJob`.
|
17267
|
+
# The name of the Amazon SageMaker resource to search for.
|
17247
17268
|
# @return [String]
|
17248
17269
|
#
|
17249
17270
|
# @!attribute [rw] search_expression
|
@@ -17839,7 +17860,8 @@ module Aws::SageMaker
|
|
17839
17860
|
include Aws::Structure
|
17840
17861
|
end
|
17841
17862
|
|
17842
|
-
#
|
17863
|
+
# Specified in the GetSearchSuggestions request. Limits the property
|
17864
|
+
# names that are included in the response.
|
17843
17865
|
#
|
17844
17866
|
# @note When making an API call, you may pass SuggestionQuery
|
17845
17867
|
# data as a hash:
|
@@ -17851,9 +17873,8 @@ module Aws::SageMaker
|
|
17851
17873
|
# }
|
17852
17874
|
#
|
17853
17875
|
# @!attribute [rw] property_name_query
|
17854
|
-
#
|
17855
|
-
#
|
17856
|
-
# response.
|
17876
|
+
# Defines a property name hint. Only property names that begin with
|
17877
|
+
# the specified hint are included in the response.
|
17857
17878
|
# @return [Types::PropertyNameQuery]
|
17858
17879
|
#
|
17859
17880
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SuggestionQuery AWS API Documentation
|
@@ -18921,6 +18942,14 @@ module Aws::SageMaker
|
|
18921
18942
|
# * // Amazon Resource Name (ARN) of a KMS Key
|
18922
18943
|
#
|
18923
18944
|
# `"arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"`
|
18945
|
+
#
|
18946
|
+
# * // KMS Key Alias
|
18947
|
+
#
|
18948
|
+
# ` "alias/ExampleAlias"`
|
18949
|
+
#
|
18950
|
+
# * // Amazon Resource Name (ARN) (ARN) of a KMS Key Alias
|
18951
|
+
#
|
18952
|
+
# ` "arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"`
|
18924
18953
|
# @return [String]
|
18925
18954
|
#
|
18926
18955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TransformResources AWS API Documentation
|
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.49.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:
|
11
|
+
date: 2020-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|