{-# 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.SESV2.Types.ReviewDetails -- 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.SESV2.Types.ReviewDetails 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.SESV2.Types.ReviewStatus -- | An object that contains information about your account details review. -- -- /See:/ 'newReviewDetails' smart constructor. data ReviewDetails = ReviewDetails' { -- | The associated support center case ID (if any). caseId :: Prelude.Maybe Prelude.Text, -- | The status of the latest review of your account. The status can be one -- of the following: -- -- - @PENDING@ – We have received your appeal and are in the process of -- reviewing it. -- -- - @GRANTED@ – Your appeal has been reviewed and your production access -- has been granted. -- -- - @DENIED@ – Your appeal has been reviewed and your production access -- has been denied. -- -- - @FAILED@ – An internal error occurred and we didn\'t receive your -- appeal. You can submit your appeal again. status :: Prelude.Maybe ReviewStatus } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ReviewDetails' 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: -- -- 'caseId', 'reviewDetails_caseId' - The associated support center case ID (if any). -- -- 'status', 'reviewDetails_status' - The status of the latest review of your account. The status can be one -- of the following: -- -- - @PENDING@ – We have received your appeal and are in the process of -- reviewing it. -- -- - @GRANTED@ – Your appeal has been reviewed and your production access -- has been granted. -- -- - @DENIED@ – Your appeal has been reviewed and your production access -- has been denied. -- -- - @FAILED@ – An internal error occurred and we didn\'t receive your -- appeal. You can submit your appeal again. newReviewDetails :: ReviewDetails newReviewDetails = ReviewDetails' { caseId = Prelude.Nothing, status = Prelude.Nothing } -- | The associated support center case ID (if any). reviewDetails_caseId :: Lens.Lens' ReviewDetails (Prelude.Maybe Prelude.Text) reviewDetails_caseId = Lens.lens (\ReviewDetails' {caseId} -> caseId) (\s@ReviewDetails' {} a -> s {caseId = a} :: ReviewDetails) -- | The status of the latest review of your account. The status can be one -- of the following: -- -- - @PENDING@ – We have received your appeal and are in the process of -- reviewing it. -- -- - @GRANTED@ – Your appeal has been reviewed and your production access -- has been granted. -- -- - @DENIED@ – Your appeal has been reviewed and your production access -- has been denied. -- -- - @FAILED@ – An internal error occurred and we didn\'t receive your -- appeal. You can submit your appeal again. reviewDetails_status :: Lens.Lens' ReviewDetails (Prelude.Maybe ReviewStatus) reviewDetails_status = Lens.lens (\ReviewDetails' {status} -> status) (\s@ReviewDetails' {} a -> s {status = a} :: ReviewDetails) instance Data.FromJSON ReviewDetails where parseJSON = Data.withObject "ReviewDetails" ( \x -> ReviewDetails' Prelude.<$> (x Data..:? "CaseId") Prelude.<*> (x Data..:? "Status") ) instance Prelude.Hashable ReviewDetails where hashWithSalt _salt ReviewDetails' {..} = _salt `Prelude.hashWithSalt` caseId `Prelude.hashWithSalt` status instance Prelude.NFData ReviewDetails where rnf ReviewDetails' {..} = Prelude.rnf caseId `Prelude.seq` Prelude.rnf status