Class: Aws::Personalize::Types::CategoricalHyperParameterRange

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-personalize/types.rb

Overview

Note:

When making an API call, you may pass CategoricalHyperParameterRange data as a hash:

{
  name: "ParameterName",
  values: ["CategoricalValue"],
}

Provides the name and range of a categorical hyperparameter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the hyperparameter.

Returns:

  • (String)


580
581
582
583
584
585
# File 'lib/aws-sdk-personalize/types.rb', line 580

class CategoricalHyperParameterRange < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

A list of the categories for the hyperparameter.

Returns:

  • (Array<String>)


580
581
582
583
584
585
# File 'lib/aws-sdk-personalize/types.rb', line 580

class CategoricalHyperParameterRange < Struct.new(
  :name,
  :values)
  SENSITIVE = []
  include Aws::Structure
end