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

Description

 
Synopsis

Documentation

data AppSpecification Source #

Configuration to run a processing job in a specified container image.

See: newAppSpecification smart constructor.

Constructors

AppSpecification' 

Fields

Instances

Instances details
Eq AppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AppSpecification

Read AppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AppSpecification

Show AppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AppSpecification

Generic AppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AppSpecification

Associated Types

type Rep AppSpecification :: Type -> Type #

NFData AppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AppSpecification

Methods

rnf :: AppSpecification -> () #

Hashable AppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AppSpecification

ToJSON AppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AppSpecification

FromJSON AppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AppSpecification

type Rep AppSpecification Source # 
Instance details

Defined in Amazonka.SageMaker.Types.AppSpecification

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

newAppSpecification Source #

Create a value of AppSpecification 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:AppSpecification', appSpecification_containerArguments - The arguments for a container used to run a processing job.

$sel:containerEntrypoint:AppSpecification', appSpecification_containerEntrypoint - The entrypoint for a container used to run a processing job.

$sel:imageUri:AppSpecification', appSpecification_imageUri - The container image to be run by the processing job.

appSpecification_containerArguments :: Lens' AppSpecification (Maybe (NonEmpty Text)) Source #

The arguments for a container used to run a processing job.

appSpecification_containerEntrypoint :: Lens' AppSpecification (Maybe (NonEmpty Text)) Source #

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

appSpecification_imageUri :: Lens' AppSpecification Text Source #

The container image to be run by the processing job.