amazonka-sagemaker-2.0: Amazon SageMaker Service 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.SageMaker.Types.MonitoringAlertSummary

Description

 
Synopsis

Documentation

data MonitoringAlertSummary Source #

Provides summary information about a monitor alert.

See: newMonitoringAlertSummary smart constructor.

Constructors

MonitoringAlertSummary' 

Fields

Instances

Instances details
FromJSON MonitoringAlertSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAlertSummary

Generic MonitoringAlertSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAlertSummary

Associated Types

type Rep MonitoringAlertSummary :: Type -> Type #

Read MonitoringAlertSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAlertSummary

Show MonitoringAlertSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAlertSummary

NFData MonitoringAlertSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAlertSummary

Methods

rnf :: MonitoringAlertSummary -> () #

Eq MonitoringAlertSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAlertSummary

Hashable MonitoringAlertSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAlertSummary

type Rep MonitoringAlertSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.MonitoringAlertSummary

type Rep MonitoringAlertSummary = D1 ('MetaData "MonitoringAlertSummary" "Amazonka.SageMaker.Types.MonitoringAlertSummary" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "MonitoringAlertSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "monitoringAlertName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "lastModifiedTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX))) :*: ((S1 ('MetaSel ('Just "alertStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 MonitoringAlertStatus) :*: S1 ('MetaSel ('Just "datapointsToAlert") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)) :*: (S1 ('MetaSel ('Just "evaluationPeriod") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural) :*: S1 ('MetaSel ('Just "actions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 MonitoringAlertActions)))))

newMonitoringAlertSummary Source #

Create a value of MonitoringAlertSummary 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:monitoringAlertName:MonitoringAlertSummary', monitoringAlertSummary_monitoringAlertName - The name of a monitoring alert.

$sel:creationTime:MonitoringAlertSummary', monitoringAlertSummary_creationTime - A timestamp that indicates when a monitor alert was created.

$sel:lastModifiedTime:MonitoringAlertSummary', monitoringAlertSummary_lastModifiedTime - A timestamp that indicates when a monitor alert was last updated.

$sel:alertStatus:MonitoringAlertSummary', monitoringAlertSummary_alertStatus - The current status of an alert.

$sel:datapointsToAlert:MonitoringAlertSummary', monitoringAlertSummary_datapointsToAlert - Within EvaluationPeriod, how many execution failures will raise an alert.

$sel:evaluationPeriod:MonitoringAlertSummary', monitoringAlertSummary_evaluationPeriod - The number of most recent monitoring executions to consider when evaluating alert status.

$sel:actions:MonitoringAlertSummary', monitoringAlertSummary_actions - A list of alert actions taken in response to an alert going into InAlert status.

monitoringAlertSummary_creationTime :: Lens' MonitoringAlertSummary UTCTime Source #

A timestamp that indicates when a monitor alert was created.

monitoringAlertSummary_lastModifiedTime :: Lens' MonitoringAlertSummary UTCTime Source #

A timestamp that indicates when a monitor alert was last updated.

monitoringAlertSummary_datapointsToAlert :: Lens' MonitoringAlertSummary Natural Source #

Within EvaluationPeriod, how many execution failures will raise an alert.

monitoringAlertSummary_evaluationPeriod :: Lens' MonitoringAlertSummary Natural Source #

The number of most recent monitoring executions to consider when evaluating alert status.

monitoringAlertSummary_actions :: Lens' MonitoringAlertSummary MonitoringAlertActions Source #

A list of alert actions taken in response to an alert going into InAlert status.