interface ExperimentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnProcessingJob.ExperimentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProcessingJob_ExperimentConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnProcessingJob.ExperimentConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnProcessingJob.ExperimentConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnProcessingJob » ExperimentConfigProperty |
Associates a SageMaker job as a trial component with an experiment and trial.
Specified when you call the CreateProcessingJob API.
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.CfnProcessingJob.ExperimentConfigProperty = {
experimentName: 'experimentName',
runName: 'runName',
trialComponentDisplayName: 'trialComponentDisplayName',
trialName: 'trialName',
};
Properties
| Name | Type | Description |
|---|---|---|
| experiment | string | The name of an existing experiment to associate with the trial component. |
| run | string | The name of the experiment run 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.
runName?
Type:
string
(optional)
The name of the experiment run to associate with the trial component.
trialComponentDisplayName?
Type:
string
(optional)
The display name for the trial component.
If this key isn't specified, the display name is the trial component name.
trialName?
Type:
string
(optional)
The name of an existing trial to associate the trial component with.
If not specified, a new trial is created.

.NET
Go
Java
Python
TypeScript