Class: Aws::SageMaker::Types::AutoMLProblemTypeResolvedAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AutoMLProblemTypeResolvedAttributes
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
AutoMLProblemTypeResolvedAttributes is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AutoMLProblemTypeResolvedAttributes corresponding to the set member.
Stores resolved attributes specific to the problem type of an AutoML job V2.
Direct Known Subclasses
TabularResolvedAttributes, TextGenerationResolvedAttributes, Unknown
Defined Under Namespace
Classes: TabularResolvedAttributes, TextGenerationResolvedAttributes, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tabular_resolved_attributes ⇒ Types::TabularResolvedAttributes
The resolved attributes for the tabular problem type.
-
#text_generation_resolved_attributes ⇒ Types::TextGenerationResolvedAttributes
The resolved attributes for the text generation problem type.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#tabular_resolved_attributes ⇒ Types::TabularResolvedAttributes
The resolved attributes for the tabular problem type.
2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2870 class AutoMLProblemTypeResolvedAttributes < Struct.new( :tabular_resolved_attributes, :text_generation_resolved_attributes, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TabularResolvedAttributes < AutoMLProblemTypeResolvedAttributes; end class TextGenerationResolvedAttributes < AutoMLProblemTypeResolvedAttributes; end class Unknown < AutoMLProblemTypeResolvedAttributes; end end |
#text_generation_resolved_attributes ⇒ Types::TextGenerationResolvedAttributes
The resolved attributes for the text generation problem type.
2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2870 class AutoMLProblemTypeResolvedAttributes < Struct.new( :tabular_resolved_attributes, :text_generation_resolved_attributes, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TabularResolvedAttributes < AutoMLProblemTypeResolvedAttributes; end class TextGenerationResolvedAttributes < AutoMLProblemTypeResolvedAttributes; end class Unknown < AutoMLProblemTypeResolvedAttributes; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2870 2871 2872 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2870 def unknown @unknown end |