AWSCognitoSyncListIdentityPoolUsageResponse

Objective-C

@interface AWSCognitoSyncListIdentityPoolUsageResponse

Swift

class AWSCognitoSyncListIdentityPoolUsageResponse

Returned for a successful ListIdentityPoolUsage request.

  • Total number of identities for the identity pool.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable count;

    Swift

    var count: NSNumber? { get set }
  • Usage information for the identity pools.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSCognitoSyncIdentityPoolUsage *> *_Nullable identityPoolUsages;

    Swift

    var identityPoolUsages: [AWSCognitoSyncIdentityPoolUsage]? { get set }
  • The maximum number of results to be returned.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable maxResults;

    Swift

    var maxResults: NSNumber? { get set }
  • A pagination token for obtaining the next page of results.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable nextToken;

    Swift

    var nextToken: String? { get set }