{-# 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.EMR.Types.InstanceTimeline -- 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.EMR.Types.InstanceTimeline 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 -- | The timeline of the instance lifecycle. -- -- /See:/ 'newInstanceTimeline' smart constructor. data InstanceTimeline = InstanceTimeline' { -- | The creation date and time of the instance. creationDateTime :: Prelude.Maybe Data.POSIX, -- | The date and time when the instance was terminated. endDateTime :: Prelude.Maybe Data.POSIX, -- | The date and time when the instance was ready to perform tasks. readyDateTime :: Prelude.Maybe Data.POSIX } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'InstanceTimeline' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'creationDateTime', 'instanceTimeline_creationDateTime' - The creation date and time of the instance. -- -- 'endDateTime', 'instanceTimeline_endDateTime' - The date and time when the instance was terminated. -- -- 'readyDateTime', 'instanceTimeline_readyDateTime' - The date and time when the instance was ready to perform tasks. newInstanceTimeline :: InstanceTimeline newInstanceTimeline = InstanceTimeline' { creationDateTime = Prelude.Nothing, endDateTime = Prelude.Nothing, readyDateTime = Prelude.Nothing } -- | The creation date and time of the instance. instanceTimeline_creationDateTime :: Lens.Lens' InstanceTimeline (Prelude.Maybe Prelude.UTCTime) instanceTimeline_creationDateTime = Lens.lens (\InstanceTimeline' {creationDateTime} -> creationDateTime) (\s@InstanceTimeline' {} a -> s {creationDateTime = a} :: InstanceTimeline) Prelude.. Lens.mapping Data._Time -- | The date and time when the instance was terminated. instanceTimeline_endDateTime :: Lens.Lens' InstanceTimeline (Prelude.Maybe Prelude.UTCTime) instanceTimeline_endDateTime = Lens.lens (\InstanceTimeline' {endDateTime} -> endDateTime) (\s@InstanceTimeline' {} a -> s {endDateTime = a} :: InstanceTimeline) Prelude.. Lens.mapping Data._Time -- | The date and time when the instance was ready to perform tasks. instanceTimeline_readyDateTime :: Lens.Lens' InstanceTimeline (Prelude.Maybe Prelude.UTCTime) instanceTimeline_readyDateTime = Lens.lens (\InstanceTimeline' {readyDateTime} -> readyDateTime) (\s@InstanceTimeline' {} a -> s {readyDateTime = a} :: InstanceTimeline) Prelude.. Lens.mapping Data._Time instance Data.FromJSON InstanceTimeline where parseJSON = Data.withObject "InstanceTimeline" ( \x -> InstanceTimeline' Prelude.<$> (x Data..:? "CreationDateTime") Prelude.<*> (x Data..:? "EndDateTime") Prelude.<*> (x Data..:? "ReadyDateTime") ) instance Prelude.Hashable InstanceTimeline where hashWithSalt _salt InstanceTimeline' {..} = _salt `Prelude.hashWithSalt` creationDateTime `Prelude.hashWithSalt` endDateTime `Prelude.hashWithSalt` readyDateTime instance Prelude.NFData InstanceTimeline where rnf InstanceTimeline' {..} = Prelude.rnf creationDateTime `Prelude.seq` Prelude.rnf endDateTime `Prelude.seq` Prelude.rnf readyDateTime