{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.SageMaker.Types.MonitoringScheduleSummary
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.SageMaker.Types.MonitoringScheduleSummary where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
import Amazonka.SageMaker.Types.MonitoringType
import Amazonka.SageMaker.Types.ScheduleStatus

-- | Summarizes the monitoring schedule.
--
-- /See:/ 'newMonitoringScheduleSummary' smart constructor.
data MonitoringScheduleSummary = MonitoringScheduleSummary'
  { -- | The name of the endpoint using the monitoring schedule.
    MonitoringScheduleSummary -> Maybe Text
endpointName :: Prelude.Maybe Prelude.Text,
    -- | The name of the monitoring job definition that the schedule is for.
    MonitoringScheduleSummary -> Maybe Text
monitoringJobDefinitionName :: Prelude.Maybe Prelude.Text,
    -- | The type of the monitoring job definition that the schedule is for.
    MonitoringScheduleSummary -> Maybe MonitoringType
monitoringType :: Prelude.Maybe MonitoringType,
    -- | The name of the monitoring schedule.
    MonitoringScheduleSummary -> Text
monitoringScheduleName :: Prelude.Text,
    -- | The Amazon Resource Name (ARN) of the monitoring schedule.
    MonitoringScheduleSummary -> Text
monitoringScheduleArn :: Prelude.Text,
    -- | The creation time of the monitoring schedule.
    MonitoringScheduleSummary -> POSIX
creationTime :: Data.POSIX,
    -- | The last time the monitoring schedule was modified.
    MonitoringScheduleSummary -> POSIX
lastModifiedTime :: Data.POSIX,
    -- | The status of the monitoring schedule.
    MonitoringScheduleSummary -> ScheduleStatus
monitoringScheduleStatus :: ScheduleStatus
  }
  deriving (MonitoringScheduleSummary -> MonitoringScheduleSummary -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: MonitoringScheduleSummary -> MonitoringScheduleSummary -> Bool
$c/= :: MonitoringScheduleSummary -> MonitoringScheduleSummary -> Bool
== :: MonitoringScheduleSummary -> MonitoringScheduleSummary -> Bool
$c== :: MonitoringScheduleSummary -> MonitoringScheduleSummary -> Bool
Prelude.Eq, ReadPrec [MonitoringScheduleSummary]
ReadPrec MonitoringScheduleSummary
Int -> ReadS MonitoringScheduleSummary
ReadS [MonitoringScheduleSummary]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [MonitoringScheduleSummary]
$creadListPrec :: ReadPrec [MonitoringScheduleSummary]
readPrec :: ReadPrec MonitoringScheduleSummary
$creadPrec :: ReadPrec MonitoringScheduleSummary
readList :: ReadS [MonitoringScheduleSummary]
$creadList :: ReadS [MonitoringScheduleSummary]
readsPrec :: Int -> ReadS MonitoringScheduleSummary
$creadsPrec :: Int -> ReadS MonitoringScheduleSummary
Prelude.Read, Int -> MonitoringScheduleSummary -> ShowS
[MonitoringScheduleSummary] -> ShowS
MonitoringScheduleSummary -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [MonitoringScheduleSummary] -> ShowS
$cshowList :: [MonitoringScheduleSummary] -> ShowS
show :: MonitoringScheduleSummary -> String
$cshow :: MonitoringScheduleSummary -> String
showsPrec :: Int -> MonitoringScheduleSummary -> ShowS
$cshowsPrec :: Int -> MonitoringScheduleSummary -> ShowS
Prelude.Show, forall x.
Rep MonitoringScheduleSummary x -> MonitoringScheduleSummary
forall x.
MonitoringScheduleSummary -> Rep MonitoringScheduleSummary x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep MonitoringScheduleSummary x -> MonitoringScheduleSummary
$cfrom :: forall x.
MonitoringScheduleSummary -> Rep MonitoringScheduleSummary x
Prelude.Generic)

-- |
-- Create a value of 'MonitoringScheduleSummary' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'endpointName', 'monitoringScheduleSummary_endpointName' - The name of the endpoint using the monitoring schedule.
--
-- 'monitoringJobDefinitionName', 'monitoringScheduleSummary_monitoringJobDefinitionName' - The name of the monitoring job definition that the schedule is for.
--
-- 'monitoringType', 'monitoringScheduleSummary_monitoringType' - The type of the monitoring job definition that the schedule is for.
--
-- 'monitoringScheduleName', 'monitoringScheduleSummary_monitoringScheduleName' - The name of the monitoring schedule.
--
-- 'monitoringScheduleArn', 'monitoringScheduleSummary_monitoringScheduleArn' - The Amazon Resource Name (ARN) of the monitoring schedule.
--
-- 'creationTime', 'monitoringScheduleSummary_creationTime' - The creation time of the monitoring schedule.
--
-- 'lastModifiedTime', 'monitoringScheduleSummary_lastModifiedTime' - The last time the monitoring schedule was modified.
--
-- 'monitoringScheduleStatus', 'monitoringScheduleSummary_monitoringScheduleStatus' - The status of the monitoring schedule.
newMonitoringScheduleSummary ::
  -- | 'monitoringScheduleName'
  Prelude.Text ->
  -- | 'monitoringScheduleArn'
  Prelude.Text ->
  -- | 'creationTime'
  Prelude.UTCTime ->
  -- | 'lastModifiedTime'
  Prelude.UTCTime ->
  -- | 'monitoringScheduleStatus'
  ScheduleStatus ->
  MonitoringScheduleSummary
newMonitoringScheduleSummary :: Text
-> Text
-> UTCTime
-> UTCTime
-> ScheduleStatus
-> MonitoringScheduleSummary
newMonitoringScheduleSummary
  Text
pMonitoringScheduleName_
  Text
pMonitoringScheduleArn_
  UTCTime
pCreationTime_
  UTCTime
pLastModifiedTime_
  ScheduleStatus
pMonitoringScheduleStatus_ =
    MonitoringScheduleSummary'
      { $sel:endpointName:MonitoringScheduleSummary' :: Maybe Text
endpointName =
          forall a. Maybe a
Prelude.Nothing,
        $sel:monitoringJobDefinitionName:MonitoringScheduleSummary' :: Maybe Text
monitoringJobDefinitionName = forall a. Maybe a
Prelude.Nothing,
        $sel:monitoringType:MonitoringScheduleSummary' :: Maybe MonitoringType
monitoringType = forall a. Maybe a
Prelude.Nothing,
        $sel:monitoringScheduleName:MonitoringScheduleSummary' :: Text
monitoringScheduleName =
          Text
pMonitoringScheduleName_,
        $sel:monitoringScheduleArn:MonitoringScheduleSummary' :: Text
monitoringScheduleArn = Text
pMonitoringScheduleArn_,
        $sel:creationTime:MonitoringScheduleSummary' :: POSIX
creationTime = forall (a :: Format). Iso' (Time a) UTCTime
Data._Time forall t b. AReview t b -> b -> t
Lens.# UTCTime
pCreationTime_,
        $sel:lastModifiedTime:MonitoringScheduleSummary' :: POSIX
lastModifiedTime =
          forall (a :: Format). Iso' (Time a) UTCTime
Data._Time forall t b. AReview t b -> b -> t
Lens.# UTCTime
pLastModifiedTime_,
        $sel:monitoringScheduleStatus:MonitoringScheduleSummary' :: ScheduleStatus
monitoringScheduleStatus =
          ScheduleStatus
pMonitoringScheduleStatus_
      }

-- | The name of the endpoint using the monitoring schedule.
monitoringScheduleSummary_endpointName :: Lens.Lens' MonitoringScheduleSummary (Prelude.Maybe Prelude.Text)
monitoringScheduleSummary_endpointName :: Lens' MonitoringScheduleSummary (Maybe Text)
monitoringScheduleSummary_endpointName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\MonitoringScheduleSummary' {Maybe Text
endpointName :: Maybe Text
$sel:endpointName:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Maybe Text
endpointName} -> Maybe Text
endpointName) (\s :: MonitoringScheduleSummary
s@MonitoringScheduleSummary' {} Maybe Text
a -> MonitoringScheduleSummary
s {$sel:endpointName:MonitoringScheduleSummary' :: Maybe Text
endpointName = Maybe Text
a} :: MonitoringScheduleSummary)

-- | The name of the monitoring job definition that the schedule is for.
monitoringScheduleSummary_monitoringJobDefinitionName :: Lens.Lens' MonitoringScheduleSummary (Prelude.Maybe Prelude.Text)
monitoringScheduleSummary_monitoringJobDefinitionName :: Lens' MonitoringScheduleSummary (Maybe Text)
monitoringScheduleSummary_monitoringJobDefinitionName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\MonitoringScheduleSummary' {Maybe Text
monitoringJobDefinitionName :: Maybe Text
$sel:monitoringJobDefinitionName:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Maybe Text
monitoringJobDefinitionName} -> Maybe Text
monitoringJobDefinitionName) (\s :: MonitoringScheduleSummary
s@MonitoringScheduleSummary' {} Maybe Text
a -> MonitoringScheduleSummary
s {$sel:monitoringJobDefinitionName:MonitoringScheduleSummary' :: Maybe Text
monitoringJobDefinitionName = Maybe Text
a} :: MonitoringScheduleSummary)

-- | The type of the monitoring job definition that the schedule is for.
monitoringScheduleSummary_monitoringType :: Lens.Lens' MonitoringScheduleSummary (Prelude.Maybe MonitoringType)
monitoringScheduleSummary_monitoringType :: Lens' MonitoringScheduleSummary (Maybe MonitoringType)
monitoringScheduleSummary_monitoringType = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\MonitoringScheduleSummary' {Maybe MonitoringType
monitoringType :: Maybe MonitoringType
$sel:monitoringType:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Maybe MonitoringType
monitoringType} -> Maybe MonitoringType
monitoringType) (\s :: MonitoringScheduleSummary
s@MonitoringScheduleSummary' {} Maybe MonitoringType
a -> MonitoringScheduleSummary
s {$sel:monitoringType:MonitoringScheduleSummary' :: Maybe MonitoringType
monitoringType = Maybe MonitoringType
a} :: MonitoringScheduleSummary)

-- | The name of the monitoring schedule.
monitoringScheduleSummary_monitoringScheduleName :: Lens.Lens' MonitoringScheduleSummary Prelude.Text
monitoringScheduleSummary_monitoringScheduleName :: Lens' MonitoringScheduleSummary Text
monitoringScheduleSummary_monitoringScheduleName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\MonitoringScheduleSummary' {Text
monitoringScheduleName :: Text
$sel:monitoringScheduleName:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Text
monitoringScheduleName} -> Text
monitoringScheduleName) (\s :: MonitoringScheduleSummary
s@MonitoringScheduleSummary' {} Text
a -> MonitoringScheduleSummary
s {$sel:monitoringScheduleName:MonitoringScheduleSummary' :: Text
monitoringScheduleName = Text
a} :: MonitoringScheduleSummary)

-- | The Amazon Resource Name (ARN) of the monitoring schedule.
monitoringScheduleSummary_monitoringScheduleArn :: Lens.Lens' MonitoringScheduleSummary Prelude.Text
monitoringScheduleSummary_monitoringScheduleArn :: Lens' MonitoringScheduleSummary Text
monitoringScheduleSummary_monitoringScheduleArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\MonitoringScheduleSummary' {Text
monitoringScheduleArn :: Text
$sel:monitoringScheduleArn:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Text
monitoringScheduleArn} -> Text
monitoringScheduleArn) (\s :: MonitoringScheduleSummary
s@MonitoringScheduleSummary' {} Text
a -> MonitoringScheduleSummary
s {$sel:monitoringScheduleArn:MonitoringScheduleSummary' :: Text
monitoringScheduleArn = Text
a} :: MonitoringScheduleSummary)

-- | The creation time of the monitoring schedule.
monitoringScheduleSummary_creationTime :: Lens.Lens' MonitoringScheduleSummary Prelude.UTCTime
monitoringScheduleSummary_creationTime :: Lens' MonitoringScheduleSummary UTCTime
monitoringScheduleSummary_creationTime = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\MonitoringScheduleSummary' {POSIX
creationTime :: POSIX
$sel:creationTime:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> POSIX
creationTime} -> POSIX
creationTime) (\s :: MonitoringScheduleSummary
s@MonitoringScheduleSummary' {} POSIX
a -> MonitoringScheduleSummary
s {$sel:creationTime:MonitoringScheduleSummary' :: POSIX
creationTime = POSIX
a} :: MonitoringScheduleSummary) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | The last time the monitoring schedule was modified.
monitoringScheduleSummary_lastModifiedTime :: Lens.Lens' MonitoringScheduleSummary Prelude.UTCTime
monitoringScheduleSummary_lastModifiedTime :: Lens' MonitoringScheduleSummary UTCTime
monitoringScheduleSummary_lastModifiedTime = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\MonitoringScheduleSummary' {POSIX
lastModifiedTime :: POSIX
$sel:lastModifiedTime:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> POSIX
lastModifiedTime} -> POSIX
lastModifiedTime) (\s :: MonitoringScheduleSummary
s@MonitoringScheduleSummary' {} POSIX
a -> MonitoringScheduleSummary
s {$sel:lastModifiedTime:MonitoringScheduleSummary' :: POSIX
lastModifiedTime = POSIX
a} :: MonitoringScheduleSummary) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | The status of the monitoring schedule.
monitoringScheduleSummary_monitoringScheduleStatus :: Lens.Lens' MonitoringScheduleSummary ScheduleStatus
monitoringScheduleSummary_monitoringScheduleStatus :: Lens' MonitoringScheduleSummary ScheduleStatus
monitoringScheduleSummary_monitoringScheduleStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\MonitoringScheduleSummary' {ScheduleStatus
monitoringScheduleStatus :: ScheduleStatus
$sel:monitoringScheduleStatus:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> ScheduleStatus
monitoringScheduleStatus} -> ScheduleStatus
monitoringScheduleStatus) (\s :: MonitoringScheduleSummary
s@MonitoringScheduleSummary' {} ScheduleStatus
a -> MonitoringScheduleSummary
s {$sel:monitoringScheduleStatus:MonitoringScheduleSummary' :: ScheduleStatus
monitoringScheduleStatus = ScheduleStatus
a} :: MonitoringScheduleSummary)

instance Data.FromJSON MonitoringScheduleSummary where
  parseJSON :: Value -> Parser MonitoringScheduleSummary
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"MonitoringScheduleSummary"
      ( \Object
x ->
          Maybe Text
-> Maybe Text
-> Maybe MonitoringType
-> Text
-> Text
-> POSIX
-> POSIX
-> ScheduleStatus
-> MonitoringScheduleSummary
MonitoringScheduleSummary'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"EndpointName")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"MonitoringJobDefinitionName")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"MonitoringType")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"MonitoringScheduleName")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"MonitoringScheduleArn")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"CreationTime")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"LastModifiedTime")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"MonitoringScheduleStatus")
      )

instance Prelude.Hashable MonitoringScheduleSummary where
  hashWithSalt :: Int -> MonitoringScheduleSummary -> Int
hashWithSalt Int
_salt MonitoringScheduleSummary' {Maybe Text
Maybe MonitoringType
Text
POSIX
ScheduleStatus
monitoringScheduleStatus :: ScheduleStatus
lastModifiedTime :: POSIX
creationTime :: POSIX
monitoringScheduleArn :: Text
monitoringScheduleName :: Text
monitoringType :: Maybe MonitoringType
monitoringJobDefinitionName :: Maybe Text
endpointName :: Maybe Text
$sel:monitoringScheduleStatus:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> ScheduleStatus
$sel:lastModifiedTime:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> POSIX
$sel:creationTime:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> POSIX
$sel:monitoringScheduleArn:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Text
$sel:monitoringScheduleName:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Text
$sel:monitoringType:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Maybe MonitoringType
$sel:monitoringJobDefinitionName:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Maybe Text
$sel:endpointName:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
endpointName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
monitoringJobDefinitionName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe MonitoringType
monitoringType
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
monitoringScheduleName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
monitoringScheduleArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` POSIX
creationTime
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` POSIX
lastModifiedTime
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` ScheduleStatus
monitoringScheduleStatus

instance Prelude.NFData MonitoringScheduleSummary where
  rnf :: MonitoringScheduleSummary -> ()
rnf MonitoringScheduleSummary' {Maybe Text
Maybe MonitoringType
Text
POSIX
ScheduleStatus
monitoringScheduleStatus :: ScheduleStatus
lastModifiedTime :: POSIX
creationTime :: POSIX
monitoringScheduleArn :: Text
monitoringScheduleName :: Text
monitoringType :: Maybe MonitoringType
monitoringJobDefinitionName :: Maybe Text
endpointName :: Maybe Text
$sel:monitoringScheduleStatus:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> ScheduleStatus
$sel:lastModifiedTime:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> POSIX
$sel:creationTime:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> POSIX
$sel:monitoringScheduleArn:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Text
$sel:monitoringScheduleName:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Text
$sel:monitoringType:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Maybe MonitoringType
$sel:monitoringJobDefinitionName:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Maybe Text
$sel:endpointName:MonitoringScheduleSummary' :: MonitoringScheduleSummary -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
endpointName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
monitoringJobDefinitionName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe MonitoringType
monitoringType
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
monitoringScheduleName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
monitoringScheduleArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf POSIX
creationTime
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf POSIX
lastModifiedTime
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf ScheduleStatus
monitoringScheduleStatus