{-# 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.KinesisAnalytics.Types.KinesisFirehoseOutputUpdate -- 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.KinesisAnalytics.Types.KinesisFirehoseOutputUpdate 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 -- | When updating an output configuration using the -- -- operation, provides information about an Amazon Kinesis Firehose -- delivery stream configured as the destination. -- -- /See:/ 'newKinesisFirehoseOutputUpdate' smart constructor. data KinesisFirehoseOutputUpdate = KinesisFirehoseOutputUpdate' { -- | Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery -- stream to write to. resourceARNUpdate :: Prelude.Maybe Prelude.Text, -- | ARN of the IAM role that Amazon Kinesis Analytics can assume to access -- the stream on your behalf. You need to grant the necessary permissions -- to this role. roleARNUpdate :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'KinesisFirehoseOutputUpdate' 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: -- -- 'resourceARNUpdate', 'kinesisFirehoseOutputUpdate_resourceARNUpdate' - Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery -- stream to write to. -- -- 'roleARNUpdate', 'kinesisFirehoseOutputUpdate_roleARNUpdate' - ARN of the IAM role that Amazon Kinesis Analytics can assume to access -- the stream on your behalf. You need to grant the necessary permissions -- to this role. newKinesisFirehoseOutputUpdate :: KinesisFirehoseOutputUpdate newKinesisFirehoseOutputUpdate = KinesisFirehoseOutputUpdate' { resourceARNUpdate = Prelude.Nothing, roleARNUpdate = Prelude.Nothing } -- | Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery -- stream to write to. kinesisFirehoseOutputUpdate_resourceARNUpdate :: Lens.Lens' KinesisFirehoseOutputUpdate (Prelude.Maybe Prelude.Text) kinesisFirehoseOutputUpdate_resourceARNUpdate = Lens.lens (\KinesisFirehoseOutputUpdate' {resourceARNUpdate} -> resourceARNUpdate) (\s@KinesisFirehoseOutputUpdate' {} a -> s {resourceARNUpdate = a} :: KinesisFirehoseOutputUpdate) -- | ARN of the IAM role that Amazon Kinesis Analytics can assume to access -- the stream on your behalf. You need to grant the necessary permissions -- to this role. kinesisFirehoseOutputUpdate_roleARNUpdate :: Lens.Lens' KinesisFirehoseOutputUpdate (Prelude.Maybe Prelude.Text) kinesisFirehoseOutputUpdate_roleARNUpdate = Lens.lens (\KinesisFirehoseOutputUpdate' {roleARNUpdate} -> roleARNUpdate) (\s@KinesisFirehoseOutputUpdate' {} a -> s {roleARNUpdate = a} :: KinesisFirehoseOutputUpdate) instance Prelude.Hashable KinesisFirehoseOutputUpdate where hashWithSalt _salt KinesisFirehoseOutputUpdate' {..} = _salt `Prelude.hashWithSalt` resourceARNUpdate `Prelude.hashWithSalt` roleARNUpdate instance Prelude.NFData KinesisFirehoseOutputUpdate where rnf KinesisFirehoseOutputUpdate' {..} = Prelude.rnf resourceARNUpdate `Prelude.seq` Prelude.rnf roleARNUpdate instance Data.ToJSON KinesisFirehoseOutputUpdate where toJSON KinesisFirehoseOutputUpdate' {..} = Data.object ( Prelude.catMaybes [ ("ResourceARNUpdate" Data..=) Prelude.<$> resourceARNUpdate, ("RoleARNUpdate" Data..=) Prelude.<$> roleARNUpdate ] )