AWSCognitoIdentityProviderListUsersResponse
Objective-C
@interface AWSCognitoIdentityProviderListUsersResponse
Swift
class AWSCognitoIdentityProviderListUsersResponse
The response from the request to list users.
-
The identifier that Amazon Cognito returned with the previous request to this operation. When you include a pagination token in your request, Amazon Cognito returns the next set of items in the list. By use of this token, you can paginate through the full list of items.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable paginationToken;
Swift
var paginationToken: String? { get set }
-
A list of the user pool users, and their attributes, that match your query.
Amazon Cognito creates a profile in your user pool for each native user in your user pool, and each unique user ID from your third-party identity providers (IdPs). When you link users with the AdminLinkProviderForUser API operation, the output of
ListUsers
displays both the IdP user and the native user that you linked. You can identify IdP users in theUsers
object of this API response by the IdP prefix that Amazon Cognito appends toUsername
.Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSCognitoIdentityProviderUserType *> *_Nullable users;
Swift
var users: [AWSCognitoIdentityProviderUserType]? { get set }