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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Defines the possible values for an integer hyperparameter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_valueString

The maximum integer value allowed.

Returns:

  • (String)


23838
23839
23840
23841
23842
23843
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 23838

class IntegerParameterRangeSpecification < Struct.new(
  :min_value,
  :max_value)
  SENSITIVE = []
  include Aws::Structure
end

#min_valueString

The minimum integer value allowed.

Returns:

  • (String)


23838
23839
23840
23841
23842
23843
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 23838

class IntegerParameterRangeSpecification < Struct.new(
  :min_value,
  :max_value)
  SENSITIVE = []
  include Aws::Structure
end