libZSservicesZSamazonka-sagemaker-edgeZSamazonka-sagemaker-edge
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.SageMakerEdge.Types.Model

Description

 
Synopsis

Documentation

data Model Source #

Information about a model deployed on an edge device that is registered with SageMaker Edge Manager.

See: newModel smart constructor.

Constructors

Model' 

Fields

Instances

Instances details
Eq Model Source # 
Instance details

Defined in Amazonka.SageMakerEdge.Types.Model

Methods

(==) :: Model -> Model -> Bool #

(/=) :: Model -> Model -> Bool #

Read Model Source # 
Instance details

Defined in Amazonka.SageMakerEdge.Types.Model

Show Model Source # 
Instance details

Defined in Amazonka.SageMakerEdge.Types.Model

Methods

showsPrec :: Int -> Model -> ShowS #

show :: Model -> String #

showList :: [Model] -> ShowS #

Generic Model Source # 
Instance details

Defined in Amazonka.SageMakerEdge.Types.Model

Associated Types

type Rep Model :: Type -> Type #

Methods

from :: Model -> Rep Model x #

to :: Rep Model x -> Model #

NFData Model Source # 
Instance details

Defined in Amazonka.SageMakerEdge.Types.Model

Methods

rnf :: Model -> () #

Hashable Model Source # 
Instance details

Defined in Amazonka.SageMakerEdge.Types.Model

Methods

hashWithSalt :: Int -> Model -> Int #

hash :: Model -> Int #

ToJSON Model Source # 
Instance details

Defined in Amazonka.SageMakerEdge.Types.Model

type Rep Model Source # 
Instance details

Defined in Amazonka.SageMakerEdge.Types.Model

type Rep Model = D1 ('MetaData "Model" "Amazonka.SageMakerEdge.Types.Model" "libZSservicesZSamazonka-sagemaker-edgeZSamazonka-sagemaker-edge" 'False) (C1 ('MetaCons "Model'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "modelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelMetrics") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [EdgeMetric]))) :*: (S1 ('MetaSel ('Just "modelVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "latestInference") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "latestSampleTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX))))))

newModel :: Model Source #

Create a value of Model 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:modelName:Model', model_modelName - The name of the model.

$sel:modelMetrics:Model', model_modelMetrics - Information required for model metrics.

$sel:modelVersion:Model', model_modelVersion - The version of the model.

$sel:latestInference:Model', model_latestInference - The timestamp of the last inference that was made.

$sel:latestSampleTime:Model', model_latestSampleTime - The timestamp of the last data sample taken.

model_modelName :: Lens' Model (Maybe Text) Source #

The name of the model.

model_modelMetrics :: Lens' Model (Maybe [EdgeMetric]) Source #

Information required for model metrics.

model_modelVersion :: Lens' Model (Maybe Text) Source #

The version of the model.

model_latestInference :: Lens' Model (Maybe UTCTime) Source #

The timestamp of the last inference that was made.

model_latestSampleTime :: Lens' Model (Maybe UTCTime) Source #

The timestamp of the last data sample taken.