amazonka-nimble-2.0: gen/Amazonka/Nimble/Types/StreamingSessionStream.hs
{-# 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.Nimble.Types.StreamingSessionStream
-- 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.Nimble.Types.StreamingSessionStream where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.Nimble.Types.StreamingSessionStreamState
import Amazonka.Nimble.Types.StreamingSessionStreamStatusCode
import qualified Amazonka.Prelude as Prelude
-- | A stream is an active connection to a streaming session, enabling a
-- studio user to control the streaming session using a compatible client.
-- Streaming session streams are compatible with the NICE DCV web client,
-- included in the Nimble Studio portal, or the NICE DCV desktop client.
--
-- /See:/ 'newStreamingSessionStream' smart constructor.
data StreamingSessionStream = StreamingSessionStream'
{ -- | The ISO timestamp in seconds for when the resource was created.
createdAt :: Prelude.Maybe Data.ISO8601,
-- | The user ID of the user that created the streaming session stream.
createdBy :: Prelude.Maybe Prelude.Text,
-- | The ISO timestamp in seconds for when the resource expires.
expiresAt :: Prelude.Maybe Data.ISO8601,
-- | The user ID of the user that owns the streaming session. The user that
-- owns the session will be logging into the session and interacting with
-- the virtual workstation.
ownedBy :: Prelude.Maybe Prelude.Text,
-- | The current state.
state :: Prelude.Maybe StreamingSessionStreamState,
-- | The streaming session stream status code.
statusCode :: Prelude.Maybe StreamingSessionStreamStatusCode,
-- | The stream ID.
streamId :: Prelude.Maybe Prelude.Text,
-- | The URL to connect to this stream using the DCV client.
url :: Prelude.Maybe (Data.Sensitive Prelude.Text)
}
deriving (Prelude.Eq, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'StreamingSessionStream' 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:
--
-- 'createdAt', 'streamingSessionStream_createdAt' - The ISO timestamp in seconds for when the resource was created.
--
-- 'createdBy', 'streamingSessionStream_createdBy' - The user ID of the user that created the streaming session stream.
--
-- 'expiresAt', 'streamingSessionStream_expiresAt' - The ISO timestamp in seconds for when the resource expires.
--
-- 'ownedBy', 'streamingSessionStream_ownedBy' - The user ID of the user that owns the streaming session. The user that
-- owns the session will be logging into the session and interacting with
-- the virtual workstation.
--
-- 'state', 'streamingSessionStream_state' - The current state.
--
-- 'statusCode', 'streamingSessionStream_statusCode' - The streaming session stream status code.
--
-- 'streamId', 'streamingSessionStream_streamId' - The stream ID.
--
-- 'url', 'streamingSessionStream_url' - The URL to connect to this stream using the DCV client.
newStreamingSessionStream ::
StreamingSessionStream
newStreamingSessionStream =
StreamingSessionStream'
{ createdAt =
Prelude.Nothing,
createdBy = Prelude.Nothing,
expiresAt = Prelude.Nothing,
ownedBy = Prelude.Nothing,
state = Prelude.Nothing,
statusCode = Prelude.Nothing,
streamId = Prelude.Nothing,
url = Prelude.Nothing
}
-- | The ISO timestamp in seconds for when the resource was created.
streamingSessionStream_createdAt :: Lens.Lens' StreamingSessionStream (Prelude.Maybe Prelude.UTCTime)
streamingSessionStream_createdAt = Lens.lens (\StreamingSessionStream' {createdAt} -> createdAt) (\s@StreamingSessionStream' {} a -> s {createdAt = a} :: StreamingSessionStream) Prelude.. Lens.mapping Data._Time
-- | The user ID of the user that created the streaming session stream.
streamingSessionStream_createdBy :: Lens.Lens' StreamingSessionStream (Prelude.Maybe Prelude.Text)
streamingSessionStream_createdBy = Lens.lens (\StreamingSessionStream' {createdBy} -> createdBy) (\s@StreamingSessionStream' {} a -> s {createdBy = a} :: StreamingSessionStream)
-- | The ISO timestamp in seconds for when the resource expires.
streamingSessionStream_expiresAt :: Lens.Lens' StreamingSessionStream (Prelude.Maybe Prelude.UTCTime)
streamingSessionStream_expiresAt = Lens.lens (\StreamingSessionStream' {expiresAt} -> expiresAt) (\s@StreamingSessionStream' {} a -> s {expiresAt = a} :: StreamingSessionStream) Prelude.. Lens.mapping Data._Time
-- | The user ID of the user that owns the streaming session. The user that
-- owns the session will be logging into the session and interacting with
-- the virtual workstation.
streamingSessionStream_ownedBy :: Lens.Lens' StreamingSessionStream (Prelude.Maybe Prelude.Text)
streamingSessionStream_ownedBy = Lens.lens (\StreamingSessionStream' {ownedBy} -> ownedBy) (\s@StreamingSessionStream' {} a -> s {ownedBy = a} :: StreamingSessionStream)
-- | The current state.
streamingSessionStream_state :: Lens.Lens' StreamingSessionStream (Prelude.Maybe StreamingSessionStreamState)
streamingSessionStream_state = Lens.lens (\StreamingSessionStream' {state} -> state) (\s@StreamingSessionStream' {} a -> s {state = a} :: StreamingSessionStream)
-- | The streaming session stream status code.
streamingSessionStream_statusCode :: Lens.Lens' StreamingSessionStream (Prelude.Maybe StreamingSessionStreamStatusCode)
streamingSessionStream_statusCode = Lens.lens (\StreamingSessionStream' {statusCode} -> statusCode) (\s@StreamingSessionStream' {} a -> s {statusCode = a} :: StreamingSessionStream)
-- | The stream ID.
streamingSessionStream_streamId :: Lens.Lens' StreamingSessionStream (Prelude.Maybe Prelude.Text)
streamingSessionStream_streamId = Lens.lens (\StreamingSessionStream' {streamId} -> streamId) (\s@StreamingSessionStream' {} a -> s {streamId = a} :: StreamingSessionStream)
-- | The URL to connect to this stream using the DCV client.
streamingSessionStream_url :: Lens.Lens' StreamingSessionStream (Prelude.Maybe Prelude.Text)
streamingSessionStream_url = Lens.lens (\StreamingSessionStream' {url} -> url) (\s@StreamingSessionStream' {} a -> s {url = a} :: StreamingSessionStream) Prelude.. Lens.mapping Data._Sensitive
instance Data.FromJSON StreamingSessionStream where
parseJSON =
Data.withObject
"StreamingSessionStream"
( \x ->
StreamingSessionStream'
Prelude.<$> (x Data..:? "createdAt")
Prelude.<*> (x Data..:? "createdBy")
Prelude.<*> (x Data..:? "expiresAt")
Prelude.<*> (x Data..:? "ownedBy")
Prelude.<*> (x Data..:? "state")
Prelude.<*> (x Data..:? "statusCode")
Prelude.<*> (x Data..:? "streamId")
Prelude.<*> (x Data..:? "url")
)
instance Prelude.Hashable StreamingSessionStream where
hashWithSalt _salt StreamingSessionStream' {..} =
_salt
`Prelude.hashWithSalt` createdAt
`Prelude.hashWithSalt` createdBy
`Prelude.hashWithSalt` expiresAt
`Prelude.hashWithSalt` ownedBy
`Prelude.hashWithSalt` state
`Prelude.hashWithSalt` statusCode
`Prelude.hashWithSalt` streamId
`Prelude.hashWithSalt` url
instance Prelude.NFData StreamingSessionStream where
rnf StreamingSessionStream' {..} =
Prelude.rnf createdAt
`Prelude.seq` Prelude.rnf createdBy
`Prelude.seq` Prelude.rnf expiresAt
`Prelude.seq` Prelude.rnf ownedBy
`Prelude.seq` Prelude.rnf state
`Prelude.seq` Prelude.rnf statusCode
`Prelude.seq` Prelude.rnf streamId
`Prelude.seq` Prelude.rnf url