amazonka-cognito-idp-1.6.1: Amazon Cognito Identity Provider SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.CognitoIdentityProvider.ListUsers

Contents

Description

Lists the users in the Amazon Cognito user pool.

Synopsis

Creating a Request

listUsers Source #

Arguments

:: Text

luUserPoolId

-> ListUsers 

Creates a value of ListUsers with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • luPaginationToken - An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
  • luAttributesToGet - An array of strings, where each string is the name of a user attribute to be returned for each user in the search results. If the array is null, all attributes are returned.
  • luLimit - Maximum number of users to be returned.
  • luFilter - A filter string of the form "AttributeName Filter-Type "AttributeValue "". Quotation marks within the filter string must be escaped using the backslash () character. For example, "family_name = "Reddy"". * AttributeName : The name of the attribute to search for. You can only search for one attribute at a time. * Filter-Type : For an exact match, use =, for example, "given_name = "Jon"". For a prefix ("starts with") match, use ^=, for example, "given_name ^= "Jon"". * AttributeValue : The attribute value that must be matched for each user. If the filter string is empty, ListUsers returns all users in the user pool. You can only search for the following standard attributes: * username (case-sensitive) * email * phone_number * name * given_name * family_name * preferred_username * cognito:user_status (called Enabled in the Console) (case-sensitive) * status (case-insensitive) * sub Custom attributes are not searchable. For more information, see Searching for Users Using the ListUsers API and Examples of Using the ListUsers API in the Amazon Cognito Developer Guide .
  • luUserPoolId - The user pool ID for the user pool on which the search should be performed.

data ListUsers Source #

Represents the request to list users.

See: listUsers smart constructor.

Instances
Eq ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Data ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListUsers -> c ListUsers #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListUsers #

toConstr :: ListUsers -> Constr #

dataTypeOf :: ListUsers -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ListUsers) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListUsers) #

gmapT :: (forall b. Data b => b -> b) -> ListUsers -> ListUsers #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListUsers -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListUsers -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListUsers -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListUsers -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListUsers -> m ListUsers #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListUsers -> m ListUsers #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListUsers -> m ListUsers #

Read ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Show ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Generic ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Associated Types

type Rep ListUsers :: Type -> Type #

Hashable ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

ToJSON ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

AWSRequest ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Associated Types

type Rs ListUsers :: Type #

ToHeaders ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Methods

toHeaders :: ListUsers -> [Header] #

ToPath ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

ToQuery ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

NFData ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Methods

rnf :: ListUsers -> () #

type Rep ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

type Rep ListUsers = D1 (MetaData "ListUsers" "Network.AWS.CognitoIdentityProvider.ListUsers" "amazonka-cognito-idp-1.6.1-IATNKTGZSOc4TejpW4Ifw7" False) (C1 (MetaCons "ListUsers'" PrefixI True) ((S1 (MetaSel (Just "_luPaginationToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_luAttributesToGet") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text]))) :*: (S1 (MetaSel (Just "_luLimit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Nat)) :*: (S1 (MetaSel (Just "_luFilter") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_luUserPoolId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Rs ListUsers Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Request Lenses

luPaginationToken :: Lens' ListUsers (Maybe Text) Source #

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

luAttributesToGet :: Lens' ListUsers [Text] Source #

An array of strings, where each string is the name of a user attribute to be returned for each user in the search results. If the array is null, all attributes are returned.

luLimit :: Lens' ListUsers (Maybe Natural) Source #

Maximum number of users to be returned.

luFilter :: Lens' ListUsers (Maybe Text) Source #

A filter string of the form "AttributeName Filter-Type "AttributeValue "". Quotation marks within the filter string must be escaped using the backslash () character. For example, "family_name = "Reddy"". * AttributeName : The name of the attribute to search for. You can only search for one attribute at a time. * Filter-Type : For an exact match, use =, for example, "given_name = "Jon"". For a prefix ("starts with") match, use ^=, for example, "given_name ^= "Jon"". * AttributeValue : The attribute value that must be matched for each user. If the filter string is empty, ListUsers returns all users in the user pool. You can only search for the following standard attributes: * username (case-sensitive) * email * phone_number * name * given_name * family_name * preferred_username * cognito:user_status (called Enabled in the Console) (case-sensitive) * status (case-insensitive) * sub Custom attributes are not searchable. For more information, see Searching for Users Using the ListUsers API and Examples of Using the ListUsers API in the Amazon Cognito Developer Guide .

luUserPoolId :: Lens' ListUsers Text Source #

The user pool ID for the user pool on which the search should be performed.

Destructuring the Response

listUsersResponse Source #

Creates a value of ListUsersResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • lursPaginationToken - An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
  • lursUsers - The users returned in the request to list users.
  • lursResponseStatus - -- | The response status code.

data ListUsersResponse Source #

The response from the request to list users.

See: listUsersResponse smart constructor.

Instances
Eq ListUsersResponse Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Data ListUsersResponse Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListUsersResponse -> c ListUsersResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListUsersResponse #

toConstr :: ListUsersResponse -> Constr #

dataTypeOf :: ListUsersResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ListUsersResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListUsersResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListUsersResponse -> ListUsersResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListUsersResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListUsersResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListUsersResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListUsersResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListUsersResponse -> m ListUsersResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListUsersResponse -> m ListUsersResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListUsersResponse -> m ListUsersResponse #

Show ListUsersResponse Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Generic ListUsersResponse Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Associated Types

type Rep ListUsersResponse :: Type -> Type #

NFData ListUsersResponse Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

Methods

rnf :: ListUsersResponse -> () #

type Rep ListUsersResponse Source # 
Instance details

Defined in Network.AWS.CognitoIdentityProvider.ListUsers

type Rep ListUsersResponse = D1 (MetaData "ListUsersResponse" "Network.AWS.CognitoIdentityProvider.ListUsers" "amazonka-cognito-idp-1.6.1-IATNKTGZSOc4TejpW4Ifw7" False) (C1 (MetaCons "ListUsersResponse'" PrefixI True) (S1 (MetaSel (Just "_lursPaginationToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_lursUsers") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [UserType])) :*: S1 (MetaSel (Just "_lursResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int))))

Response Lenses

lursPaginationToken :: Lens' ListUsersResponse (Maybe Text) Source #

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

lursUsers :: Lens' ListUsersResponse [UserType] Source #

The users returned in the request to list users.

lursResponseStatus :: Lens' ListUsersResponse Int Source #

  • - | The response status code.