Class CfnSolution.ContinuousHyperParameterRangeProperty
Provides the name and range of a continuous hyperparameter.
Inherited Members
Namespace: Amazon.CDK.AWS.Personalize
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSolution.ContinuousHyperParameterRangeProperty : CfnSolution.IContinuousHyperParameterRangeProperty
Syntax (vb)
Public Class CfnSolution.ContinuousHyperParameterRangeProperty Implements CfnSolution.IContinuousHyperParameterRangeProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Personalize;
var continuousHyperParameterRangeProperty = new ContinuousHyperParameterRangeProperty {
MaxValue = 123,
MinValue = 123,
Name = "name"
};
Synopsis
Constructors
| ContinuousHyperParameterRangeProperty() | Provides the name and range of a continuous hyperparameter. |
Properties
| MaxValue | The maximum allowable value for the hyperparameter. |
| MinValue | The minimum allowable value for the hyperparameter. |
| Name | The name of the hyperparameter. |
Constructors
ContinuousHyperParameterRangeProperty()
Provides the name and range of a continuous hyperparameter.
public ContinuousHyperParameterRangeProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Personalize;
var continuousHyperParameterRangeProperty = new ContinuousHyperParameterRangeProperty {
MaxValue = 123,
MinValue = 123,
Name = "name"
};
Properties
MaxValue
The maximum allowable value for the hyperparameter.
public double? MaxValue { get; set; }
Property Value
Remarks
MinValue
The minimum allowable value for the hyperparameter.
public double? MinValue { get; set; }
Property Value
Remarks
Name
The name of the hyperparameter.
public string? Name { get; set; }