Class: Aws::SageMaker::Types::CategoricalParameterRangeSpecification

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 CategoricalParameterRangeSpecification data as a hash:

{
  values: ["ParameterValue"], # required
}

Defines the possible values for a categorical hyperparameter.

Instance Attribute Summary collapse

Instance Attribute Details

#valuesArray<String>

The allowed categories for the hyperparameter.

Returns:

  • (Array<String>)


1358
1359
1360
1361
# File 'lib/aws-sdk-sagemaker/types.rb', line 1358

class CategoricalParameterRangeSpecification < Struct.new(
  :values)
  include Aws::Structure
end