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
Note:
When making an API call, you may pass CategoricalParameterRange data as a hash:
{
name: "Name", # required
values: ["Value"], # required
}
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.
345 346 347 348 349 350 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 345 class CategoricalParameterRange < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
A list of the tunable categories for the hyperparameter.
345 346 347 348 349 350 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 345 class CategoricalParameterRange < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |