{-# 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.EFS.CreateTags -- Copyright : (c) 2013-2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates or overwrites tags associated with a file system. Each tag is a -- key-value pair. If a tag key specified in the request already exists on -- the file system, this operation overwrites its value with the value -- provided in the request. If you add the \"Name\" tag to your file -- system, Amazon EFS returns it in the response to the DescribeFileSystems -- API. -- -- This operation requires permission for the -- 'elasticfilesystem:CreateTags' action. -- -- /See:/ for CreateTags. module Network.AWS.EFS.CreateTags ( -- * Creating a Request createTags , CreateTags -- * Request Lenses , ctFileSystemId , ctTags -- * Destructuring the Response , createTagsResponse , CreateTagsResponse ) where import Network.AWS.EFS.Types import Network.AWS.EFS.Types.Product import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | /See:/ 'createTags' smart constructor. data CreateTags = CreateTags' { _ctFileSystemId :: !Text , _ctTags :: ![Tag] } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'CreateTags' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ctFileSystemId' -- -- * 'ctTags' createTags :: Text -- ^ 'ctFileSystemId' -> CreateTags createTags pFileSystemId_ = CreateTags' { _ctFileSystemId = pFileSystemId_ , _ctTags = mempty } -- | String. The ID of the file system whose tags you want to modify. This -- operation modifies only the tags and not the file system. ctFileSystemId :: Lens' CreateTags Text ctFileSystemId = lens _ctFileSystemId (\ s a -> s{_ctFileSystemId = a}); -- | An array of 'Tag' objects to add. Each 'Tag' object is a key-value pair. ctTags :: Lens' CreateTags [Tag] ctTags = lens _ctTags (\ s a -> s{_ctTags = a}) . _Coerce; instance AWSRequest CreateTags where type Rs CreateTags = CreateTagsResponse request = postJSON eFS response = receiveNull CreateTagsResponse' instance ToHeaders CreateTags where toHeaders = const mempty instance ToJSON CreateTags where toJSON CreateTags'{..} = object (catMaybes [Just ("Tags" .= _ctTags)]) instance ToPath CreateTags where toPath CreateTags'{..} = mconcat ["/2015-02-01/create-tags/", toBS _ctFileSystemId] instance ToQuery CreateTags where toQuery = const mempty -- | /See:/ 'createTagsResponse' smart constructor. data CreateTagsResponse = CreateTagsResponse' deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'CreateTagsResponse' with the minimum fields required to make a request. -- createTagsResponse :: CreateTagsResponse createTagsResponse = CreateTagsResponse'