Class: Aws::SageMaker::Types::AutoMLProblemTypeConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Note:

AutoMLProblemTypeConfig is a union - when making an API calls you must set exactly one of the members.

Note:

AutoMLProblemTypeConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AutoMLProblemTypeConfig corresponding to the set member.

A collection of settings specific to the problem type used to configure an AutoML job using the V2 API. There must be one and only one config of the following type.

Defined Under Namespace

Classes: ImageClassificationJobConfig, TextClassificationJobConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#image_classification_job_configTypes::ImageClassificationJobConfig

Settings used to configure an AutoML job using the V2 API for the image classification problem type.



2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2394

class AutoMLProblemTypeConfig < Struct.new(
  :image_classification_job_config,
  :text_classification_job_config,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ImageClassificationJobConfig < AutoMLProblemTypeConfig; end
  class TextClassificationJobConfig < AutoMLProblemTypeConfig; end
  class Unknown < AutoMLProblemTypeConfig; end
end

#text_classification_job_configTypes::TextClassificationJobConfig

Settings used to configure an AutoML job using the V2 API for the text classification problem type.



2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2394

class AutoMLProblemTypeConfig < Struct.new(
  :image_classification_job_config,
  :text_classification_job_config,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ImageClassificationJobConfig < AutoMLProblemTypeConfig; end
  class TextClassificationJobConfig < AutoMLProblemTypeConfig; end
  class Unknown < AutoMLProblemTypeConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2394
2395
2396
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2394

def unknown
  @unknown
end