amazonka-sagemaker-2.0: Amazon SageMaker Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.SageMaker.Types.ModelInfrastructureConfig

Description

 
Synopsis

Documentation

data ModelInfrastructureConfig Source #

The configuration for the infrastructure that the model will be deployed to.

See: newModelInfrastructureConfig smart constructor.

Constructors

ModelInfrastructureConfig' 

Fields

Instances

Instances details
FromJSON ModelInfrastructureConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelInfrastructureConfig

ToJSON ModelInfrastructureConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelInfrastructureConfig

Generic ModelInfrastructureConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelInfrastructureConfig

Associated Types

type Rep ModelInfrastructureConfig :: Type -> Type #

Read ModelInfrastructureConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelInfrastructureConfig

Show ModelInfrastructureConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelInfrastructureConfig

NFData ModelInfrastructureConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelInfrastructureConfig

Eq ModelInfrastructureConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelInfrastructureConfig

Hashable ModelInfrastructureConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelInfrastructureConfig

type Rep ModelInfrastructureConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelInfrastructureConfig

type Rep ModelInfrastructureConfig = D1 ('MetaData "ModelInfrastructureConfig" "Amazonka.SageMaker.Types.ModelInfrastructureConfig" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "ModelInfrastructureConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "infrastructureType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelInfrastructureType) :*: S1 ('MetaSel ('Just "realTimeInferenceConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 RealTimeInferenceConfig)))

newModelInfrastructureConfig Source #

Create a value of ModelInfrastructureConfig with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:infrastructureType:ModelInfrastructureConfig', modelInfrastructureConfig_infrastructureType - The inference option to which to deploy your model. Possible values are the following:

  • RealTime: Deploy to real-time inference.

$sel:realTimeInferenceConfig:ModelInfrastructureConfig', modelInfrastructureConfig_realTimeInferenceConfig - The infrastructure configuration for deploying the model to real-time inference.

modelInfrastructureConfig_infrastructureType :: Lens' ModelInfrastructureConfig ModelInfrastructureType Source #

The inference option to which to deploy your model. Possible values are the following:

  • RealTime: Deploy to real-time inference.

modelInfrastructureConfig_realTimeInferenceConfig :: Lens' ModelInfrastructureConfig RealTimeInferenceConfig Source #

The infrastructure configuration for deploying the model to real-time inference.