{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.DynamoDB.DisableKinesisStreamingDestination -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Stops replication from the DynamoDB table to the Kinesis data stream. -- This is done without deleting either of the resources. module Amazonka.DynamoDB.DisableKinesisStreamingDestination ( -- * Creating a Request DisableKinesisStreamingDestination (..), newDisableKinesisStreamingDestination, -- * Request Lenses disableKinesisStreamingDestination_tableName, disableKinesisStreamingDestination_streamArn, -- * Destructuring the Response KinesisStreamingDestinationOutput (..), newKinesisStreamingDestinationOutput, -- * Response Lenses kinesisStreamingDestinationOutput_destinationStatus, kinesisStreamingDestinationOutput_streamArn, kinesisStreamingDestinationOutput_tableName, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.DynamoDB.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newDisableKinesisStreamingDestination' smart constructor. data DisableKinesisStreamingDestination = DisableKinesisStreamingDestination' { -- | The name of the DynamoDB table. tableName :: Prelude.Text, -- | The ARN for a Kinesis data stream. streamArn :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DisableKinesisStreamingDestination' 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: -- -- 'tableName', 'disableKinesisStreamingDestination_tableName' - The name of the DynamoDB table. -- -- 'streamArn', 'disableKinesisStreamingDestination_streamArn' - The ARN for a Kinesis data stream. newDisableKinesisStreamingDestination :: -- | 'tableName' Prelude.Text -> -- | 'streamArn' Prelude.Text -> DisableKinesisStreamingDestination newDisableKinesisStreamingDestination pTableName_ pStreamArn_ = DisableKinesisStreamingDestination' { tableName = pTableName_, streamArn = pStreamArn_ } -- | The name of the DynamoDB table. disableKinesisStreamingDestination_tableName :: Lens.Lens' DisableKinesisStreamingDestination Prelude.Text disableKinesisStreamingDestination_tableName = Lens.lens (\DisableKinesisStreamingDestination' {tableName} -> tableName) (\s@DisableKinesisStreamingDestination' {} a -> s {tableName = a} :: DisableKinesisStreamingDestination) -- | The ARN for a Kinesis data stream. disableKinesisStreamingDestination_streamArn :: Lens.Lens' DisableKinesisStreamingDestination Prelude.Text disableKinesisStreamingDestination_streamArn = Lens.lens (\DisableKinesisStreamingDestination' {streamArn} -> streamArn) (\s@DisableKinesisStreamingDestination' {} a -> s {streamArn = a} :: DisableKinesisStreamingDestination) instance Core.AWSRequest DisableKinesisStreamingDestination where type AWSResponse DisableKinesisStreamingDestination = KinesisStreamingDestinationOutput request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON (\s h x -> Data.eitherParseJSON x) instance Prelude.Hashable DisableKinesisStreamingDestination where hashWithSalt _salt DisableKinesisStreamingDestination' {..} = _salt `Prelude.hashWithSalt` tableName `Prelude.hashWithSalt` streamArn instance Prelude.NFData DisableKinesisStreamingDestination where rnf DisableKinesisStreamingDestination' {..} = Prelude.rnf tableName `Prelude.seq` Prelude.rnf streamArn instance Data.ToHeaders DisableKinesisStreamingDestination where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "DynamoDB_20120810.DisableKinesisStreamingDestination" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.0" :: Prelude.ByteString ) ] ) instance Data.ToJSON DisableKinesisStreamingDestination where toJSON DisableKinesisStreamingDestination' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("TableName" Data..= tableName), Prelude.Just ("StreamArn" Data..= streamArn) ] ) instance Data.ToPath DisableKinesisStreamingDestination where toPath = Prelude.const "/" instance Data.ToQuery DisableKinesisStreamingDestination where toQuery = Prelude.const Prelude.mempty