Class: Aws::ForecastService::Types::CategoricalParameterRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::CategoricalParameterRange
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Specifies a categorical hyperparameter and it's range of tunable values. This object is part of the ParameterRanges object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the categorical hyperparameter to tune.
-
#values ⇒ Array<String>
A list of the tunable categories for the hyperparameter.
Instance Attribute Details
#name ⇒ String
The name of the categorical hyperparameter to tune.
358 359 360 361 362 363 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 358 class CategoricalParameterRange < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
A list of the tunable categories for the hyperparameter.
358 359 360 361 362 363 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 358 class CategoricalParameterRange < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |