// Code generated by smithy-go-codegen DO NOT EDIT. package types type Attribute string // Enum values for Attribute const ( AttributeDefault Attribute = "DEFAULT" AttributeAll Attribute = "ALL" AttributeAgeRange Attribute = "AGE_RANGE" AttributeBeard Attribute = "BEARD" AttributeEmotions Attribute = "EMOTIONS" AttributeEyeDirection Attribute = "EYE_DIRECTION" AttributeEyeglasses Attribute = "EYEGLASSES" AttributeEyesOpen Attribute = "EYES_OPEN" AttributeGender Attribute = "GENDER" AttributeMouthOpen Attribute = "MOUTH_OPEN" AttributeMustache Attribute = "MUSTACHE" AttributeFaceOccluded Attribute = "FACE_OCCLUDED" AttributeSmile Attribute = "SMILE" AttributeSunglasses Attribute = "SUNGLASSES" ) // Values returns all known values for Attribute. 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 (Attribute) Values() []Attribute { return []Attribute{ "DEFAULT", "ALL", "AGE_RANGE", "BEARD", "EMOTIONS", "EYE_DIRECTION", "EYEGLASSES", "EYES_OPEN", "GENDER", "MOUTH_OPEN", "MUSTACHE", "FACE_OCCLUDED", "SMILE", "SUNGLASSES", } } type BodyPart string // Enum values for BodyPart const ( BodyPartFace BodyPart = "FACE" BodyPartHead BodyPart = "HEAD" BodyPartLeftHand BodyPart = "LEFT_HAND" BodyPartRightHand BodyPart = "RIGHT_HAND" ) // Values returns all known values for BodyPart. 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 (BodyPart) Values() []BodyPart { return []BodyPart{ "FACE", "HEAD", "LEFT_HAND", "RIGHT_HAND", } } type CelebrityRecognitionSortBy string // Enum values for CelebrityRecognitionSortBy const ( CelebrityRecognitionSortById CelebrityRecognitionSortBy = "ID" CelebrityRecognitionSortByTimestamp CelebrityRecognitionSortBy = "TIMESTAMP" ) // Values returns all known values for CelebrityRecognitionSortBy. 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 (CelebrityRecognitionSortBy) Values() []CelebrityRecognitionSortBy { return []CelebrityRecognitionSortBy{ "ID", "TIMESTAMP", } } type ContentClassifier string // Enum values for ContentClassifier const ( ContentClassifierFreeOfPersonallyIdentifiableInformation ContentClassifier = "FreeOfPersonallyIdentifiableInformation" ContentClassifierFreeOfAdultContent ContentClassifier = "FreeOfAdultContent" ) // Values returns all known values for ContentClassifier. 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 (ContentClassifier) Values() []ContentClassifier { return []ContentClassifier{ "FreeOfPersonallyIdentifiableInformation", "FreeOfAdultContent", } } type ContentModerationAggregateBy string // Enum values for ContentModerationAggregateBy const ( ContentModerationAggregateByTimestamps ContentModerationAggregateBy = "TIMESTAMPS" ContentModerationAggregateBySegments ContentModerationAggregateBy = "SEGMENTS" ) // Values returns all known values for ContentModerationAggregateBy. 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 (ContentModerationAggregateBy) Values() []ContentModerationAggregateBy { return []ContentModerationAggregateBy{ "TIMESTAMPS", "SEGMENTS", } } type ContentModerationSortBy string // Enum values for ContentModerationSortBy const ( ContentModerationSortByName ContentModerationSortBy = "NAME" ContentModerationSortByTimestamp ContentModerationSortBy = "TIMESTAMP" ) // Values returns all known values for ContentModerationSortBy. 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 (ContentModerationSortBy) Values() []ContentModerationSortBy { return []ContentModerationSortBy{ "NAME", "TIMESTAMP", } } type DatasetStatus string // Enum values for DatasetStatus const ( DatasetStatusCreateInProgress DatasetStatus = "CREATE_IN_PROGRESS" DatasetStatusCreateComplete DatasetStatus = "CREATE_COMPLETE" DatasetStatusCreateFailed DatasetStatus = "CREATE_FAILED" DatasetStatusUpdateInProgress DatasetStatus = "UPDATE_IN_PROGRESS" DatasetStatusUpdateComplete DatasetStatus = "UPDATE_COMPLETE" DatasetStatusUpdateFailed DatasetStatus = "UPDATE_FAILED" DatasetStatusDeleteInProgress DatasetStatus = "DELETE_IN_PROGRESS" ) // Values returns all known values for DatasetStatus. 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 (DatasetStatus) Values() []DatasetStatus { return []DatasetStatus{ "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED", "DELETE_IN_PROGRESS", } } type DatasetStatusMessageCode string // Enum values for DatasetStatusMessageCode const ( DatasetStatusMessageCodeSuccess DatasetStatusMessageCode = "SUCCESS" DatasetStatusMessageCodeServiceError DatasetStatusMessageCode = "SERVICE_ERROR" DatasetStatusMessageCodeClientError DatasetStatusMessageCode = "CLIENT_ERROR" ) // Values returns all known values for DatasetStatusMessageCode. 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 (DatasetStatusMessageCode) Values() []DatasetStatusMessageCode { return []DatasetStatusMessageCode{ "SUCCESS", "SERVICE_ERROR", "CLIENT_ERROR", } } type DatasetType string // Enum values for DatasetType const ( DatasetTypeTrain DatasetType = "TRAIN" DatasetTypeTest DatasetType = "TEST" ) // Values returns all known values for DatasetType. 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 (DatasetType) Values() []DatasetType { return []DatasetType{ "TRAIN", "TEST", } } type DetectLabelsFeatureName string // Enum values for DetectLabelsFeatureName const ( DetectLabelsFeatureNameGeneralLabels DetectLabelsFeatureName = "GENERAL_LABELS" DetectLabelsFeatureNameImageProperties DetectLabelsFeatureName = "IMAGE_PROPERTIES" ) // Values returns all known values for DetectLabelsFeatureName. 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 (DetectLabelsFeatureName) Values() []DetectLabelsFeatureName { return []DetectLabelsFeatureName{ "GENERAL_LABELS", "IMAGE_PROPERTIES", } } type EmotionName string // Enum values for EmotionName const ( EmotionNameHappy EmotionName = "HAPPY" EmotionNameSad EmotionName = "SAD" EmotionNameAngry EmotionName = "ANGRY" EmotionNameConfused EmotionName = "CONFUSED" EmotionNameDisgusted EmotionName = "DISGUSTED" EmotionNameSurprised EmotionName = "SURPRISED" EmotionNameCalm EmotionName = "CALM" EmotionNameUnknown EmotionName = "UNKNOWN" EmotionNameFear EmotionName = "FEAR" ) // Values returns all known values for EmotionName. 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 (EmotionName) Values() []EmotionName { return []EmotionName{ "HAPPY", "SAD", "ANGRY", "CONFUSED", "DISGUSTED", "SURPRISED", "CALM", "UNKNOWN", "FEAR", } } type FaceAttributes string // Enum values for FaceAttributes const ( FaceAttributesDefault FaceAttributes = "DEFAULT" FaceAttributesAll FaceAttributes = "ALL" ) // Values returns all known values for FaceAttributes. 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 (FaceAttributes) Values() []FaceAttributes { return []FaceAttributes{ "DEFAULT", "ALL", } } type FaceSearchSortBy string // Enum values for FaceSearchSortBy const ( FaceSearchSortByIndex FaceSearchSortBy = "INDEX" FaceSearchSortByTimestamp FaceSearchSortBy = "TIMESTAMP" ) // Values returns all known values for FaceSearchSortBy. 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 (FaceSearchSortBy) Values() []FaceSearchSortBy { return []FaceSearchSortBy{ "INDEX", "TIMESTAMP", } } type GenderType string // Enum values for GenderType const ( GenderTypeMale GenderType = "Male" GenderTypeFemale GenderType = "Female" ) // Values returns all known values for GenderType. 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 (GenderType) Values() []GenderType { return []GenderType{ "Male", "Female", } } type KnownGenderType string // Enum values for KnownGenderType const ( KnownGenderTypeMale KnownGenderType = "Male" KnownGenderTypeFemale KnownGenderType = "Female" KnownGenderTypeNonbinary KnownGenderType = "Nonbinary" KnownGenderTypeUnlisted KnownGenderType = "Unlisted" ) // Values returns all known values for KnownGenderType. 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 (KnownGenderType) Values() []KnownGenderType { return []KnownGenderType{ "Male", "Female", "Nonbinary", "Unlisted", } } type LabelDetectionAggregateBy string // Enum values for LabelDetectionAggregateBy const ( LabelDetectionAggregateByTimestamps LabelDetectionAggregateBy = "TIMESTAMPS" LabelDetectionAggregateBySegments LabelDetectionAggregateBy = "SEGMENTS" ) // Values returns all known values for LabelDetectionAggregateBy. 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 (LabelDetectionAggregateBy) Values() []LabelDetectionAggregateBy { return []LabelDetectionAggregateBy{ "TIMESTAMPS", "SEGMENTS", } } type LabelDetectionFeatureName string // Enum values for LabelDetectionFeatureName const ( LabelDetectionFeatureNameGeneralLabels LabelDetectionFeatureName = "GENERAL_LABELS" ) // Values returns all known values for LabelDetectionFeatureName. 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 (LabelDetectionFeatureName) Values() []LabelDetectionFeatureName { return []LabelDetectionFeatureName{ "GENERAL_LABELS", } } type LabelDetectionSortBy string // Enum values for LabelDetectionSortBy const ( LabelDetectionSortByName LabelDetectionSortBy = "NAME" LabelDetectionSortByTimestamp LabelDetectionSortBy = "TIMESTAMP" ) // Values returns all known values for LabelDetectionSortBy. 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 (LabelDetectionSortBy) Values() []LabelDetectionSortBy { return []LabelDetectionSortBy{ "NAME", "TIMESTAMP", } } type LandmarkType string // Enum values for LandmarkType const ( LandmarkTypeEyeLeft LandmarkType = "eyeLeft" LandmarkTypeEyeRight LandmarkType = "eyeRight" LandmarkTypeNose LandmarkType = "nose" LandmarkTypeMouthLeft LandmarkType = "mouthLeft" LandmarkTypeMouthRight LandmarkType = "mouthRight" LandmarkTypeLeftEyeBrowLeft LandmarkType = "leftEyeBrowLeft" LandmarkTypeLeftEyeBrowRight LandmarkType = "leftEyeBrowRight" LandmarkTypeLeftEyeBrowUp LandmarkType = "leftEyeBrowUp" LandmarkTypeRightEyeBrowLeft LandmarkType = "rightEyeBrowLeft" LandmarkTypeRightEyeBrowRight LandmarkType = "rightEyeBrowRight" LandmarkTypeRightEyeBrowUp LandmarkType = "rightEyeBrowUp" LandmarkTypeLeftEyeLeft LandmarkType = "leftEyeLeft" LandmarkTypeLeftEyeRight LandmarkType = "leftEyeRight" LandmarkTypeLeftEyeUp LandmarkType = "leftEyeUp" LandmarkTypeLeftEyeDown LandmarkType = "leftEyeDown" LandmarkTypeRightEyeLeft LandmarkType = "rightEyeLeft" LandmarkTypeRightEyeRight LandmarkType = "rightEyeRight" LandmarkTypeRightEyeUp LandmarkType = "rightEyeUp" LandmarkTypeRightEyeDown LandmarkType = "rightEyeDown" LandmarkTypeNoseLeft LandmarkType = "noseLeft" LandmarkTypeNoseRight LandmarkType = "noseRight" LandmarkTypeMouthUp LandmarkType = "mouthUp" LandmarkTypeMouthDown LandmarkType = "mouthDown" LandmarkTypeLeftPupil LandmarkType = "leftPupil" LandmarkTypeRightPupil LandmarkType = "rightPupil" LandmarkTypeUpperJawlineLeft LandmarkType = "upperJawlineLeft" LandmarkTypeMidJawlineLeft LandmarkType = "midJawlineLeft" LandmarkTypeChinBottom LandmarkType = "chinBottom" LandmarkTypeMidJawlineRight LandmarkType = "midJawlineRight" LandmarkTypeUpperJawlineRight LandmarkType = "upperJawlineRight" ) // Values returns all known values for LandmarkType. 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 (LandmarkType) Values() []LandmarkType { return []LandmarkType{ "eyeLeft", "eyeRight", "nose", "mouthLeft", "mouthRight", "leftEyeBrowLeft", "leftEyeBrowRight", "leftEyeBrowUp", "rightEyeBrowLeft", "rightEyeBrowRight", "rightEyeBrowUp", "leftEyeLeft", "leftEyeRight", "leftEyeUp", "leftEyeDown", "rightEyeLeft", "rightEyeRight", "rightEyeUp", "rightEyeDown", "noseLeft", "noseRight", "mouthUp", "mouthDown", "leftPupil", "rightPupil", "upperJawlineLeft", "midJawlineLeft", "chinBottom", "midJawlineRight", "upperJawlineRight", } } type LivenessSessionStatus string // Enum values for LivenessSessionStatus const ( LivenessSessionStatusCreated LivenessSessionStatus = "CREATED" LivenessSessionStatusInProgress LivenessSessionStatus = "IN_PROGRESS" LivenessSessionStatusSucceeded LivenessSessionStatus = "SUCCEEDED" LivenessSessionStatusFailed LivenessSessionStatus = "FAILED" LivenessSessionStatusExpired LivenessSessionStatus = "EXPIRED" ) // Values returns all known values for LivenessSessionStatus. 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 (LivenessSessionStatus) Values() []LivenessSessionStatus { return []LivenessSessionStatus{ "CREATED", "IN_PROGRESS", "SUCCEEDED", "FAILED", "EXPIRED", } } type OrientationCorrection string // Enum values for OrientationCorrection const ( OrientationCorrectionRotate0 OrientationCorrection = "ROTATE_0" OrientationCorrectionRotate90 OrientationCorrection = "ROTATE_90" OrientationCorrectionRotate180 OrientationCorrection = "ROTATE_180" OrientationCorrectionRotate270 OrientationCorrection = "ROTATE_270" ) // Values returns all known values for OrientationCorrection. 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 (OrientationCorrection) Values() []OrientationCorrection { return []OrientationCorrection{ "ROTATE_0", "ROTATE_90", "ROTATE_180", "ROTATE_270", } } type PersonTrackingSortBy string // Enum values for PersonTrackingSortBy const ( PersonTrackingSortByIndex PersonTrackingSortBy = "INDEX" PersonTrackingSortByTimestamp PersonTrackingSortBy = "TIMESTAMP" ) // Values returns all known values for PersonTrackingSortBy. 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 (PersonTrackingSortBy) Values() []PersonTrackingSortBy { return []PersonTrackingSortBy{ "INDEX", "TIMESTAMP", } } type ProjectStatus string // Enum values for ProjectStatus const ( ProjectStatusCreating ProjectStatus = "CREATING" ProjectStatusCreated ProjectStatus = "CREATED" ProjectStatusDeleting ProjectStatus = "DELETING" ) // Values returns all known values for ProjectStatus. 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 (ProjectStatus) Values() []ProjectStatus { return []ProjectStatus{ "CREATING", "CREATED", "DELETING", } } type ProjectVersionStatus string // Enum values for ProjectVersionStatus const ( ProjectVersionStatusTrainingInProgress ProjectVersionStatus = "TRAINING_IN_PROGRESS" ProjectVersionStatusTrainingCompleted ProjectVersionStatus = "TRAINING_COMPLETED" ProjectVersionStatusTrainingFailed ProjectVersionStatus = "TRAINING_FAILED" ProjectVersionStatusStarting ProjectVersionStatus = "STARTING" ProjectVersionStatusRunning ProjectVersionStatus = "RUNNING" ProjectVersionStatusFailed ProjectVersionStatus = "FAILED" ProjectVersionStatusStopping ProjectVersionStatus = "STOPPING" ProjectVersionStatusStopped ProjectVersionStatus = "STOPPED" ProjectVersionStatusDeleting ProjectVersionStatus = "DELETING" ProjectVersionStatusCopyingInProgress ProjectVersionStatus = "COPYING_IN_PROGRESS" ProjectVersionStatusCopyingCompleted ProjectVersionStatus = "COPYING_COMPLETED" ProjectVersionStatusCopyingFailed ProjectVersionStatus = "COPYING_FAILED" ) // Values returns all known values for ProjectVersionStatus. 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 (ProjectVersionStatus) Values() []ProjectVersionStatus { return []ProjectVersionStatus{ "TRAINING_IN_PROGRESS", "TRAINING_COMPLETED", "TRAINING_FAILED", "STARTING", "RUNNING", "FAILED", "STOPPING", "STOPPED", "DELETING", "COPYING_IN_PROGRESS", "COPYING_COMPLETED", "COPYING_FAILED", } } type ProtectiveEquipmentType string // Enum values for ProtectiveEquipmentType const ( ProtectiveEquipmentTypeFaceCover ProtectiveEquipmentType = "FACE_COVER" ProtectiveEquipmentTypeHandCover ProtectiveEquipmentType = "HAND_COVER" ProtectiveEquipmentTypeHeadCover ProtectiveEquipmentType = "HEAD_COVER" ) // Values returns all known values for ProtectiveEquipmentType. 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 (ProtectiveEquipmentType) Values() []ProtectiveEquipmentType { return []ProtectiveEquipmentType{ "FACE_COVER", "HAND_COVER", "HEAD_COVER", } } type QualityFilter string // Enum values for QualityFilter const ( QualityFilterNone QualityFilter = "NONE" QualityFilterAuto QualityFilter = "AUTO" QualityFilterLow QualityFilter = "LOW" QualityFilterMedium QualityFilter = "MEDIUM" QualityFilterHigh QualityFilter = "HIGH" ) // Values returns all known values for QualityFilter. 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 (QualityFilter) Values() []QualityFilter { return []QualityFilter{ "NONE", "AUTO", "LOW", "MEDIUM", "HIGH", } } type Reason string // Enum values for Reason const ( ReasonExceedsMaxFaces Reason = "EXCEEDS_MAX_FACES" ReasonExtremePose Reason = "EXTREME_POSE" ReasonLowBrightness Reason = "LOW_BRIGHTNESS" ReasonLowSharpness Reason = "LOW_SHARPNESS" ReasonLowConfidence Reason = "LOW_CONFIDENCE" ReasonSmallBoundingBox Reason = "SMALL_BOUNDING_BOX" ReasonLowFaceQuality Reason = "LOW_FACE_QUALITY" ) // Values returns all known values for Reason. 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 (Reason) Values() []Reason { return []Reason{ "EXCEEDS_MAX_FACES", "EXTREME_POSE", "LOW_BRIGHTNESS", "LOW_SHARPNESS", "LOW_CONFIDENCE", "SMALL_BOUNDING_BOX", "LOW_FACE_QUALITY", } } type SegmentType string // Enum values for SegmentType const ( SegmentTypeTechnicalCue SegmentType = "TECHNICAL_CUE" SegmentTypeShot SegmentType = "SHOT" ) // Values returns all known values for SegmentType. 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 (SegmentType) Values() []SegmentType { return []SegmentType{ "TECHNICAL_CUE", "SHOT", } } type StreamProcessorParameterToDelete string // Enum values for StreamProcessorParameterToDelete const ( StreamProcessorParameterToDeleteConnectedHomeMinConfidence StreamProcessorParameterToDelete = "ConnectedHomeMinConfidence" StreamProcessorParameterToDeleteRegionsOfInterest StreamProcessorParameterToDelete = "RegionsOfInterest" ) // Values returns all known values for StreamProcessorParameterToDelete. 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 (StreamProcessorParameterToDelete) Values() []StreamProcessorParameterToDelete { return []StreamProcessorParameterToDelete{ "ConnectedHomeMinConfidence", "RegionsOfInterest", } } type StreamProcessorStatus string // Enum values for StreamProcessorStatus const ( StreamProcessorStatusStopped StreamProcessorStatus = "STOPPED" StreamProcessorStatusStarting StreamProcessorStatus = "STARTING" StreamProcessorStatusRunning StreamProcessorStatus = "RUNNING" StreamProcessorStatusFailed StreamProcessorStatus = "FAILED" StreamProcessorStatusStopping StreamProcessorStatus = "STOPPING" StreamProcessorStatusUpdating StreamProcessorStatus = "UPDATING" ) // Values returns all known values for StreamProcessorStatus. 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 (StreamProcessorStatus) Values() []StreamProcessorStatus { return []StreamProcessorStatus{ "STOPPED", "STARTING", "RUNNING", "FAILED", "STOPPING", "UPDATING", } } type TechnicalCueType string // Enum values for TechnicalCueType const ( TechnicalCueTypeColorBars TechnicalCueType = "ColorBars" TechnicalCueTypeEndCredits TechnicalCueType = "EndCredits" TechnicalCueTypeBlackFrames TechnicalCueType = "BlackFrames" TechnicalCueTypeOpeningCredits TechnicalCueType = "OpeningCredits" TechnicalCueTypeStudioLogo TechnicalCueType = "StudioLogo" TechnicalCueTypeSlate TechnicalCueType = "Slate" TechnicalCueTypeContent TechnicalCueType = "Content" ) // Values returns all known values for TechnicalCueType. 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 (TechnicalCueType) Values() []TechnicalCueType { return []TechnicalCueType{ "ColorBars", "EndCredits", "BlackFrames", "OpeningCredits", "StudioLogo", "Slate", "Content", } } type TextTypes string // Enum values for TextTypes const ( TextTypesLine TextTypes = "LINE" TextTypesWord TextTypes = "WORD" ) // Values returns all known values for TextTypes. 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 (TextTypes) Values() []TextTypes { return []TextTypes{ "LINE", "WORD", } } type UnsearchedFaceReason string // Enum values for UnsearchedFaceReason const ( UnsearchedFaceReasonFaceNotLargest UnsearchedFaceReason = "FACE_NOT_LARGEST" UnsearchedFaceReasonExceedsMaxFaces UnsearchedFaceReason = "EXCEEDS_MAX_FACES" UnsearchedFaceReasonExtremePose UnsearchedFaceReason = "EXTREME_POSE" UnsearchedFaceReasonLowBrightness UnsearchedFaceReason = "LOW_BRIGHTNESS" UnsearchedFaceReasonLowSharpness UnsearchedFaceReason = "LOW_SHARPNESS" UnsearchedFaceReasonLowConfidence UnsearchedFaceReason = "LOW_CONFIDENCE" UnsearchedFaceReasonSmallBoundingBox UnsearchedFaceReason = "SMALL_BOUNDING_BOX" UnsearchedFaceReasonLowFaceQuality UnsearchedFaceReason = "LOW_FACE_QUALITY" ) // Values returns all known values for UnsearchedFaceReason. 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 (UnsearchedFaceReason) Values() []UnsearchedFaceReason { return []UnsearchedFaceReason{ "FACE_NOT_LARGEST", "EXCEEDS_MAX_FACES", "EXTREME_POSE", "LOW_BRIGHTNESS", "LOW_SHARPNESS", "LOW_CONFIDENCE", "SMALL_BOUNDING_BOX", "LOW_FACE_QUALITY", } } type UnsuccessfulFaceAssociationReason string // Enum values for UnsuccessfulFaceAssociationReason const ( UnsuccessfulFaceAssociationReasonFaceNotFound UnsuccessfulFaceAssociationReason = "FACE_NOT_FOUND" UnsuccessfulFaceAssociationReasonAssociatedToADifferentUser UnsuccessfulFaceAssociationReason = "ASSOCIATED_TO_A_DIFFERENT_USER" UnsuccessfulFaceAssociationReasonLowMatchConfidence UnsuccessfulFaceAssociationReason = "LOW_MATCH_CONFIDENCE" ) // Values returns all known values for UnsuccessfulFaceAssociationReason. 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 (UnsuccessfulFaceAssociationReason) Values() []UnsuccessfulFaceAssociationReason { return []UnsuccessfulFaceAssociationReason{ "FACE_NOT_FOUND", "ASSOCIATED_TO_A_DIFFERENT_USER", "LOW_MATCH_CONFIDENCE", } } type UnsuccessfulFaceDeletionReason string // Enum values for UnsuccessfulFaceDeletionReason const ( UnsuccessfulFaceDeletionReasonAssociatedToAnExistingUser UnsuccessfulFaceDeletionReason = "ASSOCIATED_TO_AN_EXISTING_USER" UnsuccessfulFaceDeletionReasonFaceNotFound UnsuccessfulFaceDeletionReason = "FACE_NOT_FOUND" ) // Values returns all known values for UnsuccessfulFaceDeletionReason. 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 (UnsuccessfulFaceDeletionReason) Values() []UnsuccessfulFaceDeletionReason { return []UnsuccessfulFaceDeletionReason{ "ASSOCIATED_TO_AN_EXISTING_USER", "FACE_NOT_FOUND", } } type UnsuccessfulFaceDisassociationReason string // Enum values for UnsuccessfulFaceDisassociationReason const ( UnsuccessfulFaceDisassociationReasonFaceNotFound UnsuccessfulFaceDisassociationReason = "FACE_NOT_FOUND" UnsuccessfulFaceDisassociationReasonAssociatedToADifferentUser UnsuccessfulFaceDisassociationReason = "ASSOCIATED_TO_A_DIFFERENT_USER" ) // Values returns all known values for UnsuccessfulFaceDisassociationReason. 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 (UnsuccessfulFaceDisassociationReason) Values() []UnsuccessfulFaceDisassociationReason { return []UnsuccessfulFaceDisassociationReason{ "FACE_NOT_FOUND", "ASSOCIATED_TO_A_DIFFERENT_USER", } } type UserStatus string // Enum values for UserStatus const ( UserStatusActive UserStatus = "ACTIVE" UserStatusUpdating UserStatus = "UPDATING" UserStatusCreating UserStatus = "CREATING" UserStatusCreated UserStatus = "CREATED" ) // Values returns all known values for UserStatus. 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 (UserStatus) Values() []UserStatus { return []UserStatus{ "ACTIVE", "UPDATING", "CREATING", "CREATED", } } type VideoColorRange string // Enum values for VideoColorRange const ( VideoColorRangeFull VideoColorRange = "FULL" VideoColorRangeLimited VideoColorRange = "LIMITED" ) // Values returns all known values for VideoColorRange. 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 (VideoColorRange) Values() []VideoColorRange { return []VideoColorRange{ "FULL", "LIMITED", } } type VideoJobStatus string // Enum values for VideoJobStatus const ( VideoJobStatusInProgress VideoJobStatus = "IN_PROGRESS" VideoJobStatusSucceeded VideoJobStatus = "SUCCEEDED" VideoJobStatusFailed VideoJobStatus = "FAILED" ) // Values returns all known values for VideoJobStatus. 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 (VideoJobStatus) Values() []VideoJobStatus { return []VideoJobStatus{ "IN_PROGRESS", "SUCCEEDED", "FAILED", } }