aws-0.21.1: 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

Instances
Eq User Source # 
Instance details

Defined in Aws.Iam.Core

Methods

(==) :: User -> User -> Bool #

(/=) :: User -> User -> Bool #

Ord User Source # 
Instance details

Defined in Aws.Iam.Core

Methods

compare :: User -> User -> Ordering #

(<) :: User -> User -> Bool #

(<=) :: User -> User -> Bool #

(>) :: User -> User -> Bool #

(>=) :: User -> User -> Bool #

max :: User -> User -> User #

min :: User -> User -> User #

Show User Source # 
Instance details

Defined in Aws.Iam.Core

Methods

showsPrec :: Int -> User -> ShowS #

show :: User -> String #

showList :: [User] -> ShowS #

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

Parses the IAM User data type.

data MfaDevice Source #

Constructors

MfaDevice 

Fields

  • mfaEnableDate :: UTCTime

    The date when the MFA device was enabled for the user.

  • mfaSerialNumber :: Text

    The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the device ARN.

  • mfaUserName :: Text

    The user with whom the MFA device is associated. Minimum length of 1. Maximum length of 64.

Instances
Eq MfaDevice Source # 
Instance details

Defined in Aws.Iam.Core

Ord MfaDevice Source # 
Instance details

Defined in Aws.Iam.Core

Show MfaDevice Source # 
Instance details

Defined in Aws.Iam.Core

parseMfaDevice :: MonadThrow m => Cursor -> m MfaDevice Source #

Parses the IAM MFADevice data type.