AWSCognitoSyncListRecordsResponse
Objective-C
@interface AWSCognitoSyncListRecordsResponse
Swift
class AWSCognitoSyncListRecordsResponse
Returned for a successful ListRecordsRequest.
-
Total number of records.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable count;
Swift
var count: NSNumber? { get set }
-
A boolean value specifying whether to delete the dataset locally.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable datasetDeletedAfterRequestedSyncCount;
Swift
var datasetDeletedAfterRequestedSyncCount: NSNumber? { get set }
-
Indicates whether the dataset exists.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable datasetExists;
Swift
var datasetExists: NSNumber? { get set }
-
Server sync count for this dataset.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable datasetSyncCount;
Swift
var datasetSyncCount: NSNumber? { get set }
-
The user/device that made the last change to this record.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable lastModifiedBy;
Swift
var lastModifiedBy: String? { get set }
-
Names of merged datasets.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable mergedDatasetNames;
Swift
var mergedDatasetNames: [String]? { 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 }
-
A list of all records.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSCognitoSyncRecord *> *_Nullable records;
Swift
var records: [AWSCognitoSyncRecord]? { get set }
-
A token containing a session ID, identity ID, and expiration.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable syncSessionToken;
Swift
var syncSessionToken: String? { get set }