amazonka-codestar-1.6.1: Amazon CodeStar SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.CodeStar.UpdateUserProfile

Contents

Description

Updates a user's profile in AWS CodeStar. The user profile is not project-specific. Information in the user profile is displayed wherever the user's information appears to other users in AWS CodeStar.

Synopsis

Creating a Request

updateUserProfile Source #

Creates a value of UpdateUserProfile with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • uupSshPublicKey - The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access.
  • uupEmailAddress - The email address that is displayed as part of the user's profile in AWS CodeStar.
  • uupDisplayName - The name that is displayed as the friendly name for the user in AWS CodeStar.
  • uupUserARN - The name that will be displayed as the friendly name for the user in AWS CodeStar.

data UpdateUserProfile Source #

See: updateUserProfile smart constructor.

Instances
Eq UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Data UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> UpdateUserProfile -> c UpdateUserProfile #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c UpdateUserProfile #

toConstr :: UpdateUserProfile -> Constr #

dataTypeOf :: UpdateUserProfile -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c UpdateUserProfile) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c UpdateUserProfile) #

gmapT :: (forall b. Data b => b -> b) -> UpdateUserProfile -> UpdateUserProfile #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> UpdateUserProfile -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> UpdateUserProfile -> r #

gmapQ :: (forall d. Data d => d -> u) -> UpdateUserProfile -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> UpdateUserProfile -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> UpdateUserProfile -> m UpdateUserProfile #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateUserProfile -> m UpdateUserProfile #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateUserProfile -> m UpdateUserProfile #

Show UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Generic UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Associated Types

type Rep UpdateUserProfile :: Type -> Type #

Hashable UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

ToJSON UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

AWSRequest UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Associated Types

type Rs UpdateUserProfile :: Type #

ToHeaders UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

ToPath UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

ToQuery UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

NFData UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Methods

rnf :: UpdateUserProfile -> () #

type Rep UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

type Rep UpdateUserProfile = D1 (MetaData "UpdateUserProfile" "Network.AWS.CodeStar.UpdateUserProfile" "amazonka-codestar-1.6.1-CcYQrsIZo67Ij9mcPy3qxj" False) (C1 (MetaCons "UpdateUserProfile'" PrefixI True) ((S1 (MetaSel (Just "_uupSshPublicKey") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_uupEmailAddress") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Sensitive Text)))) :*: (S1 (MetaSel (Just "_uupDisplayName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_uupUserARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))
type Rs UpdateUserProfile Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Request Lenses

uupSshPublicKey :: Lens' UpdateUserProfile (Maybe Text) Source #

The SSH public key associated with the user in AWS CodeStar. If a project owner allows the user remote access to project resources, this public key will be used along with the user's private key for SSH access.

uupEmailAddress :: Lens' UpdateUserProfile (Maybe Text) Source #

The email address that is displayed as part of the user's profile in AWS CodeStar.

uupDisplayName :: Lens' UpdateUserProfile (Maybe Text) Source #

The name that is displayed as the friendly name for the user in AWS CodeStar.

uupUserARN :: Lens' UpdateUserProfile Text Source #

The name that will be displayed as the friendly name for the user in AWS CodeStar.

Destructuring the Response

updateUserProfileResponse Source #

Creates a value of UpdateUserProfileResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • uuprsLastModifiedTimestamp - The date the user profile was last modified, in timestamp format.
  • uuprsSshPublicKey - The SSH public key associated with the user in AWS CodeStar. This is the public portion of the public/private keypair the user can use to access project resources if a project owner allows the user remote access to those resources.
  • uuprsEmailAddress - The email address that is displayed as part of the user's profile in AWS CodeStar.
  • uuprsDisplayName - The name that is displayed as the friendly name for the user in AWS CodeStar.
  • uuprsCreatedTimestamp - The date the user profile was created, in timestamp format.
  • uuprsResponseStatus - -- | The response status code.
  • uuprsUserARN - The Amazon Resource Name (ARN) of the user in IAM.

data UpdateUserProfileResponse Source #

See: updateUserProfileResponse smart constructor.

Instances
Eq UpdateUserProfileResponse Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Data UpdateUserProfileResponse Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> UpdateUserProfileResponse -> c UpdateUserProfileResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c UpdateUserProfileResponse #

toConstr :: UpdateUserProfileResponse -> Constr #

dataTypeOf :: UpdateUserProfileResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c UpdateUserProfileResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c UpdateUserProfileResponse) #

gmapT :: (forall b. Data b => b -> b) -> UpdateUserProfileResponse -> UpdateUserProfileResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> UpdateUserProfileResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> UpdateUserProfileResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> UpdateUserProfileResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> UpdateUserProfileResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> UpdateUserProfileResponse -> m UpdateUserProfileResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateUserProfileResponse -> m UpdateUserProfileResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateUserProfileResponse -> m UpdateUserProfileResponse #

Show UpdateUserProfileResponse Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Generic UpdateUserProfileResponse Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

Associated Types

type Rep UpdateUserProfileResponse :: Type -> Type #

NFData UpdateUserProfileResponse Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

type Rep UpdateUserProfileResponse Source # 
Instance details

Defined in Network.AWS.CodeStar.UpdateUserProfile

type Rep UpdateUserProfileResponse = D1 (MetaData "UpdateUserProfileResponse" "Network.AWS.CodeStar.UpdateUserProfile" "amazonka-codestar-1.6.1-CcYQrsIZo67Ij9mcPy3qxj" False) (C1 (MetaCons "UpdateUserProfileResponse'" PrefixI True) ((S1 (MetaSel (Just "_uuprsLastModifiedTimestamp") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 (MetaSel (Just "_uuprsSshPublicKey") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_uuprsEmailAddress") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe (Sensitive Text))))) :*: ((S1 (MetaSel (Just "_uuprsDisplayName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_uuprsCreatedTimestamp") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 (MetaSel (Just "_uuprsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int) :*: S1 (MetaSel (Just "_uuprsUserARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))

Response Lenses

uuprsLastModifiedTimestamp :: Lens' UpdateUserProfileResponse (Maybe UTCTime) Source #

The date the user profile was last modified, in timestamp format.

uuprsSshPublicKey :: Lens' UpdateUserProfileResponse (Maybe Text) Source #

The SSH public key associated with the user in AWS CodeStar. This is the public portion of the public/private keypair the user can use to access project resources if a project owner allows the user remote access to those resources.

uuprsEmailAddress :: Lens' UpdateUserProfileResponse (Maybe Text) Source #

The email address that is displayed as part of the user's profile in AWS CodeStar.

uuprsDisplayName :: Lens' UpdateUserProfileResponse (Maybe Text) Source #

The name that is displayed as the friendly name for the user in AWS CodeStar.

uuprsCreatedTimestamp :: Lens' UpdateUserProfileResponse (Maybe UTCTime) Source #

The date the user profile was created, in timestamp format.

uuprsUserARN :: Lens' UpdateUserProfileResponse Text Source #

The Amazon Resource Name (ARN) of the user in IAM.