{-# 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.FIS.Types.UpdateExperimentTemplateActionInputItem -- 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.FIS.Types.UpdateExperimentTemplateActionInputItem 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 an action for an experiment template. -- -- /See:/ 'newUpdateExperimentTemplateActionInputItem' smart constructor. data UpdateExperimentTemplateActionInputItem = UpdateExperimentTemplateActionInputItem' { -- | The ID of the action. actionId :: Prelude.Maybe Prelude.Text, -- | A description for the action. description :: Prelude.Maybe Prelude.Text, -- | The parameters for the action, if applicable. parameters :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text), -- | The name of the action that must be completed before the current action -- starts. Omit this parameter to run the action at the start of the -- experiment. startAfter :: Prelude.Maybe [Prelude.Text], -- | The targets for the action. targets :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text) } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateExperimentTemplateActionInputItem' 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: -- -- 'actionId', 'updateExperimentTemplateActionInputItem_actionId' - The ID of the action. -- -- 'description', 'updateExperimentTemplateActionInputItem_description' - A description for the action. -- -- 'parameters', 'updateExperimentTemplateActionInputItem_parameters' - The parameters for the action, if applicable. -- -- 'startAfter', 'updateExperimentTemplateActionInputItem_startAfter' - The name of the action that must be completed before the current action -- starts. Omit this parameter to run the action at the start of the -- experiment. -- -- 'targets', 'updateExperimentTemplateActionInputItem_targets' - The targets for the action. newUpdateExperimentTemplateActionInputItem :: UpdateExperimentTemplateActionInputItem newUpdateExperimentTemplateActionInputItem = UpdateExperimentTemplateActionInputItem' { actionId = Prelude.Nothing, description = Prelude.Nothing, parameters = Prelude.Nothing, startAfter = Prelude.Nothing, targets = Prelude.Nothing } -- | The ID of the action. updateExperimentTemplateActionInputItem_actionId :: Lens.Lens' UpdateExperimentTemplateActionInputItem (Prelude.Maybe Prelude.Text) updateExperimentTemplateActionInputItem_actionId = Lens.lens (\UpdateExperimentTemplateActionInputItem' {actionId} -> actionId) (\s@UpdateExperimentTemplateActionInputItem' {} a -> s {actionId = a} :: UpdateExperimentTemplateActionInputItem) -- | A description for the action. updateExperimentTemplateActionInputItem_description :: Lens.Lens' UpdateExperimentTemplateActionInputItem (Prelude.Maybe Prelude.Text) updateExperimentTemplateActionInputItem_description = Lens.lens (\UpdateExperimentTemplateActionInputItem' {description} -> description) (\s@UpdateExperimentTemplateActionInputItem' {} a -> s {description = a} :: UpdateExperimentTemplateActionInputItem) -- | The parameters for the action, if applicable. updateExperimentTemplateActionInputItem_parameters :: Lens.Lens' UpdateExperimentTemplateActionInputItem (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)) updateExperimentTemplateActionInputItem_parameters = Lens.lens (\UpdateExperimentTemplateActionInputItem' {parameters} -> parameters) (\s@UpdateExperimentTemplateActionInputItem' {} a -> s {parameters = a} :: UpdateExperimentTemplateActionInputItem) Prelude.. Lens.mapping Lens.coerced -- | The name of the action that must be completed before the current action -- starts. Omit this parameter to run the action at the start of the -- experiment. updateExperimentTemplateActionInputItem_startAfter :: Lens.Lens' UpdateExperimentTemplateActionInputItem (Prelude.Maybe [Prelude.Text]) updateExperimentTemplateActionInputItem_startAfter = Lens.lens (\UpdateExperimentTemplateActionInputItem' {startAfter} -> startAfter) (\s@UpdateExperimentTemplateActionInputItem' {} a -> s {startAfter = a} :: UpdateExperimentTemplateActionInputItem) Prelude.. Lens.mapping Lens.coerced -- | The targets for the action. updateExperimentTemplateActionInputItem_targets :: Lens.Lens' UpdateExperimentTemplateActionInputItem (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text)) updateExperimentTemplateActionInputItem_targets = Lens.lens (\UpdateExperimentTemplateActionInputItem' {targets} -> targets) (\s@UpdateExperimentTemplateActionInputItem' {} a -> s {targets = a} :: UpdateExperimentTemplateActionInputItem) Prelude.. Lens.mapping Lens.coerced instance Prelude.Hashable UpdateExperimentTemplateActionInputItem where hashWithSalt _salt UpdateExperimentTemplateActionInputItem' {..} = _salt `Prelude.hashWithSalt` actionId `Prelude.hashWithSalt` description `Prelude.hashWithSalt` parameters `Prelude.hashWithSalt` startAfter `Prelude.hashWithSalt` targets instance Prelude.NFData UpdateExperimentTemplateActionInputItem where rnf UpdateExperimentTemplateActionInputItem' {..} = Prelude.rnf actionId `Prelude.seq` Prelude.rnf description `Prelude.seq` Prelude.rnf parameters `Prelude.seq` Prelude.rnf startAfter `Prelude.seq` Prelude.rnf targets instance Data.ToJSON UpdateExperimentTemplateActionInputItem where toJSON UpdateExperimentTemplateActionInputItem' {..} = Data.object ( Prelude.catMaybes [ ("actionId" Data..=) Prelude.<$> actionId, ("description" Data..=) Prelude.<$> description, ("parameters" Data..=) Prelude.<$> parameters, ("startAfter" Data..=) Prelude.<$> startAfter, ("targets" Data..=) Prelude.<$> targets ] )