{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.MechanicalTurk.UpdateQualificationType -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- The @UpdateQualificationType@ operation modifies the attributes of an -- existing Qualification type, which is represented by a QualificationType -- data structure. Only the owner of a Qualification type can modify its -- attributes. -- -- Most attributes of a Qualification type can be changed after the type -- has been created. However, the Name and Keywords fields cannot be -- modified. The RetryDelayInSeconds parameter can be modified or added to -- change the delay or to enable retries, but RetryDelayInSeconds cannot be -- used to disable retries. -- -- You can use this operation to update the test for a Qualification type. -- The test is updated based on the values specified for the Test, -- TestDurationInSeconds and AnswerKey parameters. All three parameters -- specify the updated test. If you are updating the test for a type, you -- must specify the Test and TestDurationInSeconds parameters. The -- AnswerKey parameter is optional; omitting it specifies that the updated -- test does not have an answer key. -- -- If you omit the Test parameter, the test for the Qualification type is -- unchanged. There is no way to remove a test from a Qualification type -- that has one. If the type already has a test, you cannot update it to be -- AutoGranted. If the Qualification type does not have a test and one is -- provided by an update, the type will henceforth have a test. -- -- If you want to update the test duration or answer key for an existing -- test without changing the questions, you must specify a Test parameter -- with the original questions, along with the updated values. -- -- If you provide an updated Test but no AnswerKey, the new test will not -- have an answer key. Requests for such Qualifications must be granted -- manually. -- -- You can also update the AutoGranted and AutoGrantedValue attributes of -- the Qualification type. module Amazonka.MechanicalTurk.UpdateQualificationType ( -- * Creating a Request UpdateQualificationType (..), newUpdateQualificationType, -- * Request Lenses updateQualificationType_answerKey, updateQualificationType_autoGranted, updateQualificationType_autoGrantedValue, updateQualificationType_description, updateQualificationType_qualificationTypeStatus, updateQualificationType_retryDelayInSeconds, updateQualificationType_test, updateQualificationType_testDurationInSeconds, updateQualificationType_qualificationTypeId, -- * Destructuring the Response UpdateQualificationTypeResponse (..), newUpdateQualificationTypeResponse, -- * Response Lenses updateQualificationTypeResponse_qualificationType, updateQualificationTypeResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.MechanicalTurk.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newUpdateQualificationType' smart constructor. data UpdateQualificationType = UpdateQualificationType' { -- | The answers to the Qualification test specified in the Test parameter, -- in the form of an AnswerKey data structure. answerKey :: Prelude.Maybe Prelude.Text, -- | Specifies whether requests for the Qualification type are granted -- immediately, without prompting the Worker with a Qualification test. -- -- Constraints: If the Test parameter is specified, this parameter cannot -- be true. autoGranted :: Prelude.Maybe Prelude.Bool, -- | The Qualification value to use for automatically granted Qualifications. -- This parameter is used only if the AutoGranted parameter is true. autoGrantedValue :: Prelude.Maybe Prelude.Int, -- | The new description of the Qualification type. description :: Prelude.Maybe Prelude.Text, -- | The new status of the Qualification type - Active | Inactive qualificationTypeStatus :: Prelude.Maybe QualificationTypeStatus, -- | The amount of time, in seconds, that Workers must wait after requesting -- a Qualification of the specified Qualification type before they can -- retry the Qualification request. It is not possible to disable retries -- for a Qualification type after it has been created with retries enabled. -- If you want to disable retries, you must dispose of the existing -- retry-enabled Qualification type using DisposeQualificationType and then -- create a new Qualification type with retries disabled using -- CreateQualificationType. retryDelayInSeconds :: Prelude.Maybe Prelude.Integer, -- | The questions for the Qualification test a Worker must answer correctly -- to obtain a Qualification of this type. If this parameter is specified, -- @TestDurationInSeconds@ must also be specified. -- -- Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm -- data structure. This parameter cannot be specified if AutoGranted is -- true. -- -- Constraints: None. If not specified, the Worker may request the -- Qualification without answering any questions. test :: Prelude.Maybe Prelude.Text, -- | The number of seconds the Worker has to complete the Qualification test, -- starting from the time the Worker requests the Qualification. testDurationInSeconds :: Prelude.Maybe Prelude.Integer, -- | The ID of the Qualification type to update. qualificationTypeId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateQualificationType' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'answerKey', 'updateQualificationType_answerKey' - The answers to the Qualification test specified in the Test parameter, -- in the form of an AnswerKey data structure. -- -- 'autoGranted', 'updateQualificationType_autoGranted' - Specifies whether requests for the Qualification type are granted -- immediately, without prompting the Worker with a Qualification test. -- -- Constraints: If the Test parameter is specified, this parameter cannot -- be true. -- -- 'autoGrantedValue', 'updateQualificationType_autoGrantedValue' - The Qualification value to use for automatically granted Qualifications. -- This parameter is used only if the AutoGranted parameter is true. -- -- 'description', 'updateQualificationType_description' - The new description of the Qualification type. -- -- 'qualificationTypeStatus', 'updateQualificationType_qualificationTypeStatus' - The new status of the Qualification type - Active | Inactive -- -- 'retryDelayInSeconds', 'updateQualificationType_retryDelayInSeconds' - The amount of time, in seconds, that Workers must wait after requesting -- a Qualification of the specified Qualification type before they can -- retry the Qualification request. It is not possible to disable retries -- for a Qualification type after it has been created with retries enabled. -- If you want to disable retries, you must dispose of the existing -- retry-enabled Qualification type using DisposeQualificationType and then -- create a new Qualification type with retries disabled using -- CreateQualificationType. -- -- 'test', 'updateQualificationType_test' - The questions for the Qualification test a Worker must answer correctly -- to obtain a Qualification of this type. If this parameter is specified, -- @TestDurationInSeconds@ must also be specified. -- -- Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm -- data structure. This parameter cannot be specified if AutoGranted is -- true. -- -- Constraints: None. If not specified, the Worker may request the -- Qualification without answering any questions. -- -- 'testDurationInSeconds', 'updateQualificationType_testDurationInSeconds' - The number of seconds the Worker has to complete the Qualification test, -- starting from the time the Worker requests the Qualification. -- -- 'qualificationTypeId', 'updateQualificationType_qualificationTypeId' - The ID of the Qualification type to update. newUpdateQualificationType :: -- | 'qualificationTypeId' Prelude.Text -> UpdateQualificationType newUpdateQualificationType pQualificationTypeId_ = UpdateQualificationType' { answerKey = Prelude.Nothing, autoGranted = Prelude.Nothing, autoGrantedValue = Prelude.Nothing, description = Prelude.Nothing, qualificationTypeStatus = Prelude.Nothing, retryDelayInSeconds = Prelude.Nothing, test = Prelude.Nothing, testDurationInSeconds = Prelude.Nothing, qualificationTypeId = pQualificationTypeId_ } -- | The answers to the Qualification test specified in the Test parameter, -- in the form of an AnswerKey data structure. updateQualificationType_answerKey :: Lens.Lens' UpdateQualificationType (Prelude.Maybe Prelude.Text) updateQualificationType_answerKey = Lens.lens (\UpdateQualificationType' {answerKey} -> answerKey) (\s@UpdateQualificationType' {} a -> s {answerKey = a} :: UpdateQualificationType) -- | Specifies whether requests for the Qualification type are granted -- immediately, without prompting the Worker with a Qualification test. -- -- Constraints: If the Test parameter is specified, this parameter cannot -- be true. updateQualificationType_autoGranted :: Lens.Lens' UpdateQualificationType (Prelude.Maybe Prelude.Bool) updateQualificationType_autoGranted = Lens.lens (\UpdateQualificationType' {autoGranted} -> autoGranted) (\s@UpdateQualificationType' {} a -> s {autoGranted = a} :: UpdateQualificationType) -- | The Qualification value to use for automatically granted Qualifications. -- This parameter is used only if the AutoGranted parameter is true. updateQualificationType_autoGrantedValue :: Lens.Lens' UpdateQualificationType (Prelude.Maybe Prelude.Int) updateQualificationType_autoGrantedValue = Lens.lens (\UpdateQualificationType' {autoGrantedValue} -> autoGrantedValue) (\s@UpdateQualificationType' {} a -> s {autoGrantedValue = a} :: UpdateQualificationType) -- | The new description of the Qualification type. updateQualificationType_description :: Lens.Lens' UpdateQualificationType (Prelude.Maybe Prelude.Text) updateQualificationType_description = Lens.lens (\UpdateQualificationType' {description} -> description) (\s@UpdateQualificationType' {} a -> s {description = a} :: UpdateQualificationType) -- | The new status of the Qualification type - Active | Inactive updateQualificationType_qualificationTypeStatus :: Lens.Lens' UpdateQualificationType (Prelude.Maybe QualificationTypeStatus) updateQualificationType_qualificationTypeStatus = Lens.lens (\UpdateQualificationType' {qualificationTypeStatus} -> qualificationTypeStatus) (\s@UpdateQualificationType' {} a -> s {qualificationTypeStatus = a} :: UpdateQualificationType) -- | The amount of time, in seconds, that Workers must wait after requesting -- a Qualification of the specified Qualification type before they can -- retry the Qualification request. It is not possible to disable retries -- for a Qualification type after it has been created with retries enabled. -- If you want to disable retries, you must dispose of the existing -- retry-enabled Qualification type using DisposeQualificationType and then -- create a new Qualification type with retries disabled using -- CreateQualificationType. updateQualificationType_retryDelayInSeconds :: Lens.Lens' UpdateQualificationType (Prelude.Maybe Prelude.Integer) updateQualificationType_retryDelayInSeconds = Lens.lens (\UpdateQualificationType' {retryDelayInSeconds} -> retryDelayInSeconds) (\s@UpdateQualificationType' {} a -> s {retryDelayInSeconds = a} :: UpdateQualificationType) -- | The questions for the Qualification test a Worker must answer correctly -- to obtain a Qualification of this type. If this parameter is specified, -- @TestDurationInSeconds@ must also be specified. -- -- Constraints: Must not be longer than 65535 bytes. Must be a QuestionForm -- data structure. This parameter cannot be specified if AutoGranted is -- true. -- -- Constraints: None. If not specified, the Worker may request the -- Qualification without answering any questions. updateQualificationType_test :: Lens.Lens' UpdateQualificationType (Prelude.Maybe Prelude.Text) updateQualificationType_test = Lens.lens (\UpdateQualificationType' {test} -> test) (\s@UpdateQualificationType' {} a -> s {test = a} :: UpdateQualificationType) -- | The number of seconds the Worker has to complete the Qualification test, -- starting from the time the Worker requests the Qualification. updateQualificationType_testDurationInSeconds :: Lens.Lens' UpdateQualificationType (Prelude.Maybe Prelude.Integer) updateQualificationType_testDurationInSeconds = Lens.lens (\UpdateQualificationType' {testDurationInSeconds} -> testDurationInSeconds) (\s@UpdateQualificationType' {} a -> s {testDurationInSeconds = a} :: UpdateQualificationType) -- | The ID of the Qualification type to update. updateQualificationType_qualificationTypeId :: Lens.Lens' UpdateQualificationType Prelude.Text updateQualificationType_qualificationTypeId = Lens.lens (\UpdateQualificationType' {qualificationTypeId} -> qualificationTypeId) (\s@UpdateQualificationType' {} a -> s {qualificationTypeId = a} :: UpdateQualificationType) instance Core.AWSRequest UpdateQualificationType where type AWSResponse UpdateQualificationType = UpdateQualificationTypeResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> UpdateQualificationTypeResponse' Prelude.<$> (x Data..?> "QualificationType") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable UpdateQualificationType where hashWithSalt _salt UpdateQualificationType' {..} = _salt `Prelude.hashWithSalt` answerKey `Prelude.hashWithSalt` autoGranted `Prelude.hashWithSalt` autoGrantedValue `Prelude.hashWithSalt` description `Prelude.hashWithSalt` qualificationTypeStatus `Prelude.hashWithSalt` retryDelayInSeconds `Prelude.hashWithSalt` test `Prelude.hashWithSalt` testDurationInSeconds `Prelude.hashWithSalt` qualificationTypeId instance Prelude.NFData UpdateQualificationType where rnf UpdateQualificationType' {..} = Prelude.rnf answerKey `Prelude.seq` Prelude.rnf autoGranted `Prelude.seq` Prelude.rnf autoGrantedValue `Prelude.seq` Prelude.rnf description `Prelude.seq` Prelude.rnf qualificationTypeStatus `Prelude.seq` Prelude.rnf retryDelayInSeconds `Prelude.seq` Prelude.rnf test `Prelude.seq` Prelude.rnf testDurationInSeconds `Prelude.seq` Prelude.rnf qualificationTypeId instance Data.ToHeaders UpdateQualificationType where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "MTurkRequesterServiceV20170117.UpdateQualificationType" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON UpdateQualificationType where toJSON UpdateQualificationType' {..} = Data.object ( Prelude.catMaybes [ ("AnswerKey" Data..=) Prelude.<$> answerKey, ("AutoGranted" Data..=) Prelude.<$> autoGranted, ("AutoGrantedValue" Data..=) Prelude.<$> autoGrantedValue, ("Description" Data..=) Prelude.<$> description, ("QualificationTypeStatus" Data..=) Prelude.<$> qualificationTypeStatus, ("RetryDelayInSeconds" Data..=) Prelude.<$> retryDelayInSeconds, ("Test" Data..=) Prelude.<$> test, ("TestDurationInSeconds" Data..=) Prelude.<$> testDurationInSeconds, Prelude.Just ("QualificationTypeId" Data..= qualificationTypeId) ] ) instance Data.ToPath UpdateQualificationType where toPath = Prelude.const "/" instance Data.ToQuery UpdateQualificationType where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newUpdateQualificationTypeResponse' smart constructor. data UpdateQualificationTypeResponse = UpdateQualificationTypeResponse' { -- | Contains a QualificationType data structure. qualificationType :: Prelude.Maybe QualificationType, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateQualificationTypeResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'qualificationType', 'updateQualificationTypeResponse_qualificationType' - Contains a QualificationType data structure. -- -- 'httpStatus', 'updateQualificationTypeResponse_httpStatus' - The response's http status code. newUpdateQualificationTypeResponse :: -- | 'httpStatus' Prelude.Int -> UpdateQualificationTypeResponse newUpdateQualificationTypeResponse pHttpStatus_ = UpdateQualificationTypeResponse' { qualificationType = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Contains a QualificationType data structure. updateQualificationTypeResponse_qualificationType :: Lens.Lens' UpdateQualificationTypeResponse (Prelude.Maybe QualificationType) updateQualificationTypeResponse_qualificationType = Lens.lens (\UpdateQualificationTypeResponse' {qualificationType} -> qualificationType) (\s@UpdateQualificationTypeResponse' {} a -> s {qualificationType = a} :: UpdateQualificationTypeResponse) -- | The response's http status code. updateQualificationTypeResponse_httpStatus :: Lens.Lens' UpdateQualificationTypeResponse Prelude.Int updateQualificationTypeResponse_httpStatus = Lens.lens (\UpdateQualificationTypeResponse' {httpStatus} -> httpStatus) (\s@UpdateQualificationTypeResponse' {} a -> s {httpStatus = a} :: UpdateQualificationTypeResponse) instance Prelude.NFData UpdateQualificationTypeResponse where rnf UpdateQualificationTypeResponse' {..} = Prelude.rnf qualificationType `Prelude.seq` Prelude.rnf httpStatus