aws-sdk-sagemaker 1.198.0 → 1.199.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +3 -3
- data/lib/aws-sdk-sagemaker/client_api.rb +2 -2
- data/lib/aws-sdk-sagemaker/types.rb +2 -3
- data/lib/aws-sdk-sagemaker.rb +1 -1
- 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: 55a40709dad4cb7d7f92dca2f6f7c54d0feba2316cc933d32ae27d8c9359ed32
|
4
|
+
data.tar.gz: 72c93a25800ae16a8e3836c8d947c0a04487da21098239f7474edfe12920e332
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb198732848c365bcb7784983e574b94f5d17f00301ba0f05b4ef85dfff75c5fe4ddbc4dee28fb77fd0666ed15a3df81d510b2e9f7d208b302d7e0684fd6382c
|
7
|
+
data.tar.gz: c42e5500b682e8be793b55d85d4685294e93742c80b9ccb5cc1a9227bf641f8be6f4b38dc3e47ac3e1540b23ead1a6ee72a9b5e69db3e8b4734599c3cafe9300
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.199.0 (2023-07-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Mark ContentColumn and TargetLabelColumn as required Targets in TextClassificationJobConfig in CreateAutoMLJobV2API
|
8
|
+
|
4
9
|
1.198.0 (2023-07-20)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.199.0
|
@@ -1532,8 +1532,8 @@ module Aws::SageMaker
|
|
1532
1532
|
# max_runtime_per_training_job_in_seconds: 1,
|
1533
1533
|
# max_auto_ml_job_runtime_in_seconds: 1,
|
1534
1534
|
# },
|
1535
|
-
# content_column: "ContentColumn",
|
1536
|
-
# target_label_column: "TargetLabelColumn",
|
1535
|
+
# content_column: "ContentColumn", # required
|
1536
|
+
# target_label_column: "TargetLabelColumn", # required
|
1537
1537
|
# },
|
1538
1538
|
# tabular_job_config: {
|
1539
1539
|
# candidate_generation_config: {
|
@@ -23997,7 +23997,7 @@ module Aws::SageMaker
|
|
23997
23997
|
params: params,
|
23998
23998
|
config: config)
|
23999
23999
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
24000
|
-
context[:gem_version] = '1.
|
24000
|
+
context[:gem_version] = '1.199.0'
|
24001
24001
|
Seahorse::Client::Request.new(handlers, context)
|
24002
24002
|
end
|
24003
24003
|
|
@@ -8371,8 +8371,8 @@ module Aws::SageMaker
|
|
8371
8371
|
TensorBoardOutputConfig.struct_class = Types::TensorBoardOutputConfig
|
8372
8372
|
|
8373
8373
|
TextClassificationJobConfig.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
|
8374
|
-
TextClassificationJobConfig.add_member(:content_column, Shapes::ShapeRef.new(shape: ContentColumn, location_name: "ContentColumn"))
|
8375
|
-
TextClassificationJobConfig.add_member(:target_label_column, Shapes::ShapeRef.new(shape: TargetLabelColumn, location_name: "TargetLabelColumn"))
|
8374
|
+
TextClassificationJobConfig.add_member(:content_column, Shapes::ShapeRef.new(shape: ContentColumn, required: true, location_name: "ContentColumn"))
|
8375
|
+
TextClassificationJobConfig.add_member(:target_label_column, Shapes::ShapeRef.new(shape: TargetLabelColumn, required: true, location_name: "TargetLabelColumn"))
|
8376
8376
|
TextClassificationJobConfig.struct_class = Types::TextClassificationJobConfig
|
8377
8377
|
|
8378
8378
|
TimeSeriesConfig.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
|
@@ -37157,13 +37157,12 @@ module Aws::SageMaker
|
|
37157
37157
|
#
|
37158
37158
|
# @!attribute [rw] content_column
|
37159
37159
|
# The name of the column used to provide the sentences to be
|
37160
|
-
# classified. It should not be the same as the target column
|
37161
|
-
# (Required).
|
37160
|
+
# classified. It should not be the same as the target column.
|
37162
37161
|
# @return [String]
|
37163
37162
|
#
|
37164
37163
|
# @!attribute [rw] target_label_column
|
37165
37164
|
# The name of the column used to provide the class labels. It should
|
37166
|
-
# not be same as the content column
|
37165
|
+
# not be same as the content column.
|
37167
37166
|
# @return [String]
|
37168
37167
|
#
|
37169
37168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TextClassificationJobConfig AWS API Documentation
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
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.199.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: 2023-07-
|
11
|
+
date: 2023-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|