Class: Aws::Personalize::Types::IntegerHyperParameterRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::IntegerHyperParameterRange
- 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
-
#max_value ⇒ Integer
The maximum allowable value for the hyperparameter.
-
#min_value ⇒ Integer
The minimum allowable value for the hyperparameter.
-
#name ⇒ String
The name of the hyperparameter.
Instance Attribute Details
#max_value ⇒ Integer
The maximum allowable value for the hyperparameter.
3818 3819 3820 3821 3822 3823 3824 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 3818 class IntegerHyperParameterRange < Struct.new( :name, :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ Integer
The minimum allowable value for the hyperparameter.
3818 3819 3820 3821 3822 3823 3824 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 3818 class IntegerHyperParameterRange < Struct.new( :name, :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the hyperparameter.
3818 3819 3820 3821 3822 3823 3824 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 3818 class IntegerHyperParameterRange < Struct.new( :name, :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |