aws-sdk-sagemaker 1.111.0 → 1.112.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: 965985ee6fb67142638ed08700da3ffd3351cb1bde455b77bf8439db687040d4
4
- data.tar.gz: 54c9cb164796b292c0f277d2b98e6066c3b425e16ab39309e902af194401d42a
3
+ metadata.gz: 00cc09d9a8b8d58a2e367112c0089b565645a4a97e712bff6e9e3ae982369142
4
+ data.tar.gz: 9f2d235c0993630427f0e3c2531cc2c10b6492f3a36bc1cc9e05767594e6ccce
5
5
  SHA512:
6
- metadata.gz: 1212d718364b935bbb5699edb93ee664c74b8c5bdca1e5c09b09f183fe6b353b3b6bcac1f8256a86bc4de3ac02e0c31d4145bf0bfe356a0b1db304195fdf8c4b
7
- data.tar.gz: 0f530a36fcb82e90656db8526e11a12fe78900a54fadd83d08afa1303476d52cf1e92e30acf9bc0550ea43b33f89cfae8e4f7508c57989f7bb9ae2b7f91d3fe7
6
+ metadata.gz: 45673f522f206365cbade0bff77497d53b5bc56e2c6707fdd3df1b996639ec4cbd7d85e4bec14f70a23055a07bfe25f13747b445e5e618572e1af3126d576c25
7
+ data.tar.gz: 657c38e3a0044a47072b7f16e5e259ca6304ba51c9a9dcfe973b65d623350db914fdd7e6bf8774426165806d95fe1353a487b71cf5850c94408ff825b60b05c5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.112.0 (2021-12-20)
5
+ ------------------
6
+
7
+ * Feature - This release adds a new ContentType field in AutoMLChannel for SageMaker CreateAutoMLJob InputDataConfig.
8
+
4
9
  1.111.0 (2021-12-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.111.0
1
+ 1.112.0
@@ -1196,6 +1196,7 @@ module Aws::SageMaker
1196
1196
  # },
1197
1197
  # compression_type: "None", # accepts None, Gzip
1198
1198
  # target_attribute_name: "TargetAttributeName", # required
1199
+ # content_type: "ContentType",
1199
1200
  # },
1200
1201
  # ],
1201
1202
  # output_data_config: { # required
@@ -8197,6 +8198,7 @@ module Aws::SageMaker
8197
8198
  # resp.input_data_config[0].data_source.s3_data_source.s3_uri #=> String
8198
8199
  # resp.input_data_config[0].compression_type #=> String, one of "None", "Gzip"
8199
8200
  # resp.input_data_config[0].target_attribute_name #=> String
8201
+ # resp.input_data_config[0].content_type #=> String
8200
8202
  # resp.output_data_config.kms_key_id #=> String
8201
8203
  # resp.output_data_config.s3_output_path #=> String
8202
8204
  # resp.role_arn #=> String
@@ -19364,7 +19366,7 @@ module Aws::SageMaker
19364
19366
  params: params,
19365
19367
  config: config)
19366
19368
  context[:gem_name] = 'aws-sdk-sagemaker'
19367
- context[:gem_version] = '1.111.0'
19369
+ context[:gem_version] = '1.112.0'
19368
19370
  Seahorse::Client::Request.new(handlers, context)
19369
19371
  end
19370
19372
 
@@ -1818,6 +1818,7 @@ module Aws::SageMaker
1818
1818
  AutoMLChannel.add_member(:data_source, Shapes::ShapeRef.new(shape: AutoMLDataSource, required: true, location_name: "DataSource"))
1819
1819
  AutoMLChannel.add_member(:compression_type, Shapes::ShapeRef.new(shape: CompressionType, location_name: "CompressionType"))
1820
1820
  AutoMLChannel.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
1821
+ AutoMLChannel.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location_name: "ContentType"))
1821
1822
  AutoMLChannel.struct_class = Types::AutoMLChannel
1822
1823
 
1823
1824
  AutoMLContainerDefinition.add_member(:image, Shapes::ShapeRef.new(shape: ContainerImage, required: true, location_name: "Image"))
@@ -2048,6 +2048,7 @@ module Aws::SageMaker
2048
2048
  # },
2049
2049
  # compression_type: "None", # accepts None, Gzip
2050
2050
  # target_attribute_name: "TargetAttributeName", # required
2051
+ # content_type: "ContentType",
2051
2052
  # }
2052
2053
  #
2053
2054
  # @!attribute [rw] data_source
@@ -2063,12 +2064,19 @@ module Aws::SageMaker
2063
2064
  # represented by 'y'.
2064
2065
  # @return [String]
2065
2066
  #
2067
+ # @!attribute [rw] content_type
2068
+ # The content type of the data from the input source. You can use
2069
+ # `text/csv;header=present` or `x-application/vnd.amazon+parquet`. The
2070
+ # default value is `text/csv;header=present`.
2071
+ # @return [String]
2072
+ #
2066
2073
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLChannel AWS API Documentation
2067
2074
  #
2068
2075
  class AutoMLChannel < Struct.new(
2069
2076
  :data_source,
2070
2077
  :compression_type,
2071
- :target_attribute_name)
2078
+ :target_attribute_name,
2079
+ :content_type)
2072
2080
  SENSITIVE = []
2073
2081
  include Aws::Structure
2074
2082
  end
@@ -4361,6 +4369,7 @@ module Aws::SageMaker
4361
4369
  # },
4362
4370
  # compression_type: "None", # accepts None, Gzip
4363
4371
  # target_attribute_name: "TargetAttributeName", # required
4372
+ # content_type: "ContentType",
4364
4373
  # },
4365
4374
  # ],
4366
4375
  # output_data_config: { # required
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
49
49
  # @!group service
50
50
  module Aws::SageMaker
51
51
 
52
- GEM_VERSION = '1.111.0'
52
+ GEM_VERSION = '1.112.0'
53
53
 
54
54
  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.111.0
4
+ version: 1.112.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: 2021-12-08 00:00:00.000000000 Z
11
+ date: 2021-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core