{-# 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.PrivateNetworks.Types.NetworkSite
-- 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.PrivateNetworks.Types.NetworkSite 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.PrivateNetworks.Types.NetworkSiteStatus
import Amazonka.PrivateNetworks.Types.SitePlan

-- | Information about a network site.
--
-- /See:/ 'newNetworkSite' smart constructor.
data NetworkSite = NetworkSite'
  { -- | The parent Availability Zone for the network site.
    NetworkSite -> Maybe Text
availabilityZone :: Prelude.Maybe Prelude.Text,
    -- | The parent Availability Zone ID for the network site.
    NetworkSite -> Maybe Text
availabilityZoneId :: Prelude.Maybe Prelude.Text,
    -- | The creation time of the network site.
    NetworkSite -> Maybe ISO8601
createdAt :: Prelude.Maybe Data.ISO8601,
    -- | The current plan of the network site.
    NetworkSite -> Maybe SitePlan
currentPlan :: Prelude.Maybe SitePlan,
    -- | The description of the network site.
    NetworkSite -> Maybe Text
description :: Prelude.Maybe Prelude.Text,
    -- | The pending plan of the network site.
    NetworkSite -> Maybe SitePlan
pendingPlan :: Prelude.Maybe SitePlan,
    -- | The status reason of the network site.
    NetworkSite -> Maybe Text
statusReason :: Prelude.Maybe Prelude.Text,
    -- | The Amazon Resource Name (ARN) of the network to which the network site
    -- belongs.
    NetworkSite -> Text
networkArn :: Prelude.Text,
    -- | The Amazon Resource Name (ARN) of the network site.
    NetworkSite -> Text
networkSiteArn :: Prelude.Text,
    -- | The name of the network site.
    NetworkSite -> Text
networkSiteName :: Prelude.Text,
    -- | The status of the network site.
    NetworkSite -> NetworkSiteStatus
status :: NetworkSiteStatus
  }
  deriving (NetworkSite -> NetworkSite -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: NetworkSite -> NetworkSite -> Bool
$c/= :: NetworkSite -> NetworkSite -> Bool
== :: NetworkSite -> NetworkSite -> Bool
$c== :: NetworkSite -> NetworkSite -> Bool
Prelude.Eq, ReadPrec [NetworkSite]
ReadPrec NetworkSite
Int -> ReadS NetworkSite
ReadS [NetworkSite]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [NetworkSite]
$creadListPrec :: ReadPrec [NetworkSite]
readPrec :: ReadPrec NetworkSite
$creadPrec :: ReadPrec NetworkSite
readList :: ReadS [NetworkSite]
$creadList :: ReadS [NetworkSite]
readsPrec :: Int -> ReadS NetworkSite
$creadsPrec :: Int -> ReadS NetworkSite
Prelude.Read, Int -> NetworkSite -> ShowS
[NetworkSite] -> ShowS
NetworkSite -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [NetworkSite] -> ShowS
$cshowList :: [NetworkSite] -> ShowS
show :: NetworkSite -> String
$cshow :: NetworkSite -> String
showsPrec :: Int -> NetworkSite -> ShowS
$cshowsPrec :: Int -> NetworkSite -> ShowS
Prelude.Show, forall x. Rep NetworkSite x -> NetworkSite
forall x. NetworkSite -> Rep NetworkSite x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep NetworkSite x -> NetworkSite
$cfrom :: forall x. NetworkSite -> Rep NetworkSite x
Prelude.Generic)

-- |
-- Create a value of 'NetworkSite' 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:
--
-- 'availabilityZone', 'networkSite_availabilityZone' - The parent Availability Zone for the network site.
--
-- 'availabilityZoneId', 'networkSite_availabilityZoneId' - The parent Availability Zone ID for the network site.
--
-- 'createdAt', 'networkSite_createdAt' - The creation time of the network site.
--
-- 'currentPlan', 'networkSite_currentPlan' - The current plan of the network site.
--
-- 'description', 'networkSite_description' - The description of the network site.
--
-- 'pendingPlan', 'networkSite_pendingPlan' - The pending plan of the network site.
--
-- 'statusReason', 'networkSite_statusReason' - The status reason of the network site.
--
-- 'networkArn', 'networkSite_networkArn' - The Amazon Resource Name (ARN) of the network to which the network site
-- belongs.
--
-- 'networkSiteArn', 'networkSite_networkSiteArn' - The Amazon Resource Name (ARN) of the network site.
--
-- 'networkSiteName', 'networkSite_networkSiteName' - The name of the network site.
--
-- 'status', 'networkSite_status' - The status of the network site.
newNetworkSite ::
  -- | 'networkArn'
  Prelude.Text ->
  -- | 'networkSiteArn'
  Prelude.Text ->
  -- | 'networkSiteName'
  Prelude.Text ->
  -- | 'status'
  NetworkSiteStatus ->
  NetworkSite
newNetworkSite :: Text -> Text -> Text -> NetworkSiteStatus -> NetworkSite
newNetworkSite
  Text
pNetworkArn_
  Text
pNetworkSiteArn_
  Text
pNetworkSiteName_
  NetworkSiteStatus
pStatus_ =
    NetworkSite'
      { $sel:availabilityZone:NetworkSite' :: Maybe Text
availabilityZone = forall a. Maybe a
Prelude.Nothing,
        $sel:availabilityZoneId:NetworkSite' :: Maybe Text
availabilityZoneId = forall a. Maybe a
Prelude.Nothing,
        $sel:createdAt:NetworkSite' :: Maybe ISO8601
createdAt = forall a. Maybe a
Prelude.Nothing,
        $sel:currentPlan:NetworkSite' :: Maybe SitePlan
currentPlan = forall a. Maybe a
Prelude.Nothing,
        $sel:description:NetworkSite' :: Maybe Text
description = forall a. Maybe a
Prelude.Nothing,
        $sel:pendingPlan:NetworkSite' :: Maybe SitePlan
pendingPlan = forall a. Maybe a
Prelude.Nothing,
        $sel:statusReason:NetworkSite' :: Maybe Text
statusReason = forall a. Maybe a
Prelude.Nothing,
        $sel:networkArn:NetworkSite' :: Text
networkArn = Text
pNetworkArn_,
        $sel:networkSiteArn:NetworkSite' :: Text
networkSiteArn = Text
pNetworkSiteArn_,
        $sel:networkSiteName:NetworkSite' :: Text
networkSiteName = Text
pNetworkSiteName_,
        $sel:status:NetworkSite' :: NetworkSiteStatus
status = NetworkSiteStatus
pStatus_
      }

-- | The parent Availability Zone for the network site.
networkSite_availabilityZone :: Lens.Lens' NetworkSite (Prelude.Maybe Prelude.Text)
networkSite_availabilityZone :: Lens' NetworkSite (Maybe Text)
networkSite_availabilityZone = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {Maybe Text
availabilityZone :: Maybe Text
$sel:availabilityZone:NetworkSite' :: NetworkSite -> Maybe Text
availabilityZone} -> Maybe Text
availabilityZone) (\s :: NetworkSite
s@NetworkSite' {} Maybe Text
a -> NetworkSite
s {$sel:availabilityZone:NetworkSite' :: Maybe Text
availabilityZone = Maybe Text
a} :: NetworkSite)

-- | The parent Availability Zone ID for the network site.
networkSite_availabilityZoneId :: Lens.Lens' NetworkSite (Prelude.Maybe Prelude.Text)
networkSite_availabilityZoneId :: Lens' NetworkSite (Maybe Text)
networkSite_availabilityZoneId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {Maybe Text
availabilityZoneId :: Maybe Text
$sel:availabilityZoneId:NetworkSite' :: NetworkSite -> Maybe Text
availabilityZoneId} -> Maybe Text
availabilityZoneId) (\s :: NetworkSite
s@NetworkSite' {} Maybe Text
a -> NetworkSite
s {$sel:availabilityZoneId:NetworkSite' :: Maybe Text
availabilityZoneId = Maybe Text
a} :: NetworkSite)

-- | The creation time of the network site.
networkSite_createdAt :: Lens.Lens' NetworkSite (Prelude.Maybe Prelude.UTCTime)
networkSite_createdAt :: Lens' NetworkSite (Maybe UTCTime)
networkSite_createdAt = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {Maybe ISO8601
createdAt :: Maybe ISO8601
$sel:createdAt:NetworkSite' :: NetworkSite -> Maybe ISO8601
createdAt} -> Maybe ISO8601
createdAt) (\s :: NetworkSite
s@NetworkSite' {} Maybe ISO8601
a -> NetworkSite
s {$sel:createdAt:NetworkSite' :: Maybe ISO8601
createdAt = Maybe ISO8601
a} :: NetworkSite) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | The current plan of the network site.
networkSite_currentPlan :: Lens.Lens' NetworkSite (Prelude.Maybe SitePlan)
networkSite_currentPlan :: Lens' NetworkSite (Maybe SitePlan)
networkSite_currentPlan = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {Maybe SitePlan
currentPlan :: Maybe SitePlan
$sel:currentPlan:NetworkSite' :: NetworkSite -> Maybe SitePlan
currentPlan} -> Maybe SitePlan
currentPlan) (\s :: NetworkSite
s@NetworkSite' {} Maybe SitePlan
a -> NetworkSite
s {$sel:currentPlan:NetworkSite' :: Maybe SitePlan
currentPlan = Maybe SitePlan
a} :: NetworkSite)

-- | The description of the network site.
networkSite_description :: Lens.Lens' NetworkSite (Prelude.Maybe Prelude.Text)
networkSite_description :: Lens' NetworkSite (Maybe Text)
networkSite_description = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {Maybe Text
description :: Maybe Text
$sel:description:NetworkSite' :: NetworkSite -> Maybe Text
description} -> Maybe Text
description) (\s :: NetworkSite
s@NetworkSite' {} Maybe Text
a -> NetworkSite
s {$sel:description:NetworkSite' :: Maybe Text
description = Maybe Text
a} :: NetworkSite)

-- | The pending plan of the network site.
networkSite_pendingPlan :: Lens.Lens' NetworkSite (Prelude.Maybe SitePlan)
networkSite_pendingPlan :: Lens' NetworkSite (Maybe SitePlan)
networkSite_pendingPlan = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {Maybe SitePlan
pendingPlan :: Maybe SitePlan
$sel:pendingPlan:NetworkSite' :: NetworkSite -> Maybe SitePlan
pendingPlan} -> Maybe SitePlan
pendingPlan) (\s :: NetworkSite
s@NetworkSite' {} Maybe SitePlan
a -> NetworkSite
s {$sel:pendingPlan:NetworkSite' :: Maybe SitePlan
pendingPlan = Maybe SitePlan
a} :: NetworkSite)

-- | The status reason of the network site.
networkSite_statusReason :: Lens.Lens' NetworkSite (Prelude.Maybe Prelude.Text)
networkSite_statusReason :: Lens' NetworkSite (Maybe Text)
networkSite_statusReason = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {Maybe Text
statusReason :: Maybe Text
$sel:statusReason:NetworkSite' :: NetworkSite -> Maybe Text
statusReason} -> Maybe Text
statusReason) (\s :: NetworkSite
s@NetworkSite' {} Maybe Text
a -> NetworkSite
s {$sel:statusReason:NetworkSite' :: Maybe Text
statusReason = Maybe Text
a} :: NetworkSite)

-- | The Amazon Resource Name (ARN) of the network to which the network site
-- belongs.
networkSite_networkArn :: Lens.Lens' NetworkSite Prelude.Text
networkSite_networkArn :: Lens' NetworkSite Text
networkSite_networkArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {Text
networkArn :: Text
$sel:networkArn:NetworkSite' :: NetworkSite -> Text
networkArn} -> Text
networkArn) (\s :: NetworkSite
s@NetworkSite' {} Text
a -> NetworkSite
s {$sel:networkArn:NetworkSite' :: Text
networkArn = Text
a} :: NetworkSite)

-- | The Amazon Resource Name (ARN) of the network site.
networkSite_networkSiteArn :: Lens.Lens' NetworkSite Prelude.Text
networkSite_networkSiteArn :: Lens' NetworkSite Text
networkSite_networkSiteArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {Text
networkSiteArn :: Text
$sel:networkSiteArn:NetworkSite' :: NetworkSite -> Text
networkSiteArn} -> Text
networkSiteArn) (\s :: NetworkSite
s@NetworkSite' {} Text
a -> NetworkSite
s {$sel:networkSiteArn:NetworkSite' :: Text
networkSiteArn = Text
a} :: NetworkSite)

-- | The name of the network site.
networkSite_networkSiteName :: Lens.Lens' NetworkSite Prelude.Text
networkSite_networkSiteName :: Lens' NetworkSite Text
networkSite_networkSiteName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {Text
networkSiteName :: Text
$sel:networkSiteName:NetworkSite' :: NetworkSite -> Text
networkSiteName} -> Text
networkSiteName) (\s :: NetworkSite
s@NetworkSite' {} Text
a -> NetworkSite
s {$sel:networkSiteName:NetworkSite' :: Text
networkSiteName = Text
a} :: NetworkSite)

-- | The status of the network site.
networkSite_status :: Lens.Lens' NetworkSite NetworkSiteStatus
networkSite_status :: Lens' NetworkSite NetworkSiteStatus
networkSite_status = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\NetworkSite' {NetworkSiteStatus
status :: NetworkSiteStatus
$sel:status:NetworkSite' :: NetworkSite -> NetworkSiteStatus
status} -> NetworkSiteStatus
status) (\s :: NetworkSite
s@NetworkSite' {} NetworkSiteStatus
a -> NetworkSite
s {$sel:status:NetworkSite' :: NetworkSiteStatus
status = NetworkSiteStatus
a} :: NetworkSite)

instance Data.FromJSON NetworkSite where
  parseJSON :: Value -> Parser NetworkSite
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"NetworkSite"
      ( \Object
x ->
          Maybe Text
-> Maybe Text
-> Maybe ISO8601
-> Maybe SitePlan
-> Maybe Text
-> Maybe SitePlan
-> Maybe Text
-> Text
-> Text
-> Text
-> NetworkSiteStatus
-> NetworkSite
NetworkSite'
            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
"availabilityZone")
            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
"availabilityZoneId")
            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
"createdAt")
            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
"currentPlan")
            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
"description")
            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
"pendingPlan")
            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
"statusReason")
            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
"networkArn")
            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
"networkSiteArn")
            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
"networkSiteName")
            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
"status")
      )

instance Prelude.Hashable NetworkSite where
  hashWithSalt :: Int -> NetworkSite -> Int
hashWithSalt Int
_salt NetworkSite' {Maybe Text
Maybe ISO8601
Maybe SitePlan
Text
NetworkSiteStatus
status :: NetworkSiteStatus
networkSiteName :: Text
networkSiteArn :: Text
networkArn :: Text
statusReason :: Maybe Text
pendingPlan :: Maybe SitePlan
description :: Maybe Text
currentPlan :: Maybe SitePlan
createdAt :: Maybe ISO8601
availabilityZoneId :: Maybe Text
availabilityZone :: Maybe Text
$sel:status:NetworkSite' :: NetworkSite -> NetworkSiteStatus
$sel:networkSiteName:NetworkSite' :: NetworkSite -> Text
$sel:networkSiteArn:NetworkSite' :: NetworkSite -> Text
$sel:networkArn:NetworkSite' :: NetworkSite -> Text
$sel:statusReason:NetworkSite' :: NetworkSite -> Maybe Text
$sel:pendingPlan:NetworkSite' :: NetworkSite -> Maybe SitePlan
$sel:description:NetworkSite' :: NetworkSite -> Maybe Text
$sel:currentPlan:NetworkSite' :: NetworkSite -> Maybe SitePlan
$sel:createdAt:NetworkSite' :: NetworkSite -> Maybe ISO8601
$sel:availabilityZoneId:NetworkSite' :: NetworkSite -> Maybe Text
$sel:availabilityZone:NetworkSite' :: NetworkSite -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
availabilityZone
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
availabilityZoneId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe ISO8601
createdAt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe SitePlan
currentPlan
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
description
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe SitePlan
pendingPlan
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
statusReason
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
networkArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
networkSiteArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
networkSiteName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` NetworkSiteStatus
status

instance Prelude.NFData NetworkSite where
  rnf :: NetworkSite -> ()
rnf NetworkSite' {Maybe Text
Maybe ISO8601
Maybe SitePlan
Text
NetworkSiteStatus
status :: NetworkSiteStatus
networkSiteName :: Text
networkSiteArn :: Text
networkArn :: Text
statusReason :: Maybe Text
pendingPlan :: Maybe SitePlan
description :: Maybe Text
currentPlan :: Maybe SitePlan
createdAt :: Maybe ISO8601
availabilityZoneId :: Maybe Text
availabilityZone :: Maybe Text
$sel:status:NetworkSite' :: NetworkSite -> NetworkSiteStatus
$sel:networkSiteName:NetworkSite' :: NetworkSite -> Text
$sel:networkSiteArn:NetworkSite' :: NetworkSite -> Text
$sel:networkArn:NetworkSite' :: NetworkSite -> Text
$sel:statusReason:NetworkSite' :: NetworkSite -> Maybe Text
$sel:pendingPlan:NetworkSite' :: NetworkSite -> Maybe SitePlan
$sel:description:NetworkSite' :: NetworkSite -> Maybe Text
$sel:currentPlan:NetworkSite' :: NetworkSite -> Maybe SitePlan
$sel:createdAt:NetworkSite' :: NetworkSite -> Maybe ISO8601
$sel:availabilityZoneId:NetworkSite' :: NetworkSite -> Maybe Text
$sel:availabilityZone:NetworkSite' :: NetworkSite -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
availabilityZone
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
availabilityZoneId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe ISO8601
createdAt
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe SitePlan
currentPlan
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
description
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe SitePlan
pendingPlan
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
statusReason
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
networkArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
networkSiteArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
networkSiteName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf NetworkSiteStatus
status