{-# 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.ElasticTranscoder.Types.Warning -- 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.ElasticTranscoder.Types.Warning 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 -- | Elastic Transcoder returns a warning if the resources used by your -- pipeline are not in the same region as the pipeline. -- -- Using resources in the same region, such as your Amazon S3 buckets, -- Amazon SNS notification topics, and AWS KMS key, reduces processing time -- and prevents cross-regional charges. -- -- /See:/ 'newWarning' smart constructor. data Warning = Warning' { -- | The code of the cross-regional warning. code :: Prelude.Maybe Prelude.Text, -- | The message explaining what resources are in a different region from the -- pipeline. -- -- AWS KMS keys must be in the same region as the pipeline. message :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Warning' 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: -- -- 'code', 'warning_code' - The code of the cross-regional warning. -- -- 'message', 'warning_message' - The message explaining what resources are in a different region from the -- pipeline. -- -- AWS KMS keys must be in the same region as the pipeline. newWarning :: Warning newWarning = Warning' { code = Prelude.Nothing, message = Prelude.Nothing } -- | The code of the cross-regional warning. warning_code :: Lens.Lens' Warning (Prelude.Maybe Prelude.Text) warning_code = Lens.lens (\Warning' {code} -> code) (\s@Warning' {} a -> s {code = a} :: Warning) -- | The message explaining what resources are in a different region from the -- pipeline. -- -- AWS KMS keys must be in the same region as the pipeline. warning_message :: Lens.Lens' Warning (Prelude.Maybe Prelude.Text) warning_message = Lens.lens (\Warning' {message} -> message) (\s@Warning' {} a -> s {message = a} :: Warning) instance Data.FromJSON Warning where parseJSON = Data.withObject "Warning" ( \x -> Warning' Prelude.<$> (x Data..:? "Code") Prelude.<*> (x Data..:? "Message") ) instance Prelude.Hashable Warning where hashWithSalt _salt Warning' {..} = _salt `Prelude.hashWithSalt` code `Prelude.hashWithSalt` message instance Prelude.NFData Warning where rnf Warning' {..} = Prelude.rnf code `Prelude.seq` Prelude.rnf message