interface ExperimentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnProcessingJobPropsMixin.ExperimentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnProcessingJobPropsMixin_ExperimentConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnProcessingJobPropsMixin.ExperimentConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnProcessingJobPropsMixin.ExperimentConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnProcessingJobPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const experimentConfigProperty: sagemaker_mixins.CfnProcessingJobPropsMixin.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