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

Description

 
Synopsis

Documentation

data ProductionVariantStatus Source #

Describes the status of the production variant.

See: newProductionVariantStatus smart constructor.

Constructors

ProductionVariantStatus' 

Fields

  • startTime :: Maybe POSIX

    The start time of the current status change.

  • statusMessage :: Maybe Text

    A message that describes the status of the production variant.

  • status :: VariantStatus

    The endpoint variant status which describes the current deployment stage status or operational status.

    • Creating: Creating inference resources for the production variant.
    • Deleting: Terminating inference resources for the production variant.
    • Updating: Updating capacity for the production variant.
    • ActivatingTraffic: Turning on traffic for the production variant.
    • Baking: Waiting period to monitor the CloudWatch alarms in the automatic rollback configuration.

Instances

Instances details
FromJSON ProductionVariantStatus Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProductionVariantStatus

Generic ProductionVariantStatus Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProductionVariantStatus

Associated Types

type Rep ProductionVariantStatus :: Type -> Type #

Read ProductionVariantStatus Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProductionVariantStatus

Show ProductionVariantStatus Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProductionVariantStatus

NFData ProductionVariantStatus Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProductionVariantStatus

Methods

rnf :: ProductionVariantStatus -> () #

Eq ProductionVariantStatus Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProductionVariantStatus

Hashable ProductionVariantStatus Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProductionVariantStatus

type Rep ProductionVariantStatus Source # 
Instance details

Defined in Amazonka.SageMaker.Types.ProductionVariantStatus

type Rep ProductionVariantStatus = D1 ('MetaData "ProductionVariantStatus" "Amazonka.SageMaker.Types.ProductionVariantStatus" "amazonka-sagemaker-2.0-9SyrKZ4KqhsL1qX9u3ILA3" 'False) (C1 ('MetaCons "ProductionVariantStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 VariantStatus))))

newProductionVariantStatus Source #

Create a value of ProductionVariantStatus 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:startTime:ProductionVariantStatus', productionVariantStatus_startTime - The start time of the current status change.

$sel:statusMessage:ProductionVariantStatus', productionVariantStatus_statusMessage - A message that describes the status of the production variant.

$sel:status:ProductionVariantStatus', productionVariantStatus_status - The endpoint variant status which describes the current deployment stage status or operational status.

  • Creating: Creating inference resources for the production variant.
  • Deleting: Terminating inference resources for the production variant.
  • Updating: Updating capacity for the production variant.
  • ActivatingTraffic: Turning on traffic for the production variant.
  • Baking: Waiting period to monitor the CloudWatch alarms in the automatic rollback configuration.

productionVariantStatus_startTime :: Lens' ProductionVariantStatus (Maybe UTCTime) Source #

The start time of the current status change.

productionVariantStatus_statusMessage :: Lens' ProductionVariantStatus (Maybe Text) Source #

A message that describes the status of the production variant.

productionVariantStatus_status :: Lens' ProductionVariantStatus VariantStatus Source #

The endpoint variant status which describes the current deployment stage status or operational status.

  • Creating: Creating inference resources for the production variant.
  • Deleting: Terminating inference resources for the production variant.
  • Updating: Updating capacity for the production variant.
  • ActivatingTraffic: Turning on traffic for the production variant.
  • Baking: Waiting period to monitor the CloudWatch alarms in the automatic rollback configuration.