module Stratosphere.SageMaker.ModelPackage.InferenceSpecificationProperty (
        module Exports, InferenceSpecificationProperty(..),
        mkInferenceSpecificationProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.SageMaker.ModelPackage.ModelPackageContainerDefinitionProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data InferenceSpecificationProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-inferencespecification.html>
    InferenceSpecificationProperty {InferenceSpecificationProperty -> ()
haddock_workaround_ :: (),
                                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-inferencespecification.html#cfn-sagemaker-modelpackage-inferencespecification-containers>
                                    InferenceSpecificationProperty
-> [ModelPackageContainerDefinitionProperty]
containers :: [ModelPackageContainerDefinitionProperty],
                                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-inferencespecification.html#cfn-sagemaker-modelpackage-inferencespecification-supportedcontenttypes>
                                    InferenceSpecificationProperty -> ValueList Text
supportedContentTypes :: (ValueList Prelude.Text),
                                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-inferencespecification.html#cfn-sagemaker-modelpackage-inferencespecification-supportedrealtimeinferenceinstancetypes>
                                    InferenceSpecificationProperty -> Maybe (ValueList Text)
supportedRealtimeInferenceInstanceTypes :: (Prelude.Maybe (ValueList Prelude.Text)),
                                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-inferencespecification.html#cfn-sagemaker-modelpackage-inferencespecification-supportedresponsemimetypes>
                                    InferenceSpecificationProperty -> ValueList Text
supportedResponseMIMETypes :: (ValueList Prelude.Text),
                                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-inferencespecification.html#cfn-sagemaker-modelpackage-inferencespecification-supportedtransforminstancetypes>
                                    InferenceSpecificationProperty -> Maybe (ValueList Text)
supportedTransformInstanceTypes :: (Prelude.Maybe (ValueList Prelude.Text))}
  deriving stock (InferenceSpecificationProperty
-> InferenceSpecificationProperty -> Bool
(InferenceSpecificationProperty
 -> InferenceSpecificationProperty -> Bool)
-> (InferenceSpecificationProperty
    -> InferenceSpecificationProperty -> Bool)
-> Eq InferenceSpecificationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: InferenceSpecificationProperty
-> InferenceSpecificationProperty -> Bool
== :: InferenceSpecificationProperty
-> InferenceSpecificationProperty -> Bool
$c/= :: InferenceSpecificationProperty
-> InferenceSpecificationProperty -> Bool
/= :: InferenceSpecificationProperty
-> InferenceSpecificationProperty -> Bool
Prelude.Eq, Int -> InferenceSpecificationProperty -> ShowS
[InferenceSpecificationProperty] -> ShowS
InferenceSpecificationProperty -> String
(Int -> InferenceSpecificationProperty -> ShowS)
-> (InferenceSpecificationProperty -> String)
-> ([InferenceSpecificationProperty] -> ShowS)
-> Show InferenceSpecificationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> InferenceSpecificationProperty -> ShowS
showsPrec :: Int -> InferenceSpecificationProperty -> ShowS
$cshow :: InferenceSpecificationProperty -> String
show :: InferenceSpecificationProperty -> String
$cshowList :: [InferenceSpecificationProperty] -> ShowS
showList :: [InferenceSpecificationProperty] -> ShowS
Prelude.Show)
mkInferenceSpecificationProperty ::
  [ModelPackageContainerDefinitionProperty]
  -> ValueList Prelude.Text
     -> ValueList Prelude.Text -> InferenceSpecificationProperty
mkInferenceSpecificationProperty :: [ModelPackageContainerDefinitionProperty]
-> ValueList Text
-> ValueList Text
-> InferenceSpecificationProperty
mkInferenceSpecificationProperty
  [ModelPackageContainerDefinitionProperty]
containers
  ValueList Text
supportedContentTypes
  ValueList Text
supportedResponseMIMETypes
  = InferenceSpecificationProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), containers :: [ModelPackageContainerDefinitionProperty]
containers = [ModelPackageContainerDefinitionProperty]
containers,
       supportedContentTypes :: ValueList Text
supportedContentTypes = ValueList Text
supportedContentTypes,
       supportedResponseMIMETypes :: ValueList Text
supportedResponseMIMETypes = ValueList Text
supportedResponseMIMETypes,
       supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedRealtimeInferenceInstanceTypes = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
       supportedTransformInstanceTypes :: Maybe (ValueList Text)
supportedTransformInstanceTypes = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties InferenceSpecificationProperty where
  toResourceProperties :: InferenceSpecificationProperty -> ResourceProperties
toResourceProperties InferenceSpecificationProperty {[ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: InferenceSpecificationProperty -> ()
containers :: InferenceSpecificationProperty
-> [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: InferenceSpecificationProperty -> ValueList Text
supportedRealtimeInferenceInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
supportedResponseMIMETypes :: InferenceSpecificationProperty -> ValueList Text
supportedTransformInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::SageMaker::ModelPackage.InferenceSpecification",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
                           [Key
"Containers" Key -> [ModelPackageContainerDefinitionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= [ModelPackageContainerDefinitionProperty]
containers,
                            Key
"SupportedContentTypes" Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ValueList Text
supportedContentTypes,
                            Key
"SupportedResponseMIMETypes" Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ValueList Text
supportedResponseMIMETypes]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SupportedRealtimeInferenceInstanceTypes"
                                 (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
supportedRealtimeInferenceInstanceTypes,
                               Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SupportedTransformInstanceTypes"
                                 (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
supportedTransformInstanceTypes]))}
instance JSON.ToJSON InferenceSpecificationProperty where
  toJSON :: InferenceSpecificationProperty -> Value
toJSON InferenceSpecificationProperty {[ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: InferenceSpecificationProperty -> ()
containers :: InferenceSpecificationProperty
-> [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: InferenceSpecificationProperty -> ValueList Text
supportedRealtimeInferenceInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
supportedResponseMIMETypes :: InferenceSpecificationProperty -> ValueList Text
supportedTransformInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
              [Key
"Containers" Key -> [ModelPackageContainerDefinitionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= [ModelPackageContainerDefinitionProperty]
containers,
               Key
"SupportedContentTypes" Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ValueList Text
supportedContentTypes,
               Key
"SupportedResponseMIMETypes" Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ValueList Text
supportedResponseMIMETypes]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SupportedRealtimeInferenceInstanceTypes"
                    (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
supportedRealtimeInferenceInstanceTypes,
                  Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SupportedTransformInstanceTypes"
                    (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
supportedTransformInstanceTypes])))
instance Property "Containers" InferenceSpecificationProperty where
  type PropertyType "Containers" InferenceSpecificationProperty = [ModelPackageContainerDefinitionProperty]
  set :: PropertyType "Containers" InferenceSpecificationProperty
-> InferenceSpecificationProperty -> InferenceSpecificationProperty
set PropertyType "Containers" InferenceSpecificationProperty
newValue InferenceSpecificationProperty {[ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: InferenceSpecificationProperty -> ()
containers :: InferenceSpecificationProperty
-> [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: InferenceSpecificationProperty -> ValueList Text
supportedRealtimeInferenceInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
supportedResponseMIMETypes :: InferenceSpecificationProperty -> ValueList Text
supportedTransformInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
    = InferenceSpecificationProperty {containers :: [ModelPackageContainerDefinitionProperty]
containers = [ModelPackageContainerDefinitionProperty]
PropertyType "Containers" InferenceSpecificationProperty
newValue, Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: ()
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
haddock_workaround_ :: ()
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
instance Property "SupportedContentTypes" InferenceSpecificationProperty where
  type PropertyType "SupportedContentTypes" InferenceSpecificationProperty = ValueList Prelude.Text
  set :: PropertyType "SupportedContentTypes" InferenceSpecificationProperty
-> InferenceSpecificationProperty -> InferenceSpecificationProperty
set PropertyType "SupportedContentTypes" InferenceSpecificationProperty
newValue InferenceSpecificationProperty {[ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: InferenceSpecificationProperty -> ()
containers :: InferenceSpecificationProperty
-> [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: InferenceSpecificationProperty -> ValueList Text
supportedRealtimeInferenceInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
supportedResponseMIMETypes :: InferenceSpecificationProperty -> ValueList Text
supportedTransformInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
    = InferenceSpecificationProperty
        {supportedContentTypes :: ValueList Text
supportedContentTypes = PropertyType "SupportedContentTypes" InferenceSpecificationProperty
ValueList Text
newValue, [ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
instance Property "SupportedRealtimeInferenceInstanceTypes" InferenceSpecificationProperty where
  type PropertyType "SupportedRealtimeInferenceInstanceTypes" InferenceSpecificationProperty = ValueList Prelude.Text
  set :: PropertyType
  "SupportedRealtimeInferenceInstanceTypes"
  InferenceSpecificationProperty
-> InferenceSpecificationProperty -> InferenceSpecificationProperty
set PropertyType
  "SupportedRealtimeInferenceInstanceTypes"
  InferenceSpecificationProperty
newValue InferenceSpecificationProperty {[ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: InferenceSpecificationProperty -> ()
containers :: InferenceSpecificationProperty
-> [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: InferenceSpecificationProperty -> ValueList Text
supportedRealtimeInferenceInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
supportedResponseMIMETypes :: InferenceSpecificationProperty -> ValueList Text
supportedTransformInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
    = InferenceSpecificationProperty
        {supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedRealtimeInferenceInstanceTypes = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "SupportedRealtimeInferenceInstanceTypes"
  InferenceSpecificationProperty
ValueList Text
newValue,
         [ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
instance Property "SupportedResponseMIMETypes" InferenceSpecificationProperty where
  type PropertyType "SupportedResponseMIMETypes" InferenceSpecificationProperty = ValueList Prelude.Text
  set :: PropertyType
  "SupportedResponseMIMETypes" InferenceSpecificationProperty
-> InferenceSpecificationProperty -> InferenceSpecificationProperty
set PropertyType
  "SupportedResponseMIMETypes" InferenceSpecificationProperty
newValue InferenceSpecificationProperty {[ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: InferenceSpecificationProperty -> ()
containers :: InferenceSpecificationProperty
-> [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: InferenceSpecificationProperty -> ValueList Text
supportedRealtimeInferenceInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
supportedResponseMIMETypes :: InferenceSpecificationProperty -> ValueList Text
supportedTransformInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
    = InferenceSpecificationProperty
        {supportedResponseMIMETypes :: ValueList Text
supportedResponseMIMETypes = PropertyType
  "SupportedResponseMIMETypes" InferenceSpecificationProperty
ValueList Text
newValue, [ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedTransformInstanceTypes :: Maybe (ValueList Text)
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
instance Property "SupportedTransformInstanceTypes" InferenceSpecificationProperty where
  type PropertyType "SupportedTransformInstanceTypes" InferenceSpecificationProperty = ValueList Prelude.Text
  set :: PropertyType
  "SupportedTransformInstanceTypes" InferenceSpecificationProperty
-> InferenceSpecificationProperty -> InferenceSpecificationProperty
set PropertyType
  "SupportedTransformInstanceTypes" InferenceSpecificationProperty
newValue InferenceSpecificationProperty {[ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: InferenceSpecificationProperty -> ()
containers :: InferenceSpecificationProperty
-> [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: InferenceSpecificationProperty -> ValueList Text
supportedRealtimeInferenceInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
supportedResponseMIMETypes :: InferenceSpecificationProperty -> ValueList Text
supportedTransformInstanceTypes :: InferenceSpecificationProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
supportedTransformInstanceTypes :: Maybe (ValueList Text)
..}
    = InferenceSpecificationProperty
        {supportedTransformInstanceTypes :: Maybe (ValueList Text)
supportedTransformInstanceTypes = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "SupportedTransformInstanceTypes" InferenceSpecificationProperty
ValueList Text
newValue, [ModelPackageContainerDefinitionProperty]
Maybe (ValueList Text)
()
ValueList Text
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
haddock_workaround_ :: ()
containers :: [ModelPackageContainerDefinitionProperty]
supportedContentTypes :: ValueList Text
supportedRealtimeInferenceInstanceTypes :: Maybe (ValueList Text)
supportedResponseMIMETypes :: ValueList Text
..}