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.ModelVariantConfigSummary

Description

 
Synopsis

Documentation

data ModelVariantConfigSummary Source #

Summary of the deployment configuration of a model.

See: newModelVariantConfigSummary smart constructor.

Constructors

ModelVariantConfigSummary' 

Fields

  • modelName :: Text

    The name of the Amazon SageMaker Model entity.

  • variantName :: Text

    The name of the variant.

  • infrastructureConfig :: ModelInfrastructureConfig

    The configuration of the infrastructure that the model has been deployed to.

  • status :: ModelVariantStatus

    The status of deployment for the model variant on the hosted inference endpoint.

    • Creating - Amazon SageMaker is preparing the model variant on the hosted inference endpoint.
    • InService - The model variant is running on the hosted inference endpoint.
    • Updating - Amazon SageMaker is updating the model variant on the hosted inference endpoint.
    • Deleting - Amazon SageMaker is deleting the model variant on the hosted inference endpoint.
    • Deleted - The model variant has been deleted on the hosted inference endpoint. This can only happen after stopping the experiment.

Instances

Instances details
FromJSON ModelVariantConfigSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelVariantConfigSummary

Generic ModelVariantConfigSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelVariantConfigSummary

Associated Types

type Rep ModelVariantConfigSummary :: Type -> Type #

Read ModelVariantConfigSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelVariantConfigSummary

Show ModelVariantConfigSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelVariantConfigSummary

NFData ModelVariantConfigSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelVariantConfigSummary

Eq ModelVariantConfigSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelVariantConfigSummary

Hashable ModelVariantConfigSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelVariantConfigSummary

type Rep ModelVariantConfigSummary Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ModelVariantConfigSummary

type Rep ModelVariantConfigSummary = D1 ('MetaData "ModelVariantConfigSummary" "Amazonka.SageMaker.Types.ModelVariantConfigSummary" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "ModelVariantConfigSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "modelName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "variantName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "infrastructureConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelInfrastructureConfig) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ModelVariantStatus))))

newModelVariantConfigSummary Source #

Create a value of ModelVariantConfigSummary 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:modelName:ModelVariantConfigSummary', modelVariantConfigSummary_modelName - The name of the Amazon SageMaker Model entity.

$sel:variantName:ModelVariantConfigSummary', modelVariantConfigSummary_variantName - The name of the variant.

$sel:infrastructureConfig:ModelVariantConfigSummary', modelVariantConfigSummary_infrastructureConfig - The configuration of the infrastructure that the model has been deployed to.

$sel:status:ModelVariantConfigSummary', modelVariantConfigSummary_status - The status of deployment for the model variant on the hosted inference endpoint.

  • Creating - Amazon SageMaker is preparing the model variant on the hosted inference endpoint.
  • InService - The model variant is running on the hosted inference endpoint.
  • Updating - Amazon SageMaker is updating the model variant on the hosted inference endpoint.
  • Deleting - Amazon SageMaker is deleting the model variant on the hosted inference endpoint.
  • Deleted - The model variant has been deleted on the hosted inference endpoint. This can only happen after stopping the experiment.

modelVariantConfigSummary_modelName :: Lens' ModelVariantConfigSummary Text Source #

The name of the Amazon SageMaker Model entity.

modelVariantConfigSummary_infrastructureConfig :: Lens' ModelVariantConfigSummary ModelInfrastructureConfig Source #

The configuration of the infrastructure that the model has been deployed to.

modelVariantConfigSummary_status :: Lens' ModelVariantConfigSummary ModelVariantStatus Source #

The status of deployment for the model variant on the hosted inference endpoint.

  • Creating - Amazon SageMaker is preparing the model variant on the hosted inference endpoint.
  • InService - The model variant is running on the hosted inference endpoint.
  • Updating - Amazon SageMaker is updating the model variant on the hosted inference endpoint.
  • Deleting - Amazon SageMaker is deleting the model variant on the hosted inference endpoint.
  • Deleted - The model variant has been deleted on the hosted inference endpoint. This can only happen after stopping the experiment.