Class CfnTransformJobPropsMixin.ExperimentConfigProperty
Associates a SageMaker job as a trial component with an experiment and trial.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTransformJobPropsMixin.ExperimentConfigProperty : CfnTransformJobPropsMixin.IExperimentConfigProperty
Syntax (vb)
Public Class CfnTransformJobPropsMixin.ExperimentConfigProperty Implements CfnTransformJobPropsMixin.IExperimentConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SageMaker;
var experimentConfigProperty = new ExperimentConfigProperty {
ExperimentName = "experimentName",
TrialComponentDisplayName = "trialComponentDisplayName",
TrialName = "trialName"
};
Synopsis
Constructors
| ExperimentConfigProperty() | Associates a SageMaker job as a trial component with an experiment and trial. |
Properties
| ExperimentName | The name of an existing experiment to associate with the trial component. |
| TrialComponentDisplayName | The display name for the trial component. |
| TrialName | The name of an existing trial to associate the trial component with. |
Constructors
ExperimentConfigProperty()
Associates a SageMaker job as a trial component with an experiment and trial.
public ExperimentConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SageMaker;
var experimentConfigProperty = new ExperimentConfigProperty {
ExperimentName = "experimentName",
TrialComponentDisplayName = "trialComponentDisplayName",
TrialName = "trialName"
};
Properties
ExperimentName
The name of an existing experiment to associate with the trial component.
public string? ExperimentName { get; set; }
Property Value
Remarks
TrialComponentDisplayName
The display name for the trial component.
public string? TrialComponentDisplayName { get; set; }
Property Value
Remarks
TrialName
The name of an existing trial to associate the trial component with.
public string? TrialName { get; set; }