{-# 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.BatchDescribeModelPackageSummary
-- 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.BatchDescribeModelPackageSummary 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.InferenceSpecification
import Amazonka.SageMaker.Types.ModelApprovalStatus
import Amazonka.SageMaker.Types.ModelPackageStatus

-- | Provides summary information about the model package.
--
-- /See:/ 'newBatchDescribeModelPackageSummary' smart constructor.
data BatchDescribeModelPackageSummary = BatchDescribeModelPackageSummary'
  { -- | The approval status of the model.
    BatchDescribeModelPackageSummary -> Maybe ModelApprovalStatus
modelApprovalStatus :: Prelude.Maybe ModelApprovalStatus,
    -- | The description of the model package.
    BatchDescribeModelPackageSummary -> Maybe Text
modelPackageDescription :: Prelude.Maybe Prelude.Text,
    -- | The version number of a versioned model.
    BatchDescribeModelPackageSummary -> Maybe Natural
modelPackageVersion :: Prelude.Maybe Prelude.Natural,
    -- | The group name for the model package
    BatchDescribeModelPackageSummary -> Text
modelPackageGroupName :: Prelude.Text,
    -- | The Amazon Resource Name (ARN) of the model package.
    BatchDescribeModelPackageSummary -> Text
modelPackageArn :: Prelude.Text,
    -- | The creation time of the mortgage package summary.
    BatchDescribeModelPackageSummary -> POSIX
creationTime :: Data.POSIX,
    BatchDescribeModelPackageSummary -> InferenceSpecification
inferenceSpecification :: InferenceSpecification,
    -- | The status of the mortgage package.
    BatchDescribeModelPackageSummary -> ModelPackageStatus
modelPackageStatus :: ModelPackageStatus
  }
  deriving (BatchDescribeModelPackageSummary
-> BatchDescribeModelPackageSummary -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: BatchDescribeModelPackageSummary
-> BatchDescribeModelPackageSummary -> Bool
$c/= :: BatchDescribeModelPackageSummary
-> BatchDescribeModelPackageSummary -> Bool
== :: BatchDescribeModelPackageSummary
-> BatchDescribeModelPackageSummary -> Bool
$c== :: BatchDescribeModelPackageSummary
-> BatchDescribeModelPackageSummary -> Bool
Prelude.Eq, ReadPrec [BatchDescribeModelPackageSummary]
ReadPrec BatchDescribeModelPackageSummary
Int -> ReadS BatchDescribeModelPackageSummary
ReadS [BatchDescribeModelPackageSummary]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [BatchDescribeModelPackageSummary]
$creadListPrec :: ReadPrec [BatchDescribeModelPackageSummary]
readPrec :: ReadPrec BatchDescribeModelPackageSummary
$creadPrec :: ReadPrec BatchDescribeModelPackageSummary
readList :: ReadS [BatchDescribeModelPackageSummary]
$creadList :: ReadS [BatchDescribeModelPackageSummary]
readsPrec :: Int -> ReadS BatchDescribeModelPackageSummary
$creadsPrec :: Int -> ReadS BatchDescribeModelPackageSummary
Prelude.Read, Int -> BatchDescribeModelPackageSummary -> ShowS
[BatchDescribeModelPackageSummary] -> ShowS
BatchDescribeModelPackageSummary -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [BatchDescribeModelPackageSummary] -> ShowS
$cshowList :: [BatchDescribeModelPackageSummary] -> ShowS
show :: BatchDescribeModelPackageSummary -> String
$cshow :: BatchDescribeModelPackageSummary -> String
showsPrec :: Int -> BatchDescribeModelPackageSummary -> ShowS
$cshowsPrec :: Int -> BatchDescribeModelPackageSummary -> ShowS
Prelude.Show, forall x.
Rep BatchDescribeModelPackageSummary x
-> BatchDescribeModelPackageSummary
forall x.
BatchDescribeModelPackageSummary
-> Rep BatchDescribeModelPackageSummary x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep BatchDescribeModelPackageSummary x
-> BatchDescribeModelPackageSummary
$cfrom :: forall x.
BatchDescribeModelPackageSummary
-> Rep BatchDescribeModelPackageSummary x
Prelude.Generic)

-- |
-- Create a value of 'BatchDescribeModelPackageSummary' 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:
--
-- 'modelApprovalStatus', 'batchDescribeModelPackageSummary_modelApprovalStatus' - The approval status of the model.
--
-- 'modelPackageDescription', 'batchDescribeModelPackageSummary_modelPackageDescription' - The description of the model package.
--
-- 'modelPackageVersion', 'batchDescribeModelPackageSummary_modelPackageVersion' - The version number of a versioned model.
--
-- 'modelPackageGroupName', 'batchDescribeModelPackageSummary_modelPackageGroupName' - The group name for the model package
--
-- 'modelPackageArn', 'batchDescribeModelPackageSummary_modelPackageArn' - The Amazon Resource Name (ARN) of the model package.
--
-- 'creationTime', 'batchDescribeModelPackageSummary_creationTime' - The creation time of the mortgage package summary.
--
-- 'inferenceSpecification', 'batchDescribeModelPackageSummary_inferenceSpecification' - Undocumented member.
--
-- 'modelPackageStatus', 'batchDescribeModelPackageSummary_modelPackageStatus' - The status of the mortgage package.
newBatchDescribeModelPackageSummary ::
  -- | 'modelPackageGroupName'
  Prelude.Text ->
  -- | 'modelPackageArn'
  Prelude.Text ->
  -- | 'creationTime'
  Prelude.UTCTime ->
  -- | 'inferenceSpecification'
  InferenceSpecification ->
  -- | 'modelPackageStatus'
  ModelPackageStatus ->
  BatchDescribeModelPackageSummary
newBatchDescribeModelPackageSummary :: Text
-> Text
-> UTCTime
-> InferenceSpecification
-> ModelPackageStatus
-> BatchDescribeModelPackageSummary
newBatchDescribeModelPackageSummary
  Text
pModelPackageGroupName_
  Text
pModelPackageArn_
  UTCTime
pCreationTime_
  InferenceSpecification
pInferenceSpecification_
  ModelPackageStatus
pModelPackageStatus_ =
    BatchDescribeModelPackageSummary'
      { $sel:modelApprovalStatus:BatchDescribeModelPackageSummary' :: Maybe ModelApprovalStatus
modelApprovalStatus =
          forall a. Maybe a
Prelude.Nothing,
        $sel:modelPackageDescription:BatchDescribeModelPackageSummary' :: Maybe Text
modelPackageDescription = forall a. Maybe a
Prelude.Nothing,
        $sel:modelPackageVersion:BatchDescribeModelPackageSummary' :: Maybe Natural
modelPackageVersion = forall a. Maybe a
Prelude.Nothing,
        $sel:modelPackageGroupName:BatchDescribeModelPackageSummary' :: Text
modelPackageGroupName =
          Text
pModelPackageGroupName_,
        $sel:modelPackageArn:BatchDescribeModelPackageSummary' :: Text
modelPackageArn = Text
pModelPackageArn_,
        $sel:creationTime:BatchDescribeModelPackageSummary' :: POSIX
creationTime =
          forall (a :: Format). Iso' (Time a) UTCTime
Data._Time forall t b. AReview t b -> b -> t
Lens.# UTCTime
pCreationTime_,
        $sel:inferenceSpecification:BatchDescribeModelPackageSummary' :: InferenceSpecification
inferenceSpecification =
          InferenceSpecification
pInferenceSpecification_,
        $sel:modelPackageStatus:BatchDescribeModelPackageSummary' :: ModelPackageStatus
modelPackageStatus = ModelPackageStatus
pModelPackageStatus_
      }

-- | The approval status of the model.
batchDescribeModelPackageSummary_modelApprovalStatus :: Lens.Lens' BatchDescribeModelPackageSummary (Prelude.Maybe ModelApprovalStatus)
batchDescribeModelPackageSummary_modelApprovalStatus :: Lens' BatchDescribeModelPackageSummary (Maybe ModelApprovalStatus)
batchDescribeModelPackageSummary_modelApprovalStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BatchDescribeModelPackageSummary' {Maybe ModelApprovalStatus
modelApprovalStatus :: Maybe ModelApprovalStatus
$sel:modelApprovalStatus:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Maybe ModelApprovalStatus
modelApprovalStatus} -> Maybe ModelApprovalStatus
modelApprovalStatus) (\s :: BatchDescribeModelPackageSummary
s@BatchDescribeModelPackageSummary' {} Maybe ModelApprovalStatus
a -> BatchDescribeModelPackageSummary
s {$sel:modelApprovalStatus:BatchDescribeModelPackageSummary' :: Maybe ModelApprovalStatus
modelApprovalStatus = Maybe ModelApprovalStatus
a} :: BatchDescribeModelPackageSummary)

-- | The description of the model package.
batchDescribeModelPackageSummary_modelPackageDescription :: Lens.Lens' BatchDescribeModelPackageSummary (Prelude.Maybe Prelude.Text)
batchDescribeModelPackageSummary_modelPackageDescription :: Lens' BatchDescribeModelPackageSummary (Maybe Text)
batchDescribeModelPackageSummary_modelPackageDescription = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BatchDescribeModelPackageSummary' {Maybe Text
modelPackageDescription :: Maybe Text
$sel:modelPackageDescription:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Maybe Text
modelPackageDescription} -> Maybe Text
modelPackageDescription) (\s :: BatchDescribeModelPackageSummary
s@BatchDescribeModelPackageSummary' {} Maybe Text
a -> BatchDescribeModelPackageSummary
s {$sel:modelPackageDescription:BatchDescribeModelPackageSummary' :: Maybe Text
modelPackageDescription = Maybe Text
a} :: BatchDescribeModelPackageSummary)

-- | The version number of a versioned model.
batchDescribeModelPackageSummary_modelPackageVersion :: Lens.Lens' BatchDescribeModelPackageSummary (Prelude.Maybe Prelude.Natural)
batchDescribeModelPackageSummary_modelPackageVersion :: Lens' BatchDescribeModelPackageSummary (Maybe Natural)
batchDescribeModelPackageSummary_modelPackageVersion = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BatchDescribeModelPackageSummary' {Maybe Natural
modelPackageVersion :: Maybe Natural
$sel:modelPackageVersion:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Maybe Natural
modelPackageVersion} -> Maybe Natural
modelPackageVersion) (\s :: BatchDescribeModelPackageSummary
s@BatchDescribeModelPackageSummary' {} Maybe Natural
a -> BatchDescribeModelPackageSummary
s {$sel:modelPackageVersion:BatchDescribeModelPackageSummary' :: Maybe Natural
modelPackageVersion = Maybe Natural
a} :: BatchDescribeModelPackageSummary)

-- | The group name for the model package
batchDescribeModelPackageSummary_modelPackageGroupName :: Lens.Lens' BatchDescribeModelPackageSummary Prelude.Text
batchDescribeModelPackageSummary_modelPackageGroupName :: Lens' BatchDescribeModelPackageSummary Text
batchDescribeModelPackageSummary_modelPackageGroupName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BatchDescribeModelPackageSummary' {Text
modelPackageGroupName :: Text
$sel:modelPackageGroupName:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Text
modelPackageGroupName} -> Text
modelPackageGroupName) (\s :: BatchDescribeModelPackageSummary
s@BatchDescribeModelPackageSummary' {} Text
a -> BatchDescribeModelPackageSummary
s {$sel:modelPackageGroupName:BatchDescribeModelPackageSummary' :: Text
modelPackageGroupName = Text
a} :: BatchDescribeModelPackageSummary)

-- | The Amazon Resource Name (ARN) of the model package.
batchDescribeModelPackageSummary_modelPackageArn :: Lens.Lens' BatchDescribeModelPackageSummary Prelude.Text
batchDescribeModelPackageSummary_modelPackageArn :: Lens' BatchDescribeModelPackageSummary Text
batchDescribeModelPackageSummary_modelPackageArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BatchDescribeModelPackageSummary' {Text
modelPackageArn :: Text
$sel:modelPackageArn:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Text
modelPackageArn} -> Text
modelPackageArn) (\s :: BatchDescribeModelPackageSummary
s@BatchDescribeModelPackageSummary' {} Text
a -> BatchDescribeModelPackageSummary
s {$sel:modelPackageArn:BatchDescribeModelPackageSummary' :: Text
modelPackageArn = Text
a} :: BatchDescribeModelPackageSummary)

-- | The creation time of the mortgage package summary.
batchDescribeModelPackageSummary_creationTime :: Lens.Lens' BatchDescribeModelPackageSummary Prelude.UTCTime
batchDescribeModelPackageSummary_creationTime :: Lens' BatchDescribeModelPackageSummary UTCTime
batchDescribeModelPackageSummary_creationTime = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BatchDescribeModelPackageSummary' {POSIX
creationTime :: POSIX
$sel:creationTime:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> POSIX
creationTime} -> POSIX
creationTime) (\s :: BatchDescribeModelPackageSummary
s@BatchDescribeModelPackageSummary' {} POSIX
a -> BatchDescribeModelPackageSummary
s {$sel:creationTime:BatchDescribeModelPackageSummary' :: POSIX
creationTime = POSIX
a} :: BatchDescribeModelPackageSummary) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (a :: Format). Iso' (Time a) UTCTime
Data._Time

-- | Undocumented member.
batchDescribeModelPackageSummary_inferenceSpecification :: Lens.Lens' BatchDescribeModelPackageSummary InferenceSpecification
batchDescribeModelPackageSummary_inferenceSpecification :: Lens' BatchDescribeModelPackageSummary InferenceSpecification
batchDescribeModelPackageSummary_inferenceSpecification = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BatchDescribeModelPackageSummary' {InferenceSpecification
inferenceSpecification :: InferenceSpecification
$sel:inferenceSpecification:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> InferenceSpecification
inferenceSpecification} -> InferenceSpecification
inferenceSpecification) (\s :: BatchDescribeModelPackageSummary
s@BatchDescribeModelPackageSummary' {} InferenceSpecification
a -> BatchDescribeModelPackageSummary
s {$sel:inferenceSpecification:BatchDescribeModelPackageSummary' :: InferenceSpecification
inferenceSpecification = InferenceSpecification
a} :: BatchDescribeModelPackageSummary)

-- | The status of the mortgage package.
batchDescribeModelPackageSummary_modelPackageStatus :: Lens.Lens' BatchDescribeModelPackageSummary ModelPackageStatus
batchDescribeModelPackageSummary_modelPackageStatus :: Lens' BatchDescribeModelPackageSummary ModelPackageStatus
batchDescribeModelPackageSummary_modelPackageStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\BatchDescribeModelPackageSummary' {ModelPackageStatus
modelPackageStatus :: ModelPackageStatus
$sel:modelPackageStatus:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> ModelPackageStatus
modelPackageStatus} -> ModelPackageStatus
modelPackageStatus) (\s :: BatchDescribeModelPackageSummary
s@BatchDescribeModelPackageSummary' {} ModelPackageStatus
a -> BatchDescribeModelPackageSummary
s {$sel:modelPackageStatus:BatchDescribeModelPackageSummary' :: ModelPackageStatus
modelPackageStatus = ModelPackageStatus
a} :: BatchDescribeModelPackageSummary)

instance
  Data.FromJSON
    BatchDescribeModelPackageSummary
  where
  parseJSON :: Value -> Parser BatchDescribeModelPackageSummary
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"BatchDescribeModelPackageSummary"
      ( \Object
x ->
          Maybe ModelApprovalStatus
-> Maybe Text
-> Maybe Natural
-> Text
-> Text
-> POSIX
-> InferenceSpecification
-> ModelPackageStatus
-> BatchDescribeModelPackageSummary
BatchDescribeModelPackageSummary'
            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
"ModelApprovalStatus")
            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
"ModelPackageDescription")
            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
"ModelPackageVersion")
            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
"ModelPackageGroupName")
            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
"ModelPackageArn")
            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")
            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
"InferenceSpecification")
            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
"ModelPackageStatus")
      )

instance
  Prelude.Hashable
    BatchDescribeModelPackageSummary
  where
  hashWithSalt :: Int -> BatchDescribeModelPackageSummary -> Int
hashWithSalt
    Int
_salt
    BatchDescribeModelPackageSummary' {Maybe Natural
Maybe Text
Maybe ModelApprovalStatus
Text
POSIX
ModelPackageStatus
InferenceSpecification
modelPackageStatus :: ModelPackageStatus
inferenceSpecification :: InferenceSpecification
creationTime :: POSIX
modelPackageArn :: Text
modelPackageGroupName :: Text
modelPackageVersion :: Maybe Natural
modelPackageDescription :: Maybe Text
modelApprovalStatus :: Maybe ModelApprovalStatus
$sel:modelPackageStatus:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> ModelPackageStatus
$sel:inferenceSpecification:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> InferenceSpecification
$sel:creationTime:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> POSIX
$sel:modelPackageArn:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Text
$sel:modelPackageGroupName:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Text
$sel:modelPackageVersion:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Maybe Natural
$sel:modelPackageDescription:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Maybe Text
$sel:modelApprovalStatus:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Maybe ModelApprovalStatus
..} =
      Int
_salt
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe ModelApprovalStatus
modelApprovalStatus
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
modelPackageDescription
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
modelPackageVersion
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
modelPackageGroupName
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
modelPackageArn
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` POSIX
creationTime
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` InferenceSpecification
inferenceSpecification
        forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` ModelPackageStatus
modelPackageStatus

instance
  Prelude.NFData
    BatchDescribeModelPackageSummary
  where
  rnf :: BatchDescribeModelPackageSummary -> ()
rnf BatchDescribeModelPackageSummary' {Maybe Natural
Maybe Text
Maybe ModelApprovalStatus
Text
POSIX
ModelPackageStatus
InferenceSpecification
modelPackageStatus :: ModelPackageStatus
inferenceSpecification :: InferenceSpecification
creationTime :: POSIX
modelPackageArn :: Text
modelPackageGroupName :: Text
modelPackageVersion :: Maybe Natural
modelPackageDescription :: Maybe Text
modelApprovalStatus :: Maybe ModelApprovalStatus
$sel:modelPackageStatus:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> ModelPackageStatus
$sel:inferenceSpecification:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> InferenceSpecification
$sel:creationTime:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> POSIX
$sel:modelPackageArn:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Text
$sel:modelPackageGroupName:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Text
$sel:modelPackageVersion:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Maybe Natural
$sel:modelPackageDescription:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Maybe Text
$sel:modelApprovalStatus:BatchDescribeModelPackageSummary' :: BatchDescribeModelPackageSummary -> Maybe ModelApprovalStatus
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe ModelApprovalStatus
modelApprovalStatus
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
modelPackageDescription
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
modelPackageVersion
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
modelPackageGroupName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
modelPackageArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf POSIX
creationTime
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf InferenceSpecification
inferenceSpecification
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf ModelPackageStatus
modelPackageStatus