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
permalink #max_value ⇒ String
The maximum integer value allowed.
26342 26343 26344 26345 26346 26347 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 26342 class IntegerParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |
permalink #min_value ⇒ String
The minimum integer value allowed.
26342 26343 26344 26345 26346 26347 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 26342 class IntegerParameterRangeSpecification < Struct.new( :min_value, :max_value) SENSITIVE = [] include Aws::Structure end |