interface TrialComponentParameterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnTrialComponentPropsMixin.TrialComponentParameterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnTrialComponentPropsMixin_TrialComponentParameterValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnTrialComponentPropsMixin.TrialComponentParameterValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnTrialComponentPropsMixin.TrialComponentParameterValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnTrialComponentPropsMixin » TrialComponentParameterValueProperty |
The value of a hyperparameter.
Only one of StringValue or NumberValue can be specified.
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 trialComponentParameterValueProperty: sagemaker.CfnTrialComponentPropsMixin.TrialComponentParameterValueProperty = {
numberValue: 123,
stringValue: 'stringValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| number | number | The numeric value of a numeric hyperparameter. |
| string | string | The string value of a categorical hyperparameter. |
numberValue?
Type:
number
(optional)
The numeric value of a numeric hyperparameter.
stringValue?
Type:
string
(optional)
The string value of a categorical hyperparameter.

.NET
Go
Java
Python
TypeScript