Class: Aws::Personalize::Types::IntegerHyperParameterRange

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

Overview

Provides the name and range of an integer-valued hyperparameter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_valueInteger

The maximum allowable value for the hyperparameter.

Returns:

  • (Integer)


3589
3590
3591
3592
3593
3594
3595
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 3589

class IntegerHyperParameterRange < Struct.new(
  :name,
  :min_value,
  :max_value)
  SENSITIVE = []
  include Aws::Structure
end

#min_valueInteger

The minimum allowable value for the hyperparameter.

Returns:

  • (Integer)


3589
3590
3591
3592
3593
3594
3595
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 3589

class IntegerHyperParameterRange < Struct.new(
  :name,
  :min_value,
  :max_value)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the hyperparameter.

Returns:

  • (String)


3589
3590
3591
3592
3593
3594
3595
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 3589

class IntegerHyperParameterRange < Struct.new(
  :name,
  :min_value,
  :max_value)
  SENSITIVE = []
  include Aws::Structure
end