aws-0.24.1: Amazon Web Services (AWS) for Haskell
Safe HaskellSafe-Inferred
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

Instances details
Show User Source # 
Instance details

Defined in Aws.Iam.Core

Eq User Source # 
Instance details

Defined in Aws.Iam.Core

Methods

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

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

Ord User Source # 
Instance details

Defined in Aws.Iam.Core

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

Parses the IAM User data type.

data Group Source #

Constructors

Group 

Fields

Instances

Instances details
Show Group Source # 
Instance details

Defined in Aws.Iam.Core

Eq Group Source # 
Instance details

Defined in Aws.Iam.Core

Methods

(==) :: Group -> Group -> Bool Source #

(/=) :: Group -> Group -> Bool Source #

Ord Group Source # 
Instance details

Defined in Aws.Iam.Core

parseGroup :: MonadThrow m => Cursor -> m Group Source #

Parses the IAM Group 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.

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

Parses the IAM MFADevice data type.