interface ExperimentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnTransformJobPropsMixin.ExperimentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnTransformJobPropsMixin_ExperimentConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnTransformJobPropsMixin.ExperimentConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnTransformJobPropsMixin.ExperimentConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnTransformJobPropsMixin » 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/cfn-property-mixins';
const experimentConfigProperty: sagemaker.CfnTransformJobPropsMixin.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