amazonka-braket-2.0: Amazon Braket SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Braket.Types.AlgorithmSpecification

Description

 
Synopsis

Documentation

data AlgorithmSpecification Source #

Defines the Amazon Braket job to be created. Specifies the container image the job uses and the paths to the Python scripts used for entry and training.

See: newAlgorithmSpecification smart constructor.

Constructors

AlgorithmSpecification' 

Fields

Instances

Instances details
FromJSON AlgorithmSpecification Source # 
Instance details

Defined in Amazonka.Braket.Types.AlgorithmSpecification

ToJSON AlgorithmSpecification Source # 
Instance details

Defined in Amazonka.Braket.Types.AlgorithmSpecification

Generic AlgorithmSpecification Source # 
Instance details

Defined in Amazonka.Braket.Types.AlgorithmSpecification

Associated Types

type Rep AlgorithmSpecification :: Type -> Type #

Read AlgorithmSpecification Source # 
Instance details

Defined in Amazonka.Braket.Types.AlgorithmSpecification

Show AlgorithmSpecification Source # 
Instance details

Defined in Amazonka.Braket.Types.AlgorithmSpecification

NFData AlgorithmSpecification Source # 
Instance details

Defined in Amazonka.Braket.Types.AlgorithmSpecification

Methods

rnf :: AlgorithmSpecification -> () #

Eq AlgorithmSpecification Source # 
Instance details

Defined in Amazonka.Braket.Types.AlgorithmSpecification

Hashable AlgorithmSpecification Source # 
Instance details

Defined in Amazonka.Braket.Types.AlgorithmSpecification

type Rep AlgorithmSpecification Source # 
Instance details

Defined in Amazonka.Braket.Types.AlgorithmSpecification

type Rep AlgorithmSpecification = D1 ('MetaData "AlgorithmSpecification" "Amazonka.Braket.Types.AlgorithmSpecification" "amazonka-braket-2.0-K4GTd9RbB3VBh6Qg8rMHaZ" 'False) (C1 ('MetaCons "AlgorithmSpecification'" 'PrefixI 'True) (S1 ('MetaSel ('Just "containerImage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ContainerImage)) :*: S1 ('MetaSel ('Just "scriptModeConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ScriptModeConfig))))

newAlgorithmSpecification :: AlgorithmSpecification Source #

Create a value of AlgorithmSpecification 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:containerImage:AlgorithmSpecification', algorithmSpecification_containerImage - The container image used to create an Amazon Braket job.

$sel:scriptModeConfig:AlgorithmSpecification', algorithmSpecification_scriptModeConfig - Configures the paths to the Python scripts used for entry and training.

algorithmSpecification_containerImage :: Lens' AlgorithmSpecification (Maybe ContainerImage) Source #

The container image used to create an Amazon Braket job.

algorithmSpecification_scriptModeConfig :: Lens' AlgorithmSpecification (Maybe ScriptModeConfig) Source #

Configures the paths to the Python scripts used for entry and training.