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

Safe HaskellNone

Aws.Iam.Commands.CreateAccessKey

Synopsis

Documentation

data CreateAccessKey Source

Creates a new AWS secret access key and corresponding AWS access key ID for the given user name.

If a user name is not provided, IAM will determine the user name based on the access key signing the request.

http://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateAccessKey.html

Constructors

CreateAccessKey (Maybe Text) 

data AccessKey Source

Constructors

AccessKey 

Fields

akAccessKeyId :: Text

The Access Key ID.

akCreateDate :: Maybe UTCTime

Date and time at which the access key was created.

akSecretAccessKey :: Text

Secret key used to sign requests. The secret key is accessible only during key creation.

akStatus :: AccessKeyStatus

Whether the access key is active or not.

akUserName :: Text

The user name for which this key is defined.