{-# 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.IVS.Types.StreamSessionSummary -- 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.IVS.Types.StreamSessionSummary 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 -- | Summary information about a stream session. -- -- /See:/ 'newStreamSessionSummary' smart constructor. data StreamSessionSummary = StreamSessionSummary' { -- | Time when the channel went offline. This is an ISO 8601 timestamp; /note -- that this is returned as a string/. For live streams, this is @NULL@. endTime :: Prelude.Maybe Data.ISO8601, -- | If @true@, this stream encountered a quota breach or failure. hasErrorEvent :: Prelude.Maybe Prelude.Bool, -- | Time when the channel went live. This is an ISO 8601 timestamp; /note -- that this is returned as a string/. startTime :: Prelude.Maybe Data.ISO8601, -- | Unique identifier for a live or previously live stream in the specified -- channel. streamId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'StreamSessionSummary' 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: -- -- 'endTime', 'streamSessionSummary_endTime' - Time when the channel went offline. This is an ISO 8601 timestamp; /note -- that this is returned as a string/. For live streams, this is @NULL@. -- -- 'hasErrorEvent', 'streamSessionSummary_hasErrorEvent' - If @true@, this stream encountered a quota breach or failure. -- -- 'startTime', 'streamSessionSummary_startTime' - Time when the channel went live. This is an ISO 8601 timestamp; /note -- that this is returned as a string/. -- -- 'streamId', 'streamSessionSummary_streamId' - Unique identifier for a live or previously live stream in the specified -- channel. newStreamSessionSummary :: StreamSessionSummary newStreamSessionSummary = StreamSessionSummary' { endTime = Prelude.Nothing, hasErrorEvent = Prelude.Nothing, startTime = Prelude.Nothing, streamId = Prelude.Nothing } -- | Time when the channel went offline. This is an ISO 8601 timestamp; /note -- that this is returned as a string/. For live streams, this is @NULL@. streamSessionSummary_endTime :: Lens.Lens' StreamSessionSummary (Prelude.Maybe Prelude.UTCTime) streamSessionSummary_endTime = Lens.lens (\StreamSessionSummary' {endTime} -> endTime) (\s@StreamSessionSummary' {} a -> s {endTime = a} :: StreamSessionSummary) Prelude.. Lens.mapping Data._Time -- | If @true@, this stream encountered a quota breach or failure. streamSessionSummary_hasErrorEvent :: Lens.Lens' StreamSessionSummary (Prelude.Maybe Prelude.Bool) streamSessionSummary_hasErrorEvent = Lens.lens (\StreamSessionSummary' {hasErrorEvent} -> hasErrorEvent) (\s@StreamSessionSummary' {} a -> s {hasErrorEvent = a} :: StreamSessionSummary) -- | Time when the channel went live. This is an ISO 8601 timestamp; /note -- that this is returned as a string/. streamSessionSummary_startTime :: Lens.Lens' StreamSessionSummary (Prelude.Maybe Prelude.UTCTime) streamSessionSummary_startTime = Lens.lens (\StreamSessionSummary' {startTime} -> startTime) (\s@StreamSessionSummary' {} a -> s {startTime = a} :: StreamSessionSummary) Prelude.. Lens.mapping Data._Time -- | Unique identifier for a live or previously live stream in the specified -- channel. streamSessionSummary_streamId :: Lens.Lens' StreamSessionSummary (Prelude.Maybe Prelude.Text) streamSessionSummary_streamId = Lens.lens (\StreamSessionSummary' {streamId} -> streamId) (\s@StreamSessionSummary' {} a -> s {streamId = a} :: StreamSessionSummary) instance Data.FromJSON StreamSessionSummary where parseJSON = Data.withObject "StreamSessionSummary" ( \x -> StreamSessionSummary' Prelude.<$> (x Data..:? "endTime") Prelude.<*> (x Data..:? "hasErrorEvent") Prelude.<*> (x Data..:? "startTime") Prelude.<*> (x Data..:? "streamId") ) instance Prelude.Hashable StreamSessionSummary where hashWithSalt _salt StreamSessionSummary' {..} = _salt `Prelude.hashWithSalt` endTime `Prelude.hashWithSalt` hasErrorEvent `Prelude.hashWithSalt` startTime `Prelude.hashWithSalt` streamId instance Prelude.NFData StreamSessionSummary where rnf StreamSessionSummary' {..} = Prelude.rnf endTime `Prelude.seq` Prelude.rnf hasErrorEvent `Prelude.seq` Prelude.rnf startTime `Prelude.seq` Prelude.rnf streamId