{-# 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.EMRServerless.Types.AutoStartConfig -- 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.EMRServerless.Types.AutoStartConfig 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 -- | The configuration for an application to automatically start on job -- submission. -- -- /See:/ 'newAutoStartConfig' smart constructor. data AutoStartConfig = AutoStartConfig' { -- | Enables the application to automatically start on job submission. -- Defaults to true. enabled :: Prelude.Maybe Prelude.Bool } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AutoStartConfig' 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: -- -- 'enabled', 'autoStartConfig_enabled' - Enables the application to automatically start on job submission. -- Defaults to true. newAutoStartConfig :: AutoStartConfig newAutoStartConfig = AutoStartConfig' {enabled = Prelude.Nothing} -- | Enables the application to automatically start on job submission. -- Defaults to true. autoStartConfig_enabled :: Lens.Lens' AutoStartConfig (Prelude.Maybe Prelude.Bool) autoStartConfig_enabled = Lens.lens (\AutoStartConfig' {enabled} -> enabled) (\s@AutoStartConfig' {} a -> s {enabled = a} :: AutoStartConfig) instance Data.FromJSON AutoStartConfig where parseJSON = Data.withObject "AutoStartConfig" ( \x -> AutoStartConfig' Prelude.<$> (x Data..:? "enabled") ) instance Prelude.Hashable AutoStartConfig where hashWithSalt _salt AutoStartConfig' {..} = _salt `Prelude.hashWithSalt` enabled instance Prelude.NFData AutoStartConfig where rnf AutoStartConfig' {..} = Prelude.rnf enabled instance Data.ToJSON AutoStartConfig where toJSON AutoStartConfig' {..} = Data.object ( Prelude.catMaybes [("enabled" Data..=) Prelude.<$> enabled] )