interface IntegerParameterRangeSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnAlgorithm.IntegerParameterRangeSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAlgorithm_IntegerParameterRangeSpecificationProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnAlgorithm.IntegerParameterRangeSpecificationProperty |
Python | aws_cdk.aws_sagemaker.CfnAlgorithm.IntegerParameterRangeSpecificationProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnAlgorithm » IntegerParameterRangeSpecificationProperty |
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 integerParameterRangeSpecificationProperty: sagemaker.CfnAlgorithm.IntegerParameterRangeSpecificationProperty = {
maxValue: 'maxValue',
minValue: 'minValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| max | string | |
| min | string |
maxValue
Type:
string
minValue
Type:
string

.NET
Go
Java
Python
TypeScript