Class: Aws::SageMaker::Types::IntegerParameterRangeSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::IntegerParameterRangeSpecification
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass IntegerParameterRangeSpecification data as a hash:
{
min_value: "ParameterValue", # required
max_value: "ParameterValue", # required
}
Defines the possible values for an integer hyperparameter.
Instance Attribute Summary collapse
-
#max_value ⇒ String
The maximum integer value allowed.
-
#min_value ⇒ String
The minimum integer value allowed.
Instance Attribute Details
#max_value ⇒ String
The maximum integer value allowed.
11179 11180 11181 11182 11183 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 11179 class IntegerParameterRangeSpecification < Struct.new( :min_value, :max_value) include Aws::Structure end |
#min_value ⇒ String
The minimum integer value allowed.
11179 11180 11181 11182 11183 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 11179 class IntegerParameterRangeSpecification < Struct.new( :min_value, :max_value) include Aws::Structure end |