Class: Aws::SageMaker::Types::IntegerParameterRangeSpecification

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#max_valueString

The maximum integer value allowed.

Returns:

  • (String)


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_valueString

The minimum integer value allowed.

Returns:

  • (String)


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