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

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 IntegerHyperParameterRange data as a hash:

{
  name: "ParameterName",
  min_value: 1,
  max_value: 1,
}

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)


2853
2854
2855
2856
2857
2858
2859
# File 'lib/aws-sdk-personalize/types.rb', line 2853

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)


2853
2854
2855
2856
2857
2858
2859
# File 'lib/aws-sdk-personalize/types.rb', line 2853

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

#nameString

The name of the hyperparameter.

Returns:

  • (String)


2853
2854
2855
2856
2857
2858
2859
# File 'lib/aws-sdk-personalize/types.rb', line 2853

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