interface ParameterRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnAlgorithm.ParameterRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAlgorithm_ParameterRangeProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnAlgorithm.ParameterRangeProperty |
Python | aws_cdk.aws_sagemaker.CfnAlgorithm.ParameterRangeProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnAlgorithm » ParameterRangeProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const parameterRangeProperty: sagemaker.CfnAlgorithm.ParameterRangeProperty = {
categoricalParameterRangeSpecification: {
values: ['values'],
},
continuousParameterRangeSpecification: {
maxValue: 'maxValue',
minValue: 'minValue',
},
integerParameterRangeSpecification: {
maxValue: 'maxValue',
minValue: 'minValue',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| categorical | IResolvable | Categorical | |
| continuous | IResolvable | Continuous | |
| integer | IResolvable | Integer |
categoricalParameterRangeSpecification?
Type:
IResolvable | Categorical
(optional)
continuousParameterRangeSpecification?
Type:
IResolvable | Continuous
(optional)
integerParameterRangeSpecification?
Type:
IResolvable | Integer
(optional)

.NET
Go
Java
Python
TypeScript