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

Description

 
Synopsis

Documentation

data MonitoringAppSpecification Source #

Container image configuration object for the monitoring job.

See: newMonitoringAppSpecification smart constructor.

Constructors

MonitoringAppSpecification' 

Fields

Instances

Instances details
Eq MonitoringAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAppSpecification

Read MonitoringAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAppSpecification

Show MonitoringAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAppSpecification

Generic MonitoringAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAppSpecification

Associated Types

type Rep MonitoringAppSpecification :: Type -> Type #

NFData MonitoringAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAppSpecification

Hashable MonitoringAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAppSpecification

ToJSON MonitoringAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAppSpecification

FromJSON MonitoringAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAppSpecification

type Rep MonitoringAppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAppSpecification

type Rep MonitoringAppSpecification = D1 ('MetaData "MonitoringAppSpecification" "Amazonka.SageMaker.Types.MonitoringAppSpecification" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "MonitoringAppSpecification'" '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 "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)))))

newMonitoringAppSpecification Source #

Create a value of MonitoringAppSpecification 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:MonitoringAppSpecification', monitoringAppSpecification_containerArguments - An array of arguments for the container used to run the monitoring job.

$sel:recordPreprocessorSourceUri:MonitoringAppSpecification', monitoringAppSpecification_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:containerEntrypoint:MonitoringAppSpecification', monitoringAppSpecification_containerEntrypoint - Specifies the entrypoint for a container used to run the monitoring job.

$sel:postAnalyticsProcessorSourceUri:MonitoringAppSpecification', monitoringAppSpecification_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:MonitoringAppSpecification', monitoringAppSpecification_imageUri - The container image to be run by the monitoring job.

monitoringAppSpecification_containerArguments :: Lens' MonitoringAppSpecification (Maybe (NonEmpty Text)) Source #

An array of arguments for the container used to run the monitoring job.

monitoringAppSpecification_recordPreprocessorSourceUri :: Lens' MonitoringAppSpecification (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.

monitoringAppSpecification_containerEntrypoint :: Lens' MonitoringAppSpecification (Maybe (NonEmpty Text)) Source #

Specifies the entrypoint for a container used to run the monitoring job.

monitoringAppSpecification_postAnalyticsProcessorSourceUri :: Lens' MonitoringAppSpecification (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.

monitoringAppSpecification_imageUri :: Lens' MonitoringAppSpecification Text Source #

The container image to be run by the monitoring job.