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
Defines the possible values for an integer hyperparameter.
Constant Summary collapse
- SENSITIVE =
[]
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.
25205 25206 25207 25208 25209 25210 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 25205 class IntegerParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
#min_value ⇒ String
The minimum integer value allowed.
25205 25206 25207 25208 25209 25210 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 25205 class IntegerParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |