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

Description

 
Synopsis

Documentation

data TrialComponentArtifact Source #

Represents an input or output artifact of a trial component. You specify TrialComponentArtifact as part of the InputArtifacts and OutputArtifacts parameters in the CreateTrialComponent request.

Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types. Examples of output artifacts are metrics, snapshots, logs, and images.

See: newTrialComponentArtifact smart constructor.

Constructors

TrialComponentArtifact' 

Fields

  • mediaType :: Maybe Text

    The media type of the artifact, which indicates the type of data in the artifact file. The media type consists of a type and a subtype concatenated with a slash (/) character, for example, text/csv, image/jpeg, and s3/uri. The type specifies the category of the media. The subtype specifies the kind of data.

  • value :: Text

    The location of the artifact.

Instances

Instances details
Eq TrialComponentArtifact Source # 
Instance details

Defined in Amazonka.SageMaker.Types.TrialComponentArtifact

Read TrialComponentArtifact Source # 
Instance details

Defined in Amazonka.SageMaker.Types.TrialComponentArtifact

Show TrialComponentArtifact Source # 
Instance details

Defined in Amazonka.SageMaker.Types.TrialComponentArtifact

Generic TrialComponentArtifact Source # 
Instance details

Defined in Amazonka.SageMaker.Types.TrialComponentArtifact

Associated Types

type Rep TrialComponentArtifact :: Type -> Type #

NFData TrialComponentArtifact Source # 
Instance details

Defined in Amazonka.SageMaker.Types.TrialComponentArtifact

Methods

rnf :: TrialComponentArtifact -> () #

Hashable TrialComponentArtifact Source # 
Instance details

Defined in Amazonka.SageMaker.Types.TrialComponentArtifact

ToJSON TrialComponentArtifact Source # 
Instance details

Defined in Amazonka.SageMaker.Types.TrialComponentArtifact

FromJSON TrialComponentArtifact Source # 
Instance details

Defined in Amazonka.SageMaker.Types.TrialComponentArtifact

type Rep TrialComponentArtifact Source # 
Instance details

Defined in Amazonka.SageMaker.Types.TrialComponentArtifact

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

newTrialComponentArtifact Source #

Create a value of TrialComponentArtifact 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:mediaType:TrialComponentArtifact', trialComponentArtifact_mediaType - The media type of the artifact, which indicates the type of data in the artifact file. The media type consists of a type and a subtype concatenated with a slash (/) character, for example, text/csv, image/jpeg, and s3/uri. The type specifies the category of the media. The subtype specifies the kind of data.

$sel:value:TrialComponentArtifact', trialComponentArtifact_value - The location of the artifact.

trialComponentArtifact_mediaType :: Lens' TrialComponentArtifact (Maybe Text) Source #

The media type of the artifact, which indicates the type of data in the artifact file. The media type consists of a type and a subtype concatenated with a slash (/) character, for example, text/csv, image/jpeg, and s3/uri. The type specifies the category of the media. The subtype specifies the kind of data.