AWSLocationBatchUpdateDevicePositionError
Objective-C
@interface AWSLocationBatchUpdateDevicePositionError
Swift
class AWSLocationBatchUpdateDevicePositionError
Contains error details for each device that failed to update its position.
Required parameters: [DeviceId, SampleTime, Error]
-
The device associated with the failed location update.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable deviceId;
Swift
var deviceId: String? { get set }
-
Contains details related to the error code such as the error code and error message.
Declaration
Objective-C
@property (nonatomic, strong) AWSLocationBatchItemError *_Nullable error;
Swift
var error: AWSLocationBatchItemError? { get set }
-
The timestamp at which the device position was determined. Uses ISO 8601 format:
YYYY-MM-DDThh:mm:ss.sssZ
.Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable sampleTime;
Swift
var sampleTime: Date? { get set }