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

Instances

Instances details
SignQuery ListUsers Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Associated Types

type ServiceConfiguration ListUsers :: Type -> Type Source #

Show ListUsers Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Methods

showsPrec :: Int -> ListUsers -> ShowS

show :: ListUsers -> String

showList :: [ListUsers] -> ShowS

Eq ListUsers Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Methods

(==) :: ListUsers -> ListUsers -> Bool

(/=) :: ListUsers -> ListUsers -> Bool

Ord ListUsers Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Methods

compare :: ListUsers -> ListUsers -> Ordering

(<) :: ListUsers -> ListUsers -> Bool

(<=) :: ListUsers -> ListUsers -> Bool

(>) :: ListUsers -> ListUsers -> Bool

(>=) :: ListUsers -> ListUsers -> Bool

max :: ListUsers -> ListUsers -> ListUsers

min :: ListUsers -> ListUsers -> ListUsers

IteratedTransaction ListUsers ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

ResponseConsumer ListUsers ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Transaction ListUsers ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

type ServiceConfiguration ListUsers Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

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.

Instances

Instances details
AsMemoryResponse ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Show ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Methods

showsPrec :: Int -> ListUsersResponse -> ShowS

show :: ListUsersResponse -> String

showList :: [ListUsersResponse] -> ShowS

Eq ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Ord ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

IteratedTransaction ListUsers ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

ResponseConsumer ListUsers ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

Transaction ListUsers ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

type MemoryResponse ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

type ResponseMetadata ListUsersResponse Source # 
Instance details

Defined in Aws.Iam.Commands.ListUsers

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

Instances details
Show User Source # 
Instance details

Defined in Aws.Iam.Core

Methods

showsPrec :: Int -> User -> ShowS

show :: User -> String

showList :: [User] -> ShowS

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