{-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Network.AWS.RDS.CopyDBClusterSnapshot -- Copyright : (c) 2013-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates a snapshot of a DB cluster. For more information on Amazon Aurora, see in the /Amazon RDS User Guide./ -- -- module Network.AWS.RDS.CopyDBClusterSnapshot ( -- * Creating a Request copyDBClusterSnapshot , CopyDBClusterSnapshot -- * Request Lenses , cdbcsTags , cdbcsSourceDBClusterSnapshotIdentifier , cdbcsTargetDBClusterSnapshotIdentifier -- * Destructuring the Response , copyDBClusterSnapshotResponse , CopyDBClusterSnapshotResponse -- * Response Lenses , cdcsrsDBClusterSnapshot , cdcsrsResponseStatus ) where import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.RDS.Types import Network.AWS.RDS.Types.Product import Network.AWS.Request import Network.AWS.Response -- | -- -- -- -- /See:/ 'copyDBClusterSnapshot' smart constructor. data CopyDBClusterSnapshot = CopyDBClusterSnapshot' { _cdbcsTags :: !(Maybe [Tag]) , _cdbcsSourceDBClusterSnapshotIdentifier :: !Text , _cdbcsTargetDBClusterSnapshotIdentifier :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'CopyDBClusterSnapshot' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'cdbcsTags' - Undocumented member. -- -- * 'cdbcsSourceDBClusterSnapshotIdentifier' - The identifier of the DB cluster snapshot to copy. This parameter is not case-sensitive. Constraints: * Must contain from 1 to 63 alphanumeric characters or hyphens. * First character must be a letter. * Cannot end with a hyphen or contain two consecutive hyphens. Example: @my-cluster-snapshot1@ -- -- * 'cdbcsTargetDBClusterSnapshotIdentifier' - The identifier of the new DB cluster snapshot to create from the source DB cluster snapshot. This parameter is not case-sensitive. Constraints: * Must contain from 1 to 63 alphanumeric characters or hyphens. * First character must be a letter. * Cannot end with a hyphen or contain two consecutive hyphens. Example: @my-cluster-snapshot2@ copyDBClusterSnapshot :: Text -- ^ 'cdbcsSourceDBClusterSnapshotIdentifier' -> Text -- ^ 'cdbcsTargetDBClusterSnapshotIdentifier' -> CopyDBClusterSnapshot copyDBClusterSnapshot pSourceDBClusterSnapshotIdentifier_ pTargetDBClusterSnapshotIdentifier_ = CopyDBClusterSnapshot' { _cdbcsTags = Nothing , _cdbcsSourceDBClusterSnapshotIdentifier = pSourceDBClusterSnapshotIdentifier_ , _cdbcsTargetDBClusterSnapshotIdentifier = pTargetDBClusterSnapshotIdentifier_ } -- | Undocumented member. cdbcsTags :: Lens' CopyDBClusterSnapshot [Tag] cdbcsTags = lens _cdbcsTags (\ s a -> s{_cdbcsTags = a}) . _Default . _Coerce; -- | The identifier of the DB cluster snapshot to copy. This parameter is not case-sensitive. Constraints: * Must contain from 1 to 63 alphanumeric characters or hyphens. * First character must be a letter. * Cannot end with a hyphen or contain two consecutive hyphens. Example: @my-cluster-snapshot1@ cdbcsSourceDBClusterSnapshotIdentifier :: Lens' CopyDBClusterSnapshot Text cdbcsSourceDBClusterSnapshotIdentifier = lens _cdbcsSourceDBClusterSnapshotIdentifier (\ s a -> s{_cdbcsSourceDBClusterSnapshotIdentifier = a}); -- | The identifier of the new DB cluster snapshot to create from the source DB cluster snapshot. This parameter is not case-sensitive. Constraints: * Must contain from 1 to 63 alphanumeric characters or hyphens. * First character must be a letter. * Cannot end with a hyphen or contain two consecutive hyphens. Example: @my-cluster-snapshot2@ cdbcsTargetDBClusterSnapshotIdentifier :: Lens' CopyDBClusterSnapshot Text cdbcsTargetDBClusterSnapshotIdentifier = lens _cdbcsTargetDBClusterSnapshotIdentifier (\ s a -> s{_cdbcsTargetDBClusterSnapshotIdentifier = a}); instance AWSRequest CopyDBClusterSnapshot where type Rs CopyDBClusterSnapshot = CopyDBClusterSnapshotResponse request = postQuery rds response = receiveXMLWrapper "CopyDBClusterSnapshotResult" (\ s h x -> CopyDBClusterSnapshotResponse' <$> (x .@? "DBClusterSnapshot") <*> (pure (fromEnum s))) instance Hashable CopyDBClusterSnapshot instance NFData CopyDBClusterSnapshot instance ToHeaders CopyDBClusterSnapshot where toHeaders = const mempty instance ToPath CopyDBClusterSnapshot where toPath = const "/" instance ToQuery CopyDBClusterSnapshot where toQuery CopyDBClusterSnapshot'{..} = mconcat ["Action" =: ("CopyDBClusterSnapshot" :: ByteString), "Version" =: ("2014-10-31" :: ByteString), "Tags" =: toQuery (toQueryList "Tag" <$> _cdbcsTags), "SourceDBClusterSnapshotIdentifier" =: _cdbcsSourceDBClusterSnapshotIdentifier, "TargetDBClusterSnapshotIdentifier" =: _cdbcsTargetDBClusterSnapshotIdentifier] -- | /See:/ 'copyDBClusterSnapshotResponse' smart constructor. data CopyDBClusterSnapshotResponse = CopyDBClusterSnapshotResponse' { _cdcsrsDBClusterSnapshot :: !(Maybe DBClusterSnapshot) , _cdcsrsResponseStatus :: !Int } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'CopyDBClusterSnapshotResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'cdcsrsDBClusterSnapshot' - Undocumented member. -- -- * 'cdcsrsResponseStatus' - -- | The response status code. copyDBClusterSnapshotResponse :: Int -- ^ 'cdcsrsResponseStatus' -> CopyDBClusterSnapshotResponse copyDBClusterSnapshotResponse pResponseStatus_ = CopyDBClusterSnapshotResponse' { _cdcsrsDBClusterSnapshot = Nothing , _cdcsrsResponseStatus = pResponseStatus_ } -- | Undocumented member. cdcsrsDBClusterSnapshot :: Lens' CopyDBClusterSnapshotResponse (Maybe DBClusterSnapshot) cdcsrsDBClusterSnapshot = lens _cdcsrsDBClusterSnapshot (\ s a -> s{_cdcsrsDBClusterSnapshot = a}); -- | -- | The response status code. cdcsrsResponseStatus :: Lens' CopyDBClusterSnapshotResponse Int cdcsrsResponseStatus = lens _cdcsrsResponseStatus (\ s a -> s{_cdcsrsResponseStatus = a}); instance NFData CopyDBClusterSnapshotResponse