/** * @public * @enum */ export declare const AssignmentStatus: { readonly Approved: "Approved"; readonly Rejected: "Rejected"; readonly Submitted: "Submitted"; }; /** * @public */ export type AssignmentStatus = (typeof AssignmentStatus)[keyof typeof AssignmentStatus]; /** * @public * @enum */ export declare const Comparator: { readonly DoesNotExist: "DoesNotExist"; readonly EqualTo: "EqualTo"; readonly Exists: "Exists"; readonly GreaterThan: "GreaterThan"; readonly GreaterThanOrEqualTo: "GreaterThanOrEqualTo"; readonly In: "In"; readonly LessThan: "LessThan"; readonly LessThanOrEqualTo: "LessThanOrEqualTo"; readonly NotEqualTo: "NotEqualTo"; readonly NotIn: "NotIn"; }; /** * @public */ export type Comparator = (typeof Comparator)[keyof typeof Comparator]; /** * @public * @enum */ export declare const HITAccessActions: { readonly Accept: "Accept"; readonly DiscoverPreviewAndAccept: "DiscoverPreviewAndAccept"; readonly PreviewAndAccept: "PreviewAndAccept"; }; /** * @public */ export type HITAccessActions = (typeof HITAccessActions)[keyof typeof HITAccessActions]; /** * @public * @enum */ export declare const HITReviewStatus: { readonly MarkedForReview: "MarkedForReview"; readonly NotReviewed: "NotReviewed"; readonly ReviewedAppropriate: "ReviewedAppropriate"; readonly ReviewedInappropriate: "ReviewedInappropriate"; }; /** * @public */ export type HITReviewStatus = (typeof HITReviewStatus)[keyof typeof HITReviewStatus]; /** * @public * @enum */ export declare const HITStatus: { readonly Assignable: "Assignable"; readonly Disposed: "Disposed"; readonly Reviewable: "Reviewable"; readonly Reviewing: "Reviewing"; readonly Unassignable: "Unassignable"; }; /** * @public */ export type HITStatus = (typeof HITStatus)[keyof typeof HITStatus]; /** * @public * @enum */ export declare const QualificationTypeStatus: { readonly Active: "Active"; readonly Inactive: "Inactive"; }; /** * @public */ export type QualificationTypeStatus = (typeof QualificationTypeStatus)[keyof typeof QualificationTypeStatus]; /** * @public * @enum */ export declare const EventType: { readonly AssignmentAbandoned: "AssignmentAbandoned"; readonly AssignmentAccepted: "AssignmentAccepted"; readonly AssignmentApproved: "AssignmentApproved"; readonly AssignmentRejected: "AssignmentRejected"; readonly AssignmentReturned: "AssignmentReturned"; readonly AssignmentSubmitted: "AssignmentSubmitted"; readonly HITCreated: "HITCreated"; readonly HITDisposed: "HITDisposed"; readonly HITExpired: "HITExpired"; readonly HITExtended: "HITExtended"; readonly HITReviewable: "HITReviewable"; readonly Ping: "Ping"; }; /** * @public */ export type EventType = (typeof EventType)[keyof typeof EventType]; /** * @public * @enum */ export declare const QualificationStatus: { readonly Granted: "Granted"; readonly Revoked: "Revoked"; }; /** * @public */ export type QualificationStatus = (typeof QualificationStatus)[keyof typeof QualificationStatus]; /** * @public * @enum */ export declare const ReviewableHITStatus: { readonly Reviewable: "Reviewable"; readonly Reviewing: "Reviewing"; }; /** * @public */ export type ReviewableHITStatus = (typeof ReviewableHITStatus)[keyof typeof ReviewableHITStatus]; /** * @public * @enum */ export declare const ReviewPolicyLevel: { readonly Assignment: "Assignment"; readonly HIT: "HIT"; }; /** * @public */ export type ReviewPolicyLevel = (typeof ReviewPolicyLevel)[keyof typeof ReviewPolicyLevel]; /** * @public * @enum */ export declare const ReviewActionStatus: { readonly Cancelled: "Cancelled"; readonly Failed: "Failed"; readonly Intended: "Intended"; readonly Succeeded: "Succeeded"; }; /** * @public */ export type ReviewActionStatus = (typeof ReviewActionStatus)[keyof typeof ReviewActionStatus]; /** * @public * @enum */ export declare const NotifyWorkersFailureCode: { readonly HardFailure: "HardFailure"; readonly SoftFailure: "SoftFailure"; }; /** * @public */ export type NotifyWorkersFailureCode = (typeof NotifyWorkersFailureCode)[keyof typeof NotifyWorkersFailureCode]; /** * @public * @enum */ export declare const NotificationTransport: { readonly Email: "Email"; readonly SNS: "SNS"; readonly SQS: "SQS"; }; /** * @public */ export type NotificationTransport = (typeof NotificationTransport)[keyof typeof NotificationTransport];