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

Description

 
Synopsis

Documentation

data AlgorithmValidationProfile Source #

Defines a training job and a batch transform job that Amazon SageMaker runs to validate your algorithm.

The data provided in the validation profile is made available to your buyers on Amazon Web Services Marketplace.

See: newAlgorithmValidationProfile smart constructor.

Constructors

AlgorithmValidationProfile' 

Fields

Instances

Instances details
Eq AlgorithmValidationProfile Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AlgorithmValidationProfile

Read AlgorithmValidationProfile Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AlgorithmValidationProfile

Show AlgorithmValidationProfile Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AlgorithmValidationProfile

Generic AlgorithmValidationProfile Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AlgorithmValidationProfile

Associated Types

type Rep AlgorithmValidationProfile :: Type -> Type #

NFData AlgorithmValidationProfile Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AlgorithmValidationProfile

Hashable AlgorithmValidationProfile Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AlgorithmValidationProfile

ToJSON AlgorithmValidationProfile Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AlgorithmValidationProfile

FromJSON AlgorithmValidationProfile Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AlgorithmValidationProfile

type Rep AlgorithmValidationProfile Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AlgorithmValidationProfile

type Rep AlgorithmValidationProfile = D1 ('MetaData "AlgorithmValidationProfile" "Amazonka.SageMaker.Types.AlgorithmValidationProfile" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "AlgorithmValidationProfile'" 'PrefixI 'True) (S1 ('MetaSel ('Just "transformJobDefinition") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TransformJobDefinition)) :*: (S1 ('MetaSel ('Just "profileName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "trainingJobDefinition") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 TrainingJobDefinition))))

newAlgorithmValidationProfile Source #

Create a value of AlgorithmValidationProfile 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:transformJobDefinition:AlgorithmValidationProfile', algorithmValidationProfile_transformJobDefinition - The TransformJobDefinition object that describes the transform job that Amazon SageMaker runs to validate your algorithm.

$sel:profileName:AlgorithmValidationProfile', algorithmValidationProfile_profileName - The name of the profile for the algorithm. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).

$sel:trainingJobDefinition:AlgorithmValidationProfile', algorithmValidationProfile_trainingJobDefinition - The TrainingJobDefinition object that describes the training job that Amazon SageMaker runs to validate your algorithm.

algorithmValidationProfile_transformJobDefinition :: Lens' AlgorithmValidationProfile (Maybe TransformJobDefinition) Source #

The TransformJobDefinition object that describes the transform job that Amazon SageMaker runs to validate your algorithm.

algorithmValidationProfile_profileName :: Lens' AlgorithmValidationProfile Text Source #

The name of the profile for the algorithm. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).

algorithmValidationProfile_trainingJobDefinition :: Lens' AlgorithmValidationProfile TrainingJobDefinition Source #

The TrainingJobDefinition object that describes the training job that Amazon SageMaker runs to validate your algorithm.