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

Safe HaskellNone
LanguageHaskell2010

Aws.Iam.Commands.ListUsers

Synopsis

Documentation

data ListUsers Source

Lists users that have the specified path prefix.

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

Constructors

ListUsers 

Fields

luPathPrefix :: Maybe Text

Users defined under this path will be listed. If omitted, defaults to /, which lists all users.

luMarker :: Maybe Text

Used for paginating requests. Marks the position of the last request.

luMaxItems :: Maybe Integer

Used for paginating requests. Specifies the maximum number of items to return in the response. Defaults to 100.

data ListUsersResponse Source

Constructors

ListUsersResponse 

Fields

lurUsers :: [User]

List of Users.

lurIsTruncated :: Bool

True if the request was truncated because of too many items.

lurMarker :: Maybe Text

Marks the position at which the request was truncated. This value must be passed with the next request to continue listing from the last position.

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