PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::CognitoIdp::ListUsers; use Moose; has AttributesToGet => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has Filter => (is => 'ro', isa => 'Str'); has Limit => (is => 'ro', isa => 'Int'); has PaginationToken => (is => 'ro', isa => 'Str'); has UserPoolId => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListUsers'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CognitoIdp::ListUsersResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::CognitoIdp::ListUsers - Arguments for method ListUsers on L =head1 DESCRIPTION This class represents the parameters used for calling the method ListUsers on the L service. Use the attributes of this class as arguments to method ListUsers. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListUsers. =head1 SYNOPSIS my $cognito-idp = Paws->service('CognitoIdp'); my $ListUsersResponse = $cognito -idp->ListUsers( UserPoolId => 'MyUserPoolIdType', AttributesToGet => [ 'MyAttributeNameType', ... # min: 1, max: 32 ], # OPTIONAL Filter => 'MyUserFilterType', # OPTIONAL Limit => 1, # OPTIONAL PaginationToken => 'MySearchPaginationTokenType', # OPTIONAL ); # Results: my $PaginationToken = $ListUsersResponse->PaginationToken; my $Users = $ListUsersResponse->Users; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 AttributesToGet => ArrayRef[Str|Undef] 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. =head2 Filter => Str A filter string of the form "I I "I"". Quotation marks within the filter string must be escaped using the backslash (\) character. For example, "C = \"Reddy\"". =over =item * I: The name of the attribute to search for. You can only search for one attribute at a time. =item * I: For an exact match, use =, for example, "C = \"Jon\"". For a prefix ("starts with") match, use ^=, for example, "C ^= \"Jon\"". =item * I: The attribute value that must be matched for each user. =back If the filter string is empty, C returns all users in the user pool. You can only search for the following standard attributes: =over =item * C (case-sensitive) =item * C =item * C =item * C =item * C =item * C =item * C =item * C (called B in the Console) (case-insensitive) =item * C in the Console) (case-sensitive)> =item * C =back Custom attributes are not searchable. For more information, see Searching for Users Using the ListUsers API (https://docs.aws.amazon.com/cognito/latest/developerguide/how-to-manage-user-accounts.html#cognito-user-pools-searching-for-users-using-listusers-api) and Examples of Using the ListUsers API (https://docs.aws.amazon.com/cognito/latest/developerguide/how-to-manage-user-accounts.html#cognito-user-pools-searching-for-users-listusers-api-examples) in the I. =head2 Limit => Int Maximum number of users to be returned. =head2 PaginationToken => Str 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. =head2 B UserPoolId => Str The user pool ID for the user pool on which the search should be performed. =head1 SEE ALSO This class forms part of L, documenting arguments for method ListUsers in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut