{-# 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.ModelDeployConfig -- 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.ModelDeployConfig 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 -- | Specifies how to generate the endpoint name for an automatic one-click -- Autopilot model deployment. -- -- /See:/ 'newModelDeployConfig' smart constructor. data ModelDeployConfig = ModelDeployConfig' { -- | Set to @True@ to automatically generate an endpoint name for a one-click -- Autopilot model deployment; set to @False@ otherwise. The default value -- is @False@. -- -- If you set @AutoGenerateEndpointName@ to @True@, do not specify the -- @EndpointName@; otherwise a 400 error is thrown. autoGenerateEndpointName :: Prelude.Maybe Prelude.Bool, -- | Specifies the endpoint name to use for a one-click Autopilot model -- deployment if the endpoint name is not generated automatically. -- -- Specify the @EndpointName@ if and only if you set -- @AutoGenerateEndpointName@ to @False@; otherwise a 400 error is thrown. endpointName :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ModelDeployConfig' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'autoGenerateEndpointName', 'modelDeployConfig_autoGenerateEndpointName' - Set to @True@ to automatically generate an endpoint name for a one-click -- Autopilot model deployment; set to @False@ otherwise. The default value -- is @False@. -- -- If you set @AutoGenerateEndpointName@ to @True@, do not specify the -- @EndpointName@; otherwise a 400 error is thrown. -- -- 'endpointName', 'modelDeployConfig_endpointName' - Specifies the endpoint name to use for a one-click Autopilot model -- deployment if the endpoint name is not generated automatically. -- -- Specify the @EndpointName@ if and only if you set -- @AutoGenerateEndpointName@ to @False@; otherwise a 400 error is thrown. newModelDeployConfig :: ModelDeployConfig newModelDeployConfig = ModelDeployConfig' { autoGenerateEndpointName = Prelude.Nothing, endpointName = Prelude.Nothing } -- | Set to @True@ to automatically generate an endpoint name for a one-click -- Autopilot model deployment; set to @False@ otherwise. The default value -- is @False@. -- -- If you set @AutoGenerateEndpointName@ to @True@, do not specify the -- @EndpointName@; otherwise a 400 error is thrown. modelDeployConfig_autoGenerateEndpointName :: Lens.Lens' ModelDeployConfig (Prelude.Maybe Prelude.Bool) modelDeployConfig_autoGenerateEndpointName = Lens.lens (\ModelDeployConfig' {autoGenerateEndpointName} -> autoGenerateEndpointName) (\s@ModelDeployConfig' {} a -> s {autoGenerateEndpointName = a} :: ModelDeployConfig) -- | Specifies the endpoint name to use for a one-click Autopilot model -- deployment if the endpoint name is not generated automatically. -- -- Specify the @EndpointName@ if and only if you set -- @AutoGenerateEndpointName@ to @False@; otherwise a 400 error is thrown. modelDeployConfig_endpointName :: Lens.Lens' ModelDeployConfig (Prelude.Maybe Prelude.Text) modelDeployConfig_endpointName = Lens.lens (\ModelDeployConfig' {endpointName} -> endpointName) (\s@ModelDeployConfig' {} a -> s {endpointName = a} :: ModelDeployConfig) instance Data.FromJSON ModelDeployConfig where parseJSON = Data.withObject "ModelDeployConfig" ( \x -> ModelDeployConfig' Prelude.<$> (x Data..:? "AutoGenerateEndpointName") Prelude.<*> (x Data..:? "EndpointName") ) instance Prelude.Hashable ModelDeployConfig where hashWithSalt _salt ModelDeployConfig' {..} = _salt `Prelude.hashWithSalt` autoGenerateEndpointName `Prelude.hashWithSalt` endpointName instance Prelude.NFData ModelDeployConfig where rnf ModelDeployConfig' {..} = Prelude.rnf autoGenerateEndpointName `Prelude.seq` Prelude.rnf endpointName instance Data.ToJSON ModelDeployConfig where toJSON ModelDeployConfig' {..} = Data.object ( Prelude.catMaybes [ ("AutoGenerateEndpointName" Data..=) Prelude.<$> autoGenerateEndpointName, ("EndpointName" Data..=) Prelude.<$> endpointName ] )