{-# 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.ElasticSearch.Types.DryRunResults -- 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.ElasticSearch.Types.DryRunResults 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 -- | /See:/ 'newDryRunResults' smart constructor. data DryRunResults = DryRunResults' { -- | Specifies the deployment mechanism through which the update shall be -- applied on the domain. Possible responses are @Blue\/Green@ (The update -- will require a blue\/green deployment.) @DynamicUpdate@ (The update can -- be applied in-place without a Blue\/Green deployment required.) -- @Undetermined@ (The domain is undergoing an update which needs to -- complete before the deployment type can be predicted.) @None@ (The -- configuration change matches the current configuration and will not -- result in any update.) deploymentType :: Prelude.Maybe Prelude.Text, -- | Contains an optional message associated with the DryRunResults. message :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DryRunResults' 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: -- -- 'deploymentType', 'dryRunResults_deploymentType' - Specifies the deployment mechanism through which the update shall be -- applied on the domain. Possible responses are @Blue\/Green@ (The update -- will require a blue\/green deployment.) @DynamicUpdate@ (The update can -- be applied in-place without a Blue\/Green deployment required.) -- @Undetermined@ (The domain is undergoing an update which needs to -- complete before the deployment type can be predicted.) @None@ (The -- configuration change matches the current configuration and will not -- result in any update.) -- -- 'message', 'dryRunResults_message' - Contains an optional message associated with the DryRunResults. newDryRunResults :: DryRunResults newDryRunResults = DryRunResults' { deploymentType = Prelude.Nothing, message = Prelude.Nothing } -- | Specifies the deployment mechanism through which the update shall be -- applied on the domain. Possible responses are @Blue\/Green@ (The update -- will require a blue\/green deployment.) @DynamicUpdate@ (The update can -- be applied in-place without a Blue\/Green deployment required.) -- @Undetermined@ (The domain is undergoing an update which needs to -- complete before the deployment type can be predicted.) @None@ (The -- configuration change matches the current configuration and will not -- result in any update.) dryRunResults_deploymentType :: Lens.Lens' DryRunResults (Prelude.Maybe Prelude.Text) dryRunResults_deploymentType = Lens.lens (\DryRunResults' {deploymentType} -> deploymentType) (\s@DryRunResults' {} a -> s {deploymentType = a} :: DryRunResults) -- | Contains an optional message associated with the DryRunResults. dryRunResults_message :: Lens.Lens' DryRunResults (Prelude.Maybe Prelude.Text) dryRunResults_message = Lens.lens (\DryRunResults' {message} -> message) (\s@DryRunResults' {} a -> s {message = a} :: DryRunResults) instance Data.FromJSON DryRunResults where parseJSON = Data.withObject "DryRunResults" ( \x -> DryRunResults' Prelude.<$> (x Data..:? "DeploymentType") Prelude.<*> (x Data..:? "Message") ) instance Prelude.Hashable DryRunResults where hashWithSalt _salt DryRunResults' {..} = _salt `Prelude.hashWithSalt` deploymentType `Prelude.hashWithSalt` message instance Prelude.NFData DryRunResults where rnf DryRunResults' {..} = Prelude.rnf deploymentType `Prelude.seq` Prelude.rnf message