Show / Hide Table of Contents

Class CfnSolution.ContinuousHyperParameterRangeProperty

Provides the name and range of a continuous hyperparameter.

Inheritance
object
CfnSolution.ContinuousHyperParameterRangeProperty
Implements
CfnSolution.IContinuousHyperParameterRangeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-continuoushyperparameterrange.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-continuoushyperparameterrange.html

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

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-continuoushyperparameterrange.html#cfn-personalize-solution-continuoushyperparameterrange-maxvalue

MinValue

The minimum allowable value for the hyperparameter.

public double? MinValue { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-continuoushyperparameterrange.html#cfn-personalize-solution-continuoushyperparameterrange-minvalue

Name

The name of the hyperparameter.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-continuoushyperparameterrange.html#cfn-personalize-solution-continuoushyperparameterrange-name

Implements

CfnSolution.IContinuousHyperParameterRangeProperty
Back to top Generated by DocFX