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.Parent

Description

 
Synopsis

Documentation

data Parent Source #

The trial that a trial component is associated with and the experiment the trial is part of. A component might not be associated with a trial. A component can be associated with multiple trials.

See: newParent smart constructor.

Constructors

Parent' 

Fields

Instances

Instances details
Eq Parent Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Parent

Methods

(==) :: Parent -> Parent -> Bool #

(/=) :: Parent -> Parent -> Bool #

Read Parent Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Parent

Show Parent Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Parent

Generic Parent Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Parent

Associated Types

type Rep Parent :: Type -> Type #

Methods

from :: Parent -> Rep Parent x #

to :: Rep Parent x -> Parent #

NFData Parent Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Parent

Methods

rnf :: Parent -> () #

Hashable Parent Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Parent

Methods

hashWithSalt :: Int -> Parent -> Int #

hash :: Parent -> Int #

FromJSON Parent Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Parent

type Rep Parent Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Parent

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

newParent :: Parent Source #

Create a value of Parent 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:experimentName:Parent', parent_experimentName - The name of the experiment.

$sel:trialName:Parent', parent_trialName - The name of the trial.

parent_experimentName :: Lens' Parent (Maybe Text) Source #

The name of the experiment.

parent_trialName :: Lens' Parent (Maybe Text) Source #

The name of the trial.