AWSCognitoIdentityProviderListUserImportJobsRequest
Objective-C
@interface AWSCognitoIdentityProviderListUserImportJobsRequest
Swift
class AWSCognitoIdentityProviderListUserImportJobsRequest
Represents the request to list the user import jobs.
Required parameters: [UserPoolId, MaxResults]
-
The maximum number of import jobs you want the request to return.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable maxResults;
Swift
var maxResults: NSNumber? { get set }
-
An identifier that was returned from the previous call to
ListUserImportJobs
, which can be used to return the next set of import jobs in the list.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable paginationToken;
Swift
var paginationToken: String? { get set }
-
The user pool ID for the user pool that the users are being imported into.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable userPoolId;
Swift
var userPoolId: String? { get set }