1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AssignmentStatus string
// Enum values for AssignmentStatus
const (
AssignmentStatusSubmitted AssignmentStatus = "Submitted"
AssignmentStatusApproved AssignmentStatus = "Approved"
AssignmentStatusRejected AssignmentStatus = "Rejected"
)
// Values returns all known values for AssignmentStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (AssignmentStatus) Values() []AssignmentStatus {
return []AssignmentStatus{
"Submitted",
"Approved",
"Rejected",
}
}
type Comparator string
// Enum values for Comparator
const (
ComparatorLessThan Comparator = "LessThan"
ComparatorLessThanOrEqualTo Comparator = "LessThanOrEqualTo"
ComparatorGreaterThan Comparator = "GreaterThan"
ComparatorGreaterThanOrEqualTo Comparator = "GreaterThanOrEqualTo"
ComparatorEqualTo Comparator = "EqualTo"
ComparatorNotEqualTo Comparator = "NotEqualTo"
ComparatorExists Comparator = "Exists"
ComparatorDoesNotExist Comparator = "DoesNotExist"
ComparatorIn Comparator = "In"
ComparatorNotIn Comparator = "NotIn"
)
// Values returns all known values for Comparator. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (Comparator) Values() []Comparator {
return []Comparator{
"LessThan",
"LessThanOrEqualTo",
"GreaterThan",
"GreaterThanOrEqualTo",
"EqualTo",
"NotEqualTo",
"Exists",
"DoesNotExist",
"In",
"NotIn",
}
}
type EventType string
// Enum values for EventType
const (
EventTypeAssignmentAccepted EventType = "AssignmentAccepted"
EventTypeAssignmentAbandoned EventType = "AssignmentAbandoned"
EventTypeAssignmentReturned EventType = "AssignmentReturned"
EventTypeAssignmentSubmitted EventType = "AssignmentSubmitted"
EventTypeAssignmentRejected EventType = "AssignmentRejected"
EventTypeAssignmentApproved EventType = "AssignmentApproved"
EventTypeHITCreated EventType = "HITCreated"
EventTypeHITExpired EventType = "HITExpired"
EventTypeHITReviewable EventType = "HITReviewable"
EventTypeHITExtended EventType = "HITExtended"
EventTypeHITDisposed EventType = "HITDisposed"
EventTypePing EventType = "Ping"
)
// Values returns all known values for EventType. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (EventType) Values() []EventType {
return []EventType{
"AssignmentAccepted",
"AssignmentAbandoned",
"AssignmentReturned",
"AssignmentSubmitted",
"AssignmentRejected",
"AssignmentApproved",
"HITCreated",
"HITExpired",
"HITReviewable",
"HITExtended",
"HITDisposed",
"Ping",
}
}
type HITAccessActions string
// Enum values for HITAccessActions
const (
HITAccessActionsAccept HITAccessActions = "Accept"
HITAccessActionsPreviewAndAccept HITAccessActions = "PreviewAndAccept"
HITAccessActionsDiscoverPreviewAndAccept HITAccessActions = "DiscoverPreviewAndAccept"
)
// Values returns all known values for HITAccessActions. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (HITAccessActions) Values() []HITAccessActions {
return []HITAccessActions{
"Accept",
"PreviewAndAccept",
"DiscoverPreviewAndAccept",
}
}
type HITReviewStatus string
// Enum values for HITReviewStatus
const (
HITReviewStatusNotReviewed HITReviewStatus = "NotReviewed"
HITReviewStatusMarkedForReview HITReviewStatus = "MarkedForReview"
HITReviewStatusReviewedAppropriate HITReviewStatus = "ReviewedAppropriate"
HITReviewStatusReviewedInappropriate HITReviewStatus = "ReviewedInappropriate"
)
// Values returns all known values for HITReviewStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (HITReviewStatus) Values() []HITReviewStatus {
return []HITReviewStatus{
"NotReviewed",
"MarkedForReview",
"ReviewedAppropriate",
"ReviewedInappropriate",
}
}
type HITStatus string
// Enum values for HITStatus
const (
HITStatusAssignable HITStatus = "Assignable"
HITStatusUnassignable HITStatus = "Unassignable"
HITStatusReviewable HITStatus = "Reviewable"
HITStatusReviewing HITStatus = "Reviewing"
HITStatusDisposed HITStatus = "Disposed"
)
// Values returns all known values for HITStatus. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (HITStatus) Values() []HITStatus {
return []HITStatus{
"Assignable",
"Unassignable",
"Reviewable",
"Reviewing",
"Disposed",
}
}
type NotificationTransport string
// Enum values for NotificationTransport
const (
NotificationTransportEmail NotificationTransport = "Email"
NotificationTransportSqs NotificationTransport = "SQS"
NotificationTransportSns NotificationTransport = "SNS"
)
// Values returns all known values for NotificationTransport. Note that this can
// be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (NotificationTransport) Values() []NotificationTransport {
return []NotificationTransport{
"Email",
"SQS",
"SNS",
}
}
type NotifyWorkersFailureCode string
// Enum values for NotifyWorkersFailureCode
const (
NotifyWorkersFailureCodeSoftFailure NotifyWorkersFailureCode = "SoftFailure"
NotifyWorkersFailureCodeHardFailure NotifyWorkersFailureCode = "HardFailure"
)
// Values returns all known values for NotifyWorkersFailureCode. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (NotifyWorkersFailureCode) Values() []NotifyWorkersFailureCode {
return []NotifyWorkersFailureCode{
"SoftFailure",
"HardFailure",
}
}
type QualificationStatus string
// Enum values for QualificationStatus
const (
QualificationStatusGranted QualificationStatus = "Granted"
QualificationStatusRevoked QualificationStatus = "Revoked"
)
// Values returns all known values for QualificationStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (QualificationStatus) Values() []QualificationStatus {
return []QualificationStatus{
"Granted",
"Revoked",
}
}
type QualificationTypeStatus string
// Enum values for QualificationTypeStatus
const (
QualificationTypeStatusActive QualificationTypeStatus = "Active"
QualificationTypeStatusInactive QualificationTypeStatus = "Inactive"
)
// Values returns all known values for QualificationTypeStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (QualificationTypeStatus) Values() []QualificationTypeStatus {
return []QualificationTypeStatus{
"Active",
"Inactive",
}
}
type ReviewableHITStatus string
// Enum values for ReviewableHITStatus
const (
ReviewableHITStatusReviewable ReviewableHITStatus = "Reviewable"
ReviewableHITStatusReviewing ReviewableHITStatus = "Reviewing"
)
// Values returns all known values for ReviewableHITStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ReviewableHITStatus) Values() []ReviewableHITStatus {
return []ReviewableHITStatus{
"Reviewable",
"Reviewing",
}
}
type ReviewActionStatus string
// Enum values for ReviewActionStatus
const (
ReviewActionStatusIntended ReviewActionStatus = "Intended"
ReviewActionStatusSucceeded ReviewActionStatus = "Succeeded"
ReviewActionStatusFailed ReviewActionStatus = "Failed"
ReviewActionStatusCancelled ReviewActionStatus = "Cancelled"
)
// Values returns all known values for ReviewActionStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ReviewActionStatus) Values() []ReviewActionStatus {
return []ReviewActionStatus{
"Intended",
"Succeeded",
"Failed",
"Cancelled",
}
}
type ReviewPolicyLevel string
// Enum values for ReviewPolicyLevel
const (
ReviewPolicyLevelAssignment ReviewPolicyLevel = "Assignment"
ReviewPolicyLevelHit ReviewPolicyLevel = "HIT"
)
// Values returns all known values for ReviewPolicyLevel. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (ReviewPolicyLevel) Values() []ReviewPolicyLevel {
return []ReviewPolicyLevel{
"Assignment",
"HIT",
}
}
|