{-# 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.WellArchitected.Types.ChoiceAnswerSummary -- 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.WellArchitected.Types.ChoiceAnswerSummary 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 import Amazonka.WellArchitected.Types.ChoiceReason import Amazonka.WellArchitected.Types.ChoiceStatus -- | A choice summary that has been answered on a question in your workload. -- -- /See:/ 'newChoiceAnswerSummary' smart constructor. data ChoiceAnswerSummary = ChoiceAnswerSummary' { choiceId :: Prelude.Maybe Prelude.Text, -- | The reason why a choice is non-applicable to a question in your -- workload. reason :: Prelude.Maybe ChoiceReason, -- | The status of a choice. status :: Prelude.Maybe ChoiceStatus } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ChoiceAnswerSummary' 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: -- -- 'choiceId', 'choiceAnswerSummary_choiceId' - Undocumented member. -- -- 'reason', 'choiceAnswerSummary_reason' - The reason why a choice is non-applicable to a question in your -- workload. -- -- 'status', 'choiceAnswerSummary_status' - The status of a choice. newChoiceAnswerSummary :: ChoiceAnswerSummary newChoiceAnswerSummary = ChoiceAnswerSummary' { choiceId = Prelude.Nothing, reason = Prelude.Nothing, status = Prelude.Nothing } -- | Undocumented member. choiceAnswerSummary_choiceId :: Lens.Lens' ChoiceAnswerSummary (Prelude.Maybe Prelude.Text) choiceAnswerSummary_choiceId = Lens.lens (\ChoiceAnswerSummary' {choiceId} -> choiceId) (\s@ChoiceAnswerSummary' {} a -> s {choiceId = a} :: ChoiceAnswerSummary) -- | The reason why a choice is non-applicable to a question in your -- workload. choiceAnswerSummary_reason :: Lens.Lens' ChoiceAnswerSummary (Prelude.Maybe ChoiceReason) choiceAnswerSummary_reason = Lens.lens (\ChoiceAnswerSummary' {reason} -> reason) (\s@ChoiceAnswerSummary' {} a -> s {reason = a} :: ChoiceAnswerSummary) -- | The status of a choice. choiceAnswerSummary_status :: Lens.Lens' ChoiceAnswerSummary (Prelude.Maybe ChoiceStatus) choiceAnswerSummary_status = Lens.lens (\ChoiceAnswerSummary' {status} -> status) (\s@ChoiceAnswerSummary' {} a -> s {status = a} :: ChoiceAnswerSummary) instance Data.FromJSON ChoiceAnswerSummary where parseJSON = Data.withObject "ChoiceAnswerSummary" ( \x -> ChoiceAnswerSummary' Prelude.<$> (x Data..:? "ChoiceId") Prelude.<*> (x Data..:? "Reason") Prelude.<*> (x Data..:? "Status") ) instance Prelude.Hashable ChoiceAnswerSummary where hashWithSalt _salt ChoiceAnswerSummary' {..} = _salt `Prelude.hashWithSalt` choiceId `Prelude.hashWithSalt` reason `Prelude.hashWithSalt` status instance Prelude.NFData ChoiceAnswerSummary where rnf ChoiceAnswerSummary' {..} = Prelude.rnf choiceId `Prelude.seq` Prelude.rnf reason `Prelude.seq` Prelude.rnf status