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

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

Overview

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)


820
821
822
823
824
825
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 820

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

#valuesArray<String>

A list of the categories for the hyperparameter.

Returns:

  • (Array<String>)


820
821
822
823
824
825
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 820

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