interface ParameterRangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnAlgorithmPropsMixin.ParameterRangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnAlgorithmPropsMixin_ParameterRangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnAlgorithmPropsMixin.ParameterRangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnAlgorithmPropsMixin.ParameterRangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnAlgorithmPropsMixin » 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/cfn-property-mixins';
const parameterRangeProperty: sagemaker.CfnAlgorithmPropsMixin.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