{-# 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.DrS.RetryDataReplication -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Causes the data replication initiation sequence to begin immediately -- upon next Handshake for the specified Source Server ID, regardless of -- when the previous initiation started. This command will work only if the -- Source Server is stalled or is in a DISCONNECTED or STOPPED state. module Amazonka.DrS.RetryDataReplication ( -- * Creating a Request RetryDataReplication (..), newRetryDataReplication, -- * Request Lenses retryDataReplication_sourceServerID, -- * Destructuring the Response SourceServer (..), newSourceServer, -- * Response Lenses sourceServer_arn, sourceServer_dataReplicationInfo, sourceServer_lastLaunchResult, sourceServer_lifeCycle, sourceServer_recoveryInstanceId, sourceServer_replicationDirection, sourceServer_reversedDirectionSourceServerArn, sourceServer_sourceCloudProperties, sourceServer_sourceProperties, sourceServer_sourceServerID, sourceServer_stagingArea, sourceServer_tags, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.DrS.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newRetryDataReplication' smart constructor. data RetryDataReplication = RetryDataReplication' { -- | The ID of the Source Server whose data replication should be retried. sourceServerID :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'RetryDataReplication' 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: -- -- 'sourceServerID', 'retryDataReplication_sourceServerID' - The ID of the Source Server whose data replication should be retried. newRetryDataReplication :: -- | 'sourceServerID' Prelude.Text -> RetryDataReplication newRetryDataReplication pSourceServerID_ = RetryDataReplication' { sourceServerID = pSourceServerID_ } -- | The ID of the Source Server whose data replication should be retried. retryDataReplication_sourceServerID :: Lens.Lens' RetryDataReplication Prelude.Text retryDataReplication_sourceServerID = Lens.lens (\RetryDataReplication' {sourceServerID} -> sourceServerID) (\s@RetryDataReplication' {} a -> s {sourceServerID = a} :: RetryDataReplication) instance Core.AWSRequest RetryDataReplication where type AWSResponse RetryDataReplication = SourceServer request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON (\s h x -> Data.eitherParseJSON x) instance Prelude.Hashable RetryDataReplication where hashWithSalt _salt RetryDataReplication' {..} = _salt `Prelude.hashWithSalt` sourceServerID instance Prelude.NFData RetryDataReplication where rnf RetryDataReplication' {..} = Prelude.rnf sourceServerID instance Data.ToHeaders RetryDataReplication where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON RetryDataReplication where toJSON RetryDataReplication' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("sourceServerID" Data..= sourceServerID) ] ) instance Data.ToPath RetryDataReplication where toPath = Prelude.const "/RetryDataReplication" instance Data.ToQuery RetryDataReplication where toQuery = Prelude.const Prelude.mempty