{-# 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.HubContentInfo
-- 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.HubContentInfo 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.HubContentStatus
import Amazonka.SageMaker.Types.HubContentType

-- | Information about hub content.
--
-- /See:/ 'newHubContentInfo' smart constructor.
data HubContentInfo = HubContentInfo'
  { -- | A description of the hub content.
    HubContentInfo -> Maybe Text
hubContentDescription :: Prelude.Maybe Prelude.Text,
    -- | The display name of the hub content.
    HubContentInfo -> Maybe Text
hubContentDisplayName :: Prelude.Maybe Prelude.Text,
    -- | The searchable keywords for the hub content.
    HubContentInfo -> Maybe [Text]
hubContentSearchKeywords :: Prelude.Maybe [Prelude.Text],
    -- | The name of the hub content.
    HubContentInfo -> Text
hubContentName :: Prelude.Text,
    -- | The Amazon Resource Name (ARN) of the hub content.
    HubContentInfo -> Text
hubContentArn :: Prelude.Text,
    -- | The version of the hub content.
    HubContentInfo -> Text
hubContentVersion :: Prelude.Text,
    -- | The type of hub content.
    HubContentInfo -> HubContentType
hubContentType :: HubContentType,
    -- | The version of the hub content document schema.
    HubContentInfo -> Text
documentSchemaVersion :: Prelude.Text,
    -- | The status of the hub content.
    HubContentInfo -> HubContentStatus
hubContentStatus :: HubContentStatus,
    -- | The date and time that the hub content was created.
    HubContentInfo -> POSIX
creationTime :: Data.POSIX
  }
  deriving (HubContentInfo -> HubContentInfo -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: HubContentInfo -> HubContentInfo -> Bool
$c/= :: HubContentInfo -> HubContentInfo -> Bool
== :: HubContentInfo -> HubContentInfo -> Bool
$c== :: HubContentInfo -> HubContentInfo -> Bool
Prelude.Eq, ReadPrec [HubContentInfo]
ReadPrec HubContentInfo
Int -> ReadS HubContentInfo
ReadS [HubContentInfo]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [HubContentInfo]
$creadListPrec :: ReadPrec [HubContentInfo]
readPrec :: ReadPrec HubContentInfo
$creadPrec :: ReadPrec HubContentInfo
readList :: ReadS [HubContentInfo]
$creadList :: ReadS [HubContentInfo]
readsPrec :: Int -> ReadS HubContentInfo
$creadsPrec :: Int -> ReadS HubContentInfo
Prelude.Read, Int -> HubContentInfo -> ShowS
[HubContentInfo] -> ShowS
HubContentInfo -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [HubContentInfo] -> ShowS
$cshowList :: [HubContentInfo] -> ShowS
show :: HubContentInfo -> String
$cshow :: HubContentInfo -> String
showsPrec :: Int -> HubContentInfo -> ShowS
$cshowsPrec :: Int -> HubContentInfo -> ShowS
Prelude.Show, forall x. Rep HubContentInfo x -> HubContentInfo
forall x. HubContentInfo -> Rep HubContentInfo x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep HubContentInfo x -> HubContentInfo
$cfrom :: forall x. HubContentInfo -> Rep HubContentInfo x
Prelude.Generic)

-- |
-- Create a value of 'HubContentInfo' 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:
--
-- 'hubContentDescription', 'hubContentInfo_hubContentDescription' - A description of the hub content.
--
-- 'hubContentDisplayName', 'hubContentInfo_hubContentDisplayName' - The display name of the hub content.
--
-- 'hubContentSearchKeywords', 'hubContentInfo_hubContentSearchKeywords' - The searchable keywords for the hub content.
--
-- 'hubContentName', 'hubContentInfo_hubContentName' - The name of the hub content.
--
-- 'hubContentArn', 'hubContentInfo_hubContentArn' - The Amazon Resource Name (ARN) of the hub content.
--
-- 'hubContentVersion', 'hubContentInfo_hubContentVersion' - The version of the hub content.
--
-- 'hubContentType', 'hubContentInfo_hubContentType' - The type of hub content.
--
-- 'documentSchemaVersion', 'hubContentInfo_documentSchemaVersion' - The version of the hub content document schema.
--
-- 'hubContentStatus', 'hubContentInfo_hubContentStatus' - The status of the hub content.
--
-- 'creationTime', 'hubContentInfo_creationTime' - The date and time that the hub content was created.
newHubContentInfo ::
  -- | 'hubContentName'
  Prelude.Text ->
  -- | 'hubContentArn'
  Prelude.Text ->
  -- | 'hubContentVersion'
  Prelude.Text ->
  -- | 'hubContentType'
  HubContentType ->
  -- | 'documentSchemaVersion'
  Prelude.Text ->
  -- | 'hubContentStatus'
  HubContentStatus ->
  -- | 'creationTime'
  Prelude.UTCTime ->
  HubContentInfo
newHubContentInfo :: Text
-> Text
-> Text
-> HubContentType
-> Text
-> HubContentStatus
-> UTCTime
-> HubContentInfo
newHubContentInfo
  Text
pHubContentName_
  Text
pHubContentArn_
  Text
pHubContentVersion_
  HubContentType
pHubContentType_
  Text
pDocumentSchemaVersion_
  HubContentStatus
pHubContentStatus_
  UTCTime
pCreationTime_ =
    HubContentInfo'
      { $sel:hubContentDescription:HubContentInfo' :: Maybe Text
hubContentDescription =
          forall a. Maybe a
Prelude.Nothing,
        $sel:hubContentDisplayName:HubContentInfo' :: Maybe Text
hubContentDisplayName = forall a. Maybe a
Prelude.Nothing,
        $sel:hubContentSearchKeywords:HubContentInfo' :: Maybe [Text]
hubContentSearchKeywords = forall a. Maybe a
Prelude.Nothing,
        $sel:hubContentName:HubContentInfo' :: Text
hubContentName = Text
pHubContentName_,
        $sel:hubContentArn:HubContentInfo' :: Text
hubContentArn = Text
pHubContentArn_,
        $sel:hubContentVersion:HubContentInfo' :: Text
hubContentVersion = Text
pHubContentVersion_,
        $sel:hubContentType:HubContentInfo' :: HubContentType
hubContentType = HubContentType
pHubContentType_,
        $sel:documentSchemaVersion:HubContentInfo' :: Text
documentSchemaVersion = Text
pDocumentSchemaVersion_,
        $sel:hubContentStatus:HubContentInfo' :: HubContentStatus
hubContentStatus = HubContentStatus
pHubContentStatus_,
        $sel:creationTime:HubContentInfo' :: POSIX
creationTime = forall (a :: Format). Iso' (Time a) UTCTime
Data._Time forall t b. AReview t b -> b -> t
Lens.# UTCTime
pCreationTime_
      }

-- | A description of the hub content.
hubContentInfo_hubContentDescription :: Lens.Lens' HubContentInfo (Prelude.Maybe Prelude.Text)
hubContentInfo_hubContentDescription :: Lens' HubContentInfo (Maybe Text)
hubContentInfo_hubContentDescription = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HubContentInfo' {Maybe Text
hubContentDescription :: Maybe Text
$sel:hubContentDescription:HubContentInfo' :: HubContentInfo -> Maybe Text
hubContentDescription} -> Maybe Text
hubContentDescription) (\s :: HubContentInfo
s@HubContentInfo' {} Maybe Text
a -> HubContentInfo
s {$sel:hubContentDescription:HubContentInfo' :: Maybe Text
hubContentDescription = Maybe Text
a} :: HubContentInfo)

-- | The display name of the hub content.
hubContentInfo_hubContentDisplayName :: Lens.Lens' HubContentInfo (Prelude.Maybe Prelude.Text)
hubContentInfo_hubContentDisplayName :: Lens' HubContentInfo (Maybe Text)
hubContentInfo_hubContentDisplayName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HubContentInfo' {Maybe Text
hubContentDisplayName :: Maybe Text
$sel:hubContentDisplayName:HubContentInfo' :: HubContentInfo -> Maybe Text
hubContentDisplayName} -> Maybe Text
hubContentDisplayName) (\s :: HubContentInfo
s@HubContentInfo' {} Maybe Text
a -> HubContentInfo
s {$sel:hubContentDisplayName:HubContentInfo' :: Maybe Text
hubContentDisplayName = Maybe Text
a} :: HubContentInfo)

-- | The searchable keywords for the hub content.
hubContentInfo_hubContentSearchKeywords :: Lens.Lens' HubContentInfo (Prelude.Maybe [Prelude.Text])
hubContentInfo_hubContentSearchKeywords :: Lens' HubContentInfo (Maybe [Text])
hubContentInfo_hubContentSearchKeywords = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HubContentInfo' {Maybe [Text]
hubContentSearchKeywords :: Maybe [Text]
$sel:hubContentSearchKeywords:HubContentInfo' :: HubContentInfo -> Maybe [Text]
hubContentSearchKeywords} -> Maybe [Text]
hubContentSearchKeywords) (\s :: HubContentInfo
s@HubContentInfo' {} Maybe [Text]
a -> HubContentInfo
s {$sel:hubContentSearchKeywords:HubContentInfo' :: Maybe [Text]
hubContentSearchKeywords = Maybe [Text]
a} :: HubContentInfo) 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 s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The name of the hub content.
hubContentInfo_hubContentName :: Lens.Lens' HubContentInfo Prelude.Text
hubContentInfo_hubContentName :: Lens' HubContentInfo Text
hubContentInfo_hubContentName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HubContentInfo' {Text
hubContentName :: Text
$sel:hubContentName:HubContentInfo' :: HubContentInfo -> Text
hubContentName} -> Text
hubContentName) (\s :: HubContentInfo
s@HubContentInfo' {} Text
a -> HubContentInfo
s {$sel:hubContentName:HubContentInfo' :: Text
hubContentName = Text
a} :: HubContentInfo)

-- | The Amazon Resource Name (ARN) of the hub content.
hubContentInfo_hubContentArn :: Lens.Lens' HubContentInfo Prelude.Text
hubContentInfo_hubContentArn :: Lens' HubContentInfo Text
hubContentInfo_hubContentArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HubContentInfo' {Text
hubContentArn :: Text
$sel:hubContentArn:HubContentInfo' :: HubContentInfo -> Text
hubContentArn} -> Text
hubContentArn) (\s :: HubContentInfo
s@HubContentInfo' {} Text
a -> HubContentInfo
s {$sel:hubContentArn:HubContentInfo' :: Text
hubContentArn = Text
a} :: HubContentInfo)

-- | The version of the hub content.
hubContentInfo_hubContentVersion :: Lens.Lens' HubContentInfo Prelude.Text
hubContentInfo_hubContentVersion :: Lens' HubContentInfo Text
hubContentInfo_hubContentVersion = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HubContentInfo' {Text
hubContentVersion :: Text
$sel:hubContentVersion:HubContentInfo' :: HubContentInfo -> Text
hubContentVersion} -> Text
hubContentVersion) (\s :: HubContentInfo
s@HubContentInfo' {} Text
a -> HubContentInfo
s {$sel:hubContentVersion:HubContentInfo' :: Text
hubContentVersion = Text
a} :: HubContentInfo)

-- | The type of hub content.
hubContentInfo_hubContentType :: Lens.Lens' HubContentInfo HubContentType
hubContentInfo_hubContentType :: Lens' HubContentInfo HubContentType
hubContentInfo_hubContentType = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HubContentInfo' {HubContentType
hubContentType :: HubContentType
$sel:hubContentType:HubContentInfo' :: HubContentInfo -> HubContentType
hubContentType} -> HubContentType
hubContentType) (\s :: HubContentInfo
s@HubContentInfo' {} HubContentType
a -> HubContentInfo
s {$sel:hubContentType:HubContentInfo' :: HubContentType
hubContentType = HubContentType
a} :: HubContentInfo)

-- | The version of the hub content document schema.
hubContentInfo_documentSchemaVersion :: Lens.Lens' HubContentInfo Prelude.Text
hubContentInfo_documentSchemaVersion :: Lens' HubContentInfo Text
hubContentInfo_documentSchemaVersion = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HubContentInfo' {Text
documentSchemaVersion :: Text
$sel:documentSchemaVersion:HubContentInfo' :: HubContentInfo -> Text
documentSchemaVersion} -> Text
documentSchemaVersion) (\s :: HubContentInfo
s@HubContentInfo' {} Text
a -> HubContentInfo
s {$sel:documentSchemaVersion:HubContentInfo' :: Text
documentSchemaVersion = Text
a} :: HubContentInfo)

-- | The status of the hub content.
hubContentInfo_hubContentStatus :: Lens.Lens' HubContentInfo HubContentStatus
hubContentInfo_hubContentStatus :: Lens' HubContentInfo HubContentStatus
hubContentInfo_hubContentStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HubContentInfo' {HubContentStatus
hubContentStatus :: HubContentStatus
$sel:hubContentStatus:HubContentInfo' :: HubContentInfo -> HubContentStatus
hubContentStatus} -> HubContentStatus
hubContentStatus) (\s :: HubContentInfo
s@HubContentInfo' {} HubContentStatus
a -> HubContentInfo
s {$sel:hubContentStatus:HubContentInfo' :: HubContentStatus
hubContentStatus = HubContentStatus
a} :: HubContentInfo)

-- | The date and time that the hub content was created.
hubContentInfo_creationTime :: Lens.Lens' HubContentInfo Prelude.UTCTime
hubContentInfo_creationTime :: Lens' HubContentInfo UTCTime
hubContentInfo_creationTime = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HubContentInfo' {POSIX
creationTime :: POSIX
$sel:creationTime:HubContentInfo' :: HubContentInfo -> POSIX
creationTime} -> POSIX
creationTime) (\s :: HubContentInfo
s@HubContentInfo' {} POSIX
a -> HubContentInfo
s {$sel:creationTime:HubContentInfo' :: POSIX
creationTime = POSIX
a} :: HubContentInfo) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

instance Data.FromJSON HubContentInfo where
  parseJSON :: Value -> Parser HubContentInfo
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"HubContentInfo"
      ( \Object
x ->
          Maybe Text
-> Maybe Text
-> Maybe [Text]
-> Text
-> Text
-> Text
-> HubContentType
-> Text
-> HubContentStatus
-> POSIX
-> HubContentInfo
HubContentInfo'
            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
"HubContentDescription")
            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
"HubContentDisplayName")
            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
"HubContentSearchKeywords"
                            forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty
                        )
            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
"HubContentName")
            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
"HubContentArn")
            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
"HubContentVersion")
            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
"HubContentType")
            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
"DocumentSchemaVersion")
            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
"HubContentStatus")
            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")
      )

instance Prelude.Hashable HubContentInfo where
  hashWithSalt :: Int -> HubContentInfo -> Int
hashWithSalt Int
_salt HubContentInfo' {Maybe [Text]
Maybe Text
Text
POSIX
HubContentStatus
HubContentType
creationTime :: POSIX
hubContentStatus :: HubContentStatus
documentSchemaVersion :: Text
hubContentType :: HubContentType
hubContentVersion :: Text
hubContentArn :: Text
hubContentName :: Text
hubContentSearchKeywords :: Maybe [Text]
hubContentDisplayName :: Maybe Text
hubContentDescription :: Maybe Text
$sel:creationTime:HubContentInfo' :: HubContentInfo -> POSIX
$sel:hubContentStatus:HubContentInfo' :: HubContentInfo -> HubContentStatus
$sel:documentSchemaVersion:HubContentInfo' :: HubContentInfo -> Text
$sel:hubContentType:HubContentInfo' :: HubContentInfo -> HubContentType
$sel:hubContentVersion:HubContentInfo' :: HubContentInfo -> Text
$sel:hubContentArn:HubContentInfo' :: HubContentInfo -> Text
$sel:hubContentName:HubContentInfo' :: HubContentInfo -> Text
$sel:hubContentSearchKeywords:HubContentInfo' :: HubContentInfo -> Maybe [Text]
$sel:hubContentDisplayName:HubContentInfo' :: HubContentInfo -> Maybe Text
$sel:hubContentDescription:HubContentInfo' :: HubContentInfo -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
hubContentDescription
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
hubContentDisplayName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [Text]
hubContentSearchKeywords
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
hubContentName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
hubContentArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
hubContentVersion
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` HubContentType
hubContentType
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
documentSchemaVersion
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` HubContentStatus
hubContentStatus
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` POSIX
creationTime

instance Prelude.NFData HubContentInfo where
  rnf :: HubContentInfo -> ()
rnf HubContentInfo' {Maybe [Text]
Maybe Text
Text
POSIX
HubContentStatus
HubContentType
creationTime :: POSIX
hubContentStatus :: HubContentStatus
documentSchemaVersion :: Text
hubContentType :: HubContentType
hubContentVersion :: Text
hubContentArn :: Text
hubContentName :: Text
hubContentSearchKeywords :: Maybe [Text]
hubContentDisplayName :: Maybe Text
hubContentDescription :: Maybe Text
$sel:creationTime:HubContentInfo' :: HubContentInfo -> POSIX
$sel:hubContentStatus:HubContentInfo' :: HubContentInfo -> HubContentStatus
$sel:documentSchemaVersion:HubContentInfo' :: HubContentInfo -> Text
$sel:hubContentType:HubContentInfo' :: HubContentInfo -> HubContentType
$sel:hubContentVersion:HubContentInfo' :: HubContentInfo -> Text
$sel:hubContentArn:HubContentInfo' :: HubContentInfo -> Text
$sel:hubContentName:HubContentInfo' :: HubContentInfo -> Text
$sel:hubContentSearchKeywords:HubContentInfo' :: HubContentInfo -> Maybe [Text]
$sel:hubContentDisplayName:HubContentInfo' :: HubContentInfo -> Maybe Text
$sel:hubContentDescription:HubContentInfo' :: HubContentInfo -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
hubContentDescription
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
hubContentDisplayName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe [Text]
hubContentSearchKeywords
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
hubContentName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
hubContentArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
hubContentVersion
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf HubContentType
hubContentType
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
documentSchemaVersion
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf HubContentStatus
hubContentStatus
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf POSIX
creationTime