aws-cdk-lib.aws_personalize.CfnSolution.AlgorithmHyperParameterRangesProperty

interface AlgorithmHyperParameterRangesProperty

LanguageType name
.NETAmazon.CDK.AWS.Personalize.CfnSolution.AlgorithmHyperParameterRangesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspersonalize#CfnSolution_AlgorithmHyperParameterRangesProperty
Javasoftware.amazon.awscdk.services.personalize.CfnSolution.AlgorithmHyperParameterRangesProperty
Pythonaws_cdk.aws_personalize.CfnSolution.AlgorithmHyperParameterRangesProperty
TypeScript aws-cdk-lib » aws_personalize » CfnSolution » AlgorithmHyperParameterRangesProperty

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_personalize as personalize } from 'aws-cdk-lib';
const algorithmHyperParameterRangesProperty: personalize.CfnSolution.AlgorithmHyperParameterRangesProperty = {
  categoricalHyperParameterRanges: [{
    name: 'name',
    values: ['values'],
  }],
  continuousHyperParameterRanges: [{
    maxValue: 123,
    minValue: 123,
    name: 'name',
  }],
  integerHyperParameterRanges: [{
    maxValue: 123,
    minValue: 123,
    name: 'name',
  }],
};

Properties

NameTypeDescription
categoricalHyperParameterRanges?IResolvable | IResolvable | CategoricalHyperParameterRangeProperty[]CfnSolution.AlgorithmHyperParameterRangesProperty.CategoricalHyperParameterRanges.
continuousHyperParameterRanges?IResolvable | IResolvable | ContinuousHyperParameterRangeProperty[]CfnSolution.AlgorithmHyperParameterRangesProperty.ContinuousHyperParameterRanges.
integerHyperParameterRanges?IResolvable | IResolvable | IntegerHyperParameterRangeProperty[]CfnSolution.AlgorithmHyperParameterRangesProperty.IntegerHyperParameterRanges.

categoricalHyperParameterRanges?

Type: IResolvable | IResolvable | CategoricalHyperParameterRangeProperty[] (optional)

CfnSolution.AlgorithmHyperParameterRangesProperty.CategoricalHyperParameterRanges.


continuousHyperParameterRanges?

Type: IResolvable | IResolvable | ContinuousHyperParameterRangeProperty[] (optional)

CfnSolution.AlgorithmHyperParameterRangesProperty.ContinuousHyperParameterRanges.


integerHyperParameterRanges?

Type: IResolvable | IResolvable | IntegerHyperParameterRangeProperty[] (optional)

CfnSolution.AlgorithmHyperParameterRangesProperty.IntegerHyperParameterRanges.