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

Safe HaskellNone
LanguageHaskell2010

Aws.Iam.Commands.ListUsers

Synopsis

Documentation

data ListUsers #

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.

Instances
Eq ListUsers # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Ord ListUsers # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Show ListUsers # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

SignQuery ListUsers # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Associated Types

type ServiceConfiguration ListUsers :: * -> * #

IteratedTransaction ListUsers ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Transaction ListUsers ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

ResponseConsumer ListUsers ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Associated Types

type ResponseMetadata ListUsersResponse :: * #

type ServiceConfiguration ListUsers # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

data ListUsersResponse #

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.

Instances
Eq ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Ord ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Show ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

AsMemoryResponse ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Associated Types

type MemoryResponse ListUsersResponse :: * #

IteratedTransaction ListUsers ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Transaction ListUsers ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

ResponseConsumer ListUsers ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Associated Types

type ResponseMetadata ListUsersResponse :: * #

type MemoryResponse ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

type ResponseMetadata ListUsersResponse # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

data User #

Constructors

User 

Fields

Instances
Eq User # 
Instance details

Defined in Aws.Iam.Core

Methods

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

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

Ord User # 
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 # 
Instance details

Defined in Aws.Iam.Core

Methods

showsPrec :: Int -> User -> ShowS #

show :: User -> String #

showList :: [User] -> ShowS #