{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- Module : Network.AWS.OpsWorks.UpdateMyUserProfile -- Copyright : (c) 2013-2014 Brendan Hay -- License : This Source Code Form is subject to the terms of -- the Mozilla Public License, v. 2.0. -- A copy of the MPL can be found in the LICENSE file or -- you can obtain it at http://mozilla.org/MPL/2.0/. -- Maintainer : Brendan Hay -- Stability : experimental -- Portability : non-portable (GHC extensions) -- -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Updates a user's SSH public key. -- -- Required Permissions: To use this action, an IAM user must have -- self-management enabled or an attached policy that explicitly grants -- permissions. For more information on user permissions, see . -- -- module Network.AWS.OpsWorks.UpdateMyUserProfile ( -- * Request UpdateMyUserProfile -- ** Request constructor , updateMyUserProfile -- ** Request lenses , umupSshPublicKey -- * Response , UpdateMyUserProfileResponse -- ** Response constructor , updateMyUserProfileResponse ) where import Network.AWS.Prelude import Network.AWS.Request.JSON import Network.AWS.OpsWorks.Types import qualified GHC.Exts newtype UpdateMyUserProfile = UpdateMyUserProfile { _umupSshPublicKey :: Maybe Text } deriving (Eq, Ord, Show, Monoid) -- | 'UpdateMyUserProfile' constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'umupSshPublicKey' @::@ 'Maybe' 'Text' -- updateMyUserProfile :: UpdateMyUserProfile updateMyUserProfile = UpdateMyUserProfile { _umupSshPublicKey = Nothing } -- | The user's SSH public key. umupSshPublicKey :: Lens' UpdateMyUserProfile (Maybe Text) umupSshPublicKey = lens _umupSshPublicKey (\s a -> s { _umupSshPublicKey = a }) data UpdateMyUserProfileResponse = UpdateMyUserProfileResponse deriving (Eq, Ord, Show, Generic) -- | 'UpdateMyUserProfileResponse' constructor. updateMyUserProfileResponse :: UpdateMyUserProfileResponse updateMyUserProfileResponse = UpdateMyUserProfileResponse instance ToPath UpdateMyUserProfile where toPath = const "/" instance ToQuery UpdateMyUserProfile where toQuery = const mempty instance ToHeaders UpdateMyUserProfile instance ToJSON UpdateMyUserProfile where toJSON UpdateMyUserProfile{..} = object [ "SshPublicKey" .= _umupSshPublicKey ] instance AWSRequest UpdateMyUserProfile where type Sv UpdateMyUserProfile = OpsWorks type Rs UpdateMyUserProfile = UpdateMyUserProfileResponse request = post "UpdateMyUserProfile" response = nullResponse UpdateMyUserProfileResponse