interface HyperParameterSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnAlgorithmPropsMixin.HyperParameterSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnAlgorithmPropsMixin_HyperParameterSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnAlgorithmPropsMixin.HyperParameterSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnAlgorithmPropsMixin.HyperParameterSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnAlgorithmPropsMixin » HyperParameterSpecificationProperty |
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 hyperParameterSpecificationProperty: sagemaker.CfnAlgorithmPropsMixin.HyperParameterSpecificationProperty = {
defaultValue: 'defaultValue',
description: 'description',
isRequired: false,
isTunable: false,
name: 'name',
range: {
categoricalParameterRangeSpecification: {
values: ['values'],
},
continuousParameterRangeSpecification: {
maxValue: 'maxValue',
minValue: 'minValue',
},
integerParameterRangeSpecification: {
maxValue: 'maxValue',
minValue: 'minValue',
},
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | |
| description? | string | |
| is | boolean | IResolvable | |
| is | boolean | IResolvable | |
| name? | string | |
| range? | IResolvable | Parameter | |
| type? | string |
defaultValue?
Type:
string
(optional)
description?
Type:
string
(optional)
isRequired?
Type:
boolean | IResolvable
(optional)
isTunable?
Type:
boolean | IResolvable
(optional)
name?
Type:
string
(optional)
range?
Type:
IResolvable | Parameter
(optional)
type?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript