{-# 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.CopyOptionGroup -- Copyright : (c) 2013-2017 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Copies the specified option group. -- -- module Network.AWS.RDS.CopyOptionGroup ( -- * Creating a Request copyOptionGroup , CopyOptionGroup -- * Request Lenses , cTags , cSourceOptionGroupIdentifier , cTargetOptionGroupIdentifier , cTargetOptionGroupDescription -- * Destructuring the Response , copyOptionGroupResponse , CopyOptionGroupResponse -- * Response Lenses , cogrsOptionGroup , cogrsResponseStatus ) 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:/ 'copyOptionGroup' smart constructor. data CopyOptionGroup = CopyOptionGroup' { _cTags :: !(Maybe [Tag]) , _cSourceOptionGroupIdentifier :: !Text , _cTargetOptionGroupIdentifier :: !Text , _cTargetOptionGroupDescription :: !Text } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'CopyOptionGroup' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'cTags' - Undocumented member. -- -- * 'cSourceOptionGroupIdentifier' - The identifier or ARN for the source option group. For information about creating an ARN, see . Constraints: * Must specify a valid option group. * If the source option group is in the same AWS Region as the copy, specify a valid option group identifier, for example @my-option-group@ , or a valid ARN. * If the source option group is in a different AWS Region than the copy, specify a valid option group ARN, for example @arn:aws:rds:us-west-2:123456789012:og:special-options@ . -- -- * 'cTargetOptionGroupIdentifier' - The identifier for the copied option group. Constraints: * Cannot be null, empty, or blank * Must contain from 1 to 255 letters, numbers, or hyphens * First character must be a letter * Cannot end with a hyphen or contain two consecutive hyphens Example: @my-option-group@ -- -- * 'cTargetOptionGroupDescription' - The description for the copied option group. copyOptionGroup :: Text -- ^ 'cSourceOptionGroupIdentifier' -> Text -- ^ 'cTargetOptionGroupIdentifier' -> Text -- ^ 'cTargetOptionGroupDescription' -> CopyOptionGroup copyOptionGroup pSourceOptionGroupIdentifier_ pTargetOptionGroupIdentifier_ pTargetOptionGroupDescription_ = CopyOptionGroup' { _cTags = Nothing , _cSourceOptionGroupIdentifier = pSourceOptionGroupIdentifier_ , _cTargetOptionGroupIdentifier = pTargetOptionGroupIdentifier_ , _cTargetOptionGroupDescription = pTargetOptionGroupDescription_ } -- | Undocumented member. cTags :: Lens' CopyOptionGroup [Tag] cTags = lens _cTags (\ s a -> s{_cTags = a}) . _Default . _Coerce; -- | The identifier or ARN for the source option group. For information about creating an ARN, see . Constraints: * Must specify a valid option group. * If the source option group is in the same AWS Region as the copy, specify a valid option group identifier, for example @my-option-group@ , or a valid ARN. * If the source option group is in a different AWS Region than the copy, specify a valid option group ARN, for example @arn:aws:rds:us-west-2:123456789012:og:special-options@ . cSourceOptionGroupIdentifier :: Lens' CopyOptionGroup Text cSourceOptionGroupIdentifier = lens _cSourceOptionGroupIdentifier (\ s a -> s{_cSourceOptionGroupIdentifier = a}); -- | The identifier for the copied option group. Constraints: * Cannot be null, empty, or blank * Must contain from 1 to 255 letters, numbers, or hyphens * First character must be a letter * Cannot end with a hyphen or contain two consecutive hyphens Example: @my-option-group@ cTargetOptionGroupIdentifier :: Lens' CopyOptionGroup Text cTargetOptionGroupIdentifier = lens _cTargetOptionGroupIdentifier (\ s a -> s{_cTargetOptionGroupIdentifier = a}); -- | The description for the copied option group. cTargetOptionGroupDescription :: Lens' CopyOptionGroup Text cTargetOptionGroupDescription = lens _cTargetOptionGroupDescription (\ s a -> s{_cTargetOptionGroupDescription = a}); instance AWSRequest CopyOptionGroup where type Rs CopyOptionGroup = CopyOptionGroupResponse request = postQuery rds response = receiveXMLWrapper "CopyOptionGroupResult" (\ s h x -> CopyOptionGroupResponse' <$> (x .@? "OptionGroup") <*> (pure (fromEnum s))) instance Hashable CopyOptionGroup where instance NFData CopyOptionGroup where instance ToHeaders CopyOptionGroup where toHeaders = const mempty instance ToPath CopyOptionGroup where toPath = const "/" instance ToQuery CopyOptionGroup where toQuery CopyOptionGroup'{..} = mconcat ["Action" =: ("CopyOptionGroup" :: ByteString), "Version" =: ("2014-10-31" :: ByteString), "Tags" =: toQuery (toQueryList "Tag" <$> _cTags), "SourceOptionGroupIdentifier" =: _cSourceOptionGroupIdentifier, "TargetOptionGroupIdentifier" =: _cTargetOptionGroupIdentifier, "TargetOptionGroupDescription" =: _cTargetOptionGroupDescription] -- | /See:/ 'copyOptionGroupResponse' smart constructor. data CopyOptionGroupResponse = CopyOptionGroupResponse' { _cogrsOptionGroup :: !(Maybe OptionGroup) , _cogrsResponseStatus :: !Int } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'CopyOptionGroupResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'cogrsOptionGroup' - Undocumented member. -- -- * 'cogrsResponseStatus' - -- | The response status code. copyOptionGroupResponse :: Int -- ^ 'cogrsResponseStatus' -> CopyOptionGroupResponse copyOptionGroupResponse pResponseStatus_ = CopyOptionGroupResponse' {_cogrsOptionGroup = Nothing, _cogrsResponseStatus = pResponseStatus_} -- | Undocumented member. cogrsOptionGroup :: Lens' CopyOptionGroupResponse (Maybe OptionGroup) cogrsOptionGroup = lens _cogrsOptionGroup (\ s a -> s{_cogrsOptionGroup = a}); -- | -- | The response status code. cogrsResponseStatus :: Lens' CopyOptionGroupResponse Int cogrsResponseStatus = lens _cogrsResponseStatus (\ s a -> s{_cogrsResponseStatus = a}); instance NFData CopyOptionGroupResponse where