aws-sdk-sagemaker 1.198.0 → 1.200.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90f841248e75de9cce3a779e74f75a8dc9aa7b17c86ebacf954aaa685aa3e063
4
- data.tar.gz: '0868653ff7ac36ae896680dfe8f980c50555a3e4062f4ddd81f465c5ca65b370'
3
+ metadata.gz: 0e5369f5bb546bc4a434084786180743b3c465f88f079270f4aeb875104a2f5e
4
+ data.tar.gz: 4b21b756570b018c4f72496c571dbc8dcd58138e3851bab0a50d971df7771782
5
5
  SHA512:
6
- metadata.gz: c3f1b1545ebdfd40ce003359c05ac0aeb160e1dc23971769e16587efdd80c42546ab56e5e07fe28ed2cb5ec71bf390d4b614a98a96d862c5fb4b6a88c4dc5d92
7
- data.tar.gz: a1d8e29ff718d92ccfddda06000d238ab2e28c2d8f53669fd6c22b9fae8d0a1e2ae1b734946b19e438daf7daacfbd3e1a1603a94e52443842ff3753d88328203
6
+ metadata.gz: bbf4fd1b274d7c25a5d3722e91e30bbcb5817b13a8d32d978a9800a31e4abfc94bc0c1b7e2089380e09cf0deecbbe9e36d4ec7ab397902afd93d64eaf15d5d41
7
+ data.tar.gz: 528122c7a215f0a6901a12249845b09e8c08fff72f3928ee3800700fd9ea3b168e0af011197f6cd04c5f2094081da87f535af0f73d452202880f0efd1bcf9fe3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.200.0 (2023-07-27)
5
+ ------------------
6
+
7
+ * Feature - Expose ProfilerConfig attribute in SageMaker Search API response.
8
+
9
+ 1.199.0 (2023-07-25)
10
+ ------------------
11
+
12
+ * Feature - Mark ContentColumn and TargetLabelColumn as required Targets in TextClassificationJobConfig in CreateAutoMLJobV2API
13
+
4
14
  1.198.0 (2023-07-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.198.0
1
+ 1.200.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.198.0'
24000
+ context[:gem_version] = '1.200.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"))
@@ -8455,6 +8455,7 @@ module Aws::SageMaker
8455
8455
  TrainingJob.add_member(:debug_rule_configurations, Shapes::ShapeRef.new(shape: DebugRuleConfigurations, location_name: "DebugRuleConfigurations"))
8456
8456
  TrainingJob.add_member(:tensor_board_output_config, Shapes::ShapeRef.new(shape: TensorBoardOutputConfig, location_name: "TensorBoardOutputConfig"))
8457
8457
  TrainingJob.add_member(:debug_rule_evaluation_statuses, Shapes::ShapeRef.new(shape: DebugRuleEvaluationStatuses, location_name: "DebugRuleEvaluationStatuses"))
8458
+ TrainingJob.add_member(:profiler_config, Shapes::ShapeRef.new(shape: ProfilerConfig, location_name: "ProfilerConfig"))
8458
8459
  TrainingJob.add_member(:environment, Shapes::ShapeRef.new(shape: TrainingEnvironmentMap, location_name: "Environment"))
8459
8460
  TrainingJob.add_member(:retry_strategy, Shapes::ShapeRef.new(shape: RetryStrategy, location_name: "RetryStrategy"))
8460
8461
  TrainingJob.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
@@ -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 (Required).
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
@@ -37772,6 +37771,11 @@ module Aws::SageMaker
37772
37771
  # training job.
37773
37772
  # @return [Array<Types::DebugRuleEvaluationStatus>]
37774
37773
  #
37774
+ # @!attribute [rw] profiler_config
37775
+ # Configuration information for Amazon SageMaker Debugger system
37776
+ # monitoring, framework profiling, and storage paths.
37777
+ # @return [Types::ProfilerConfig]
37778
+ #
37775
37779
  # @!attribute [rw] environment
37776
37780
  # The environment variables to set in the Docker container.
37777
37781
  # @return [Hash<String,String>]
@@ -37829,6 +37833,7 @@ module Aws::SageMaker
37829
37833
  :debug_rule_configurations,
37830
37834
  :tensor_board_output_config,
37831
37835
  :debug_rule_evaluation_statuses,
37836
+ :profiler_config,
37832
37837
  :environment,
37833
37838
  :retry_strategy,
37834
37839
  :tags)
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.198.0'
56
+ GEM_VERSION = '1.200.0'
57
57
 
58
58
  end
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.198.0
4
+ version: 1.200.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-20 00:00:00.000000000 Z
11
+ date: 2023-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core