libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SageMaker.Types.ExperimentConfig

Description

 
Synopsis

Documentation

data ExperimentConfig Source #

Associates a SageMaker job as a trial component with an experiment and trial. Specified when you call the following APIs:

  • CreateProcessingJob
  • CreateTrainingJob
  • CreateTransformJob

See: newExperimentConfig smart constructor.

Constructors

ExperimentConfig' 

Fields

  • trialComponentDisplayName :: Maybe Text

    The display name for the trial component. If this key isn't specified, the display name is the trial component name.

  • experimentName :: Maybe Text

    The name of an existing experiment to associate the trial component with.

  • trialName :: Maybe Text

    The name of an existing trial to associate the trial component with. If not specified, a new trial is created.

Instances

Instances details
Eq ExperimentConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ExperimentConfig

Read ExperimentConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ExperimentConfig

Show ExperimentConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ExperimentConfig

Generic ExperimentConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ExperimentConfig

Associated Types

type Rep ExperimentConfig :: Type -> Type #

NFData ExperimentConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ExperimentConfig

Methods

rnf :: ExperimentConfig -> () #

Hashable ExperimentConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ExperimentConfig

ToJSON ExperimentConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ExperimentConfig

FromJSON ExperimentConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ExperimentConfig

type Rep ExperimentConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ExperimentConfig

type Rep ExperimentConfig = D1 ('MetaData "ExperimentConfig" "Amazonka.SageMaker.Types.ExperimentConfig" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "ExperimentConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "trialComponentDisplayName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "experimentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "trialName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newExperimentConfig :: ExperimentConfig Source #

Create a value of ExperimentConfig with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:trialComponentDisplayName:ExperimentConfig', experimentConfig_trialComponentDisplayName - The display name for the trial component. If this key isn't specified, the display name is the trial component name.

$sel:experimentName:ExperimentConfig', experimentConfig_experimentName - The name of an existing experiment to associate the trial component with.

$sel:trialName:ExperimentConfig', experimentConfig_trialName - The name of an existing trial to associate the trial component with. If not specified, a new trial is created.

experimentConfig_trialComponentDisplayName :: Lens' ExperimentConfig (Maybe Text) Source #

The display name for the trial component. If this key isn't specified, the display name is the trial component name.

experimentConfig_experimentName :: Lens' ExperimentConfig (Maybe Text) Source #

The name of an existing experiment to associate the trial component with.

experimentConfig_trialName :: Lens' ExperimentConfig (Maybe Text) Source #

The name of an existing trial to associate the trial component with. If not specified, a new trial is created.