AWSLocationBatchEvaluateGeofencesError

Objective-C

@interface AWSLocationBatchEvaluateGeofencesError

Swift

class AWSLocationBatchEvaluateGeofencesError

Contains error details for each device that failed to evaluate its position against the geofences in a given geofence collection.

Required parameters: [DeviceId, Error, SampleTime]

  • The device associated with the position evaluation error.

    Declaration

    Objective-C

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

    Swift

    var deviceId: String? { get set }
  • Contains details associated to the batch error.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSLocationBatchItemError *_Nullable error;

    Swift

    var error: AWSLocationBatchItemError? { get set }
  • Specifies a timestamp for when the error occurred in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable sampleTime;

    Swift

    var sampleTime: Date? { get set }