libZSservicesZSamazonka-lookoutequipmentZSamazonka-lookoutequipment
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.LookoutEquipment.Types.ModelSummary

Description

 
Synopsis

Documentation

data ModelSummary Source #

Provides information about the specified ML model, including dataset and model names and ARNs, as well as status.

See: newModelSummary smart constructor.

Constructors

ModelSummary' 

Fields

Instances

Instances details
Eq ModelSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.ModelSummary

Read ModelSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.ModelSummary

Show ModelSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.ModelSummary

Generic ModelSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.ModelSummary

Associated Types

type Rep ModelSummary :: Type -> Type #

NFData ModelSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.ModelSummary

Methods

rnf :: ModelSummary -> () #

Hashable ModelSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.ModelSummary

FromJSON ModelSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.ModelSummary

type Rep ModelSummary Source # 
Instance details

Defined in Amazonka.LookoutEquipment.Types.ModelSummary

type Rep ModelSummary = D1 ('MetaData "ModelSummary" "Amazonka.LookoutEquipment.Types.ModelSummary" "libZSservicesZSamazonka-lookoutequipmentZSamazonka-lookoutequipment" 'False) (C1 ('MetaCons "ModelSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ModelStatus)) :*: (S1 ('MetaSel ('Just "datasetArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "modelArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "modelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "datasetName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newModelSummary :: ModelSummary Source #

Create a value of ModelSummary 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:status:ModelSummary', modelSummary_status - Indicates the status of the ML model.

$sel:datasetArn:ModelSummary', modelSummary_datasetArn - The Amazon Resource Name (ARN) of the dataset used to create the model.

$sel:modelArn:ModelSummary', modelSummary_modelArn - The Amazon Resource Name (ARN) of the ML model.

$sel:createdAt:ModelSummary', modelSummary_createdAt - The time at which the specific model was created.

$sel:modelName:ModelSummary', modelSummary_modelName - The name of the ML model.

$sel:datasetName:ModelSummary', modelSummary_datasetName - The name of the dataset being used for the ML model.

modelSummary_status :: Lens' ModelSummary (Maybe ModelStatus) Source #

Indicates the status of the ML model.

modelSummary_datasetArn :: Lens' ModelSummary (Maybe Text) Source #

The Amazon Resource Name (ARN) of the dataset used to create the model.

modelSummary_modelArn :: Lens' ModelSummary (Maybe Text) Source #

The Amazon Resource Name (ARN) of the ML model.

modelSummary_createdAt :: Lens' ModelSummary (Maybe UTCTime) Source #

The time at which the specific model was created.

modelSummary_datasetName :: Lens' ModelSummary (Maybe Text) Source #

The name of the dataset being used for the ML model.