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

Description

 
Synopsis

Documentation

data DataQualityAppSpecification Source #

Information about the container that a data quality monitoring job runs.

See: newDataQualityAppSpecification smart constructor.

Constructors

DataQualityAppSpecification' 

Fields

Instances

Instances details
Eq DataQualityAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DataQualityAppSpecification

Read DataQualityAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DataQualityAppSpecification

Show DataQualityAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DataQualityAppSpecification

Generic DataQualityAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DataQualityAppSpecification

Associated Types

type Rep DataQualityAppSpecification :: Type -> Type #

NFData DataQualityAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DataQualityAppSpecification

Hashable DataQualityAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DataQualityAppSpecification

ToJSON DataQualityAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DataQualityAppSpecification

FromJSON DataQualityAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DataQualityAppSpecification

type Rep DataQualityAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.DataQualityAppSpecification

type Rep DataQualityAppSpecification = D1 ('MetaData "DataQualityAppSpecification" "Amazonka.SageMaker.Types.DataQualityAppSpecification" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "DataQualityAppSpecification'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "containerArguments") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: (S1 ('MetaSel ('Just "recordPreprocessorSourceUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "environment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))))) :*: (S1 ('MetaSel ('Just "containerEntrypoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: (S1 ('MetaSel ('Just "postAnalyticsProcessorSourceUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "imageUri") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newDataQualityAppSpecification Source #

Create a value of DataQualityAppSpecification 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:containerArguments:DataQualityAppSpecification', dataQualityAppSpecification_containerArguments - The arguments to send to the container that the monitoring job runs.

$sel:recordPreprocessorSourceUri:DataQualityAppSpecification', dataQualityAppSpecification_recordPreprocessorSourceUri - An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.

$sel:environment:DataQualityAppSpecification', dataQualityAppSpecification_environment - Sets the environment variables in the container that the monitoring job runs.

$sel:containerEntrypoint:DataQualityAppSpecification', dataQualityAppSpecification_containerEntrypoint - The entrypoint for a container used to run a monitoring job.

$sel:postAnalyticsProcessorSourceUri:DataQualityAppSpecification', dataQualityAppSpecification_postAnalyticsProcessorSourceUri - An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.

$sel:imageUri:DataQualityAppSpecification', dataQualityAppSpecification_imageUri - The container image that the data quality monitoring job runs.

dataQualityAppSpecification_containerArguments :: Lens' DataQualityAppSpecification (Maybe (NonEmpty Text)) Source #

The arguments to send to the container that the monitoring job runs.

dataQualityAppSpecification_recordPreprocessorSourceUri :: Lens' DataQualityAppSpecification (Maybe Text) Source #

An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.

dataQualityAppSpecification_environment :: Lens' DataQualityAppSpecification (Maybe (HashMap Text Text)) Source #

Sets the environment variables in the container that the monitoring job runs.

dataQualityAppSpecification_containerEntrypoint :: Lens' DataQualityAppSpecification (Maybe (NonEmpty Text)) Source #

The entrypoint for a container used to run a monitoring job.

dataQualityAppSpecification_postAnalyticsProcessorSourceUri :: Lens' DataQualityAppSpecification (Maybe Text) Source #

An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.

dataQualityAppSpecification_imageUri :: Lens' DataQualityAppSpecification Text Source #

The container image that the data quality monitoring job runs.