aws-0.11.2: Amazon Web Services (AWS) for Haskell

Safe HaskellNone
LanguageHaskell2010

Aws.Iam.Core

Synopsis

Documentation

iamSignQuery Source

Arguments

:: [(ByteString, ByteString)]

Pairs of parameter names and values that will be passed as part of the request data.

-> IamConfiguration qt 
-> SignatureData 
-> SignedQuery 

Constructs a SignedQuery with the specified request parameters.

iamResponseConsumer :: (Cursor -> Response IamMetadata a) -> IORef IamMetadata -> HTTPResponseConsumer a Source

Reads the metadata from an IAM response and delegates parsing the rest of the data from the response to the given function.

parseDateTime :: MonadThrow m => String -> m UTCTime Source

Parses IAM DateTime data type.

data User Source

Constructors

User 

Fields

userArn :: Text

ARN used to refer to this user.

userCreateDate :: UTCTime

Date and time at which the user was created.

userPath :: Text

Path under which the user was created.

userUserId :: Text

Unique identifier used to refer to this user.

userUserName :: Text

Name of the user.

Instances

parseUser :: MonadThrow m => Cursor -> m User Source

Parses the IAM User data type.