{-# 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.DataBrew.Types.RecipeStep -- 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.DataBrew.Types.RecipeStep where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.DataBrew.Types.ConditionExpression import Amazonka.DataBrew.Types.RecipeAction import qualified Amazonka.Prelude as Prelude -- | Represents a single step from a DataBrew recipe to be performed. -- -- /See:/ 'newRecipeStep' smart constructor. data RecipeStep = RecipeStep' { -- | One or more conditions that must be met for the recipe step to succeed. -- -- All of the conditions in the array must be met. In other words, all of -- the conditions must be combined using a logical AND operation. conditionExpressions :: Prelude.Maybe [ConditionExpression], -- | The particular action to be performed in the recipe step. action :: RecipeAction } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'RecipeStep' 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: -- -- 'conditionExpressions', 'recipeStep_conditionExpressions' - One or more conditions that must be met for the recipe step to succeed. -- -- All of the conditions in the array must be met. In other words, all of -- the conditions must be combined using a logical AND operation. -- -- 'action', 'recipeStep_action' - The particular action to be performed in the recipe step. newRecipeStep :: -- | 'action' RecipeAction -> RecipeStep newRecipeStep pAction_ = RecipeStep' { conditionExpressions = Prelude.Nothing, action = pAction_ } -- | One or more conditions that must be met for the recipe step to succeed. -- -- All of the conditions in the array must be met. In other words, all of -- the conditions must be combined using a logical AND operation. recipeStep_conditionExpressions :: Lens.Lens' RecipeStep (Prelude.Maybe [ConditionExpression]) recipeStep_conditionExpressions = Lens.lens (\RecipeStep' {conditionExpressions} -> conditionExpressions) (\s@RecipeStep' {} a -> s {conditionExpressions = a} :: RecipeStep) Prelude.. Lens.mapping Lens.coerced -- | The particular action to be performed in the recipe step. recipeStep_action :: Lens.Lens' RecipeStep RecipeAction recipeStep_action = Lens.lens (\RecipeStep' {action} -> action) (\s@RecipeStep' {} a -> s {action = a} :: RecipeStep) instance Data.FromJSON RecipeStep where parseJSON = Data.withObject "RecipeStep" ( \x -> RecipeStep' Prelude.<$> ( x Data..:? "ConditionExpressions" Data..!= Prelude.mempty ) Prelude.<*> (x Data..: "Action") ) instance Prelude.Hashable RecipeStep where hashWithSalt _salt RecipeStep' {..} = _salt `Prelude.hashWithSalt` conditionExpressions `Prelude.hashWithSalt` action instance Prelude.NFData RecipeStep where rnf RecipeStep' {..} = Prelude.rnf conditionExpressions `Prelude.seq` Prelude.rnf action instance Data.ToJSON RecipeStep where toJSON RecipeStep' {..} = Data.object ( Prelude.catMaybes [ ("ConditionExpressions" Data..=) Prelude.<$> conditionExpressions, Prelude.Just ("Action" Data..= action) ] )