interface ExperimentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnTransformJob.ExperimentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnTransformJob_ExperimentConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnTransformJob.ExperimentConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnTransformJob.ExperimentConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnTransformJob » ExperimentConfigProperty |
Associates a SageMaker job as a trial component with an experiment and trial.
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 experimentConfigProperty: sagemaker.CfnTransformJob.ExperimentConfigProperty = {
experimentName: 'experimentName',
trialComponentDisplayName: 'trialComponentDisplayName',
trialName: 'trialName',
};
Properties
| Name | Type | Description |
|---|---|---|
| experiment | string | The name of an existing experiment to associate with the trial component. |
| trial | string | The display name for the trial component. |
| trial | string | The name of an existing trial to associate the trial component with. |
experimentName?
Type:
string
(optional)
The name of an existing experiment to associate with the trial component.
trialComponentDisplayName?
Type:
string
(optional)
The display name for the trial component.
trialName?
Type:
string
(optional)
The name of an existing trial to associate the trial component with.

.NET
Go
Java
Python
TypeScript