@aws-sdk/client-mturk 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/MTurk.d.ts +40 -0
- package/dist-types/MTurkClient.d.ts +24 -4
- package/dist-types/commands/AcceptQualificationRequestCommand.d.ts +16 -0
- package/dist-types/commands/ApproveAssignmentCommand.d.ts +16 -0
- package/dist-types/commands/AssociateQualificationWithWorkerCommand.d.ts +16 -0
- package/dist-types/commands/CreateAdditionalAssignmentsForHITCommand.d.ts +16 -0
- package/dist-types/commands/CreateHITCommand.d.ts +16 -0
- package/dist-types/commands/CreateHITTypeCommand.d.ts +16 -0
- package/dist-types/commands/CreateHITWithHITTypeCommand.d.ts +16 -0
- package/dist-types/commands/CreateQualificationTypeCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkerBlockCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHITCommand.d.ts +16 -0
- package/dist-types/commands/DeleteQualificationTypeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkerBlockCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateQualificationFromWorkerCommand.d.ts +16 -0
- package/dist-types/commands/GetAccountBalanceCommand.d.ts +16 -0
- package/dist-types/commands/GetAssignmentCommand.d.ts +16 -0
- package/dist-types/commands/GetFileUploadURLCommand.d.ts +16 -0
- package/dist-types/commands/GetHITCommand.d.ts +16 -0
- package/dist-types/commands/GetQualificationScoreCommand.d.ts +16 -0
- package/dist-types/commands/GetQualificationTypeCommand.d.ts +16 -0
- package/dist-types/commands/ListAssignmentsForHITCommand.d.ts +16 -0
- package/dist-types/commands/ListBonusPaymentsCommand.d.ts +16 -0
- package/dist-types/commands/ListHITsCommand.d.ts +16 -0
- package/dist-types/commands/ListHITsForQualificationTypeCommand.d.ts +16 -0
- package/dist-types/commands/ListQualificationRequestsCommand.d.ts +16 -0
- package/dist-types/commands/ListQualificationTypesCommand.d.ts +16 -0
- package/dist-types/commands/ListReviewPolicyResultsForHITCommand.d.ts +16 -0
- package/dist-types/commands/ListReviewableHITsCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkerBlocksCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkersWithQualificationTypeCommand.d.ts +16 -0
- package/dist-types/commands/NotifyWorkersCommand.d.ts +16 -0
- package/dist-types/commands/RejectAssignmentCommand.d.ts +16 -0
- package/dist-types/commands/RejectQualificationRequestCommand.d.ts +16 -0
- package/dist-types/commands/SendBonusCommand.d.ts +16 -0
- package/dist-types/commands/SendTestEventNotificationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateExpirationForHITCommand.d.ts +16 -0
- package/dist-types/commands/UpdateHITReviewStatusCommand.d.ts +16 -0
- package/dist-types/commands/UpdateHITTypeOfHITCommand.d.ts +16 -0
- package/dist-types/commands/UpdateNotificationSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateQualificationTypeCommand.d.ts +16 -0
- package/dist-types/models/MTurkServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +293 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAssignmentsForHITPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBonusPaymentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListHITsForQualificationTypePaginator.d.ts +3 -0
- package/dist-types/pagination/ListHITsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListQualificationRequestsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListQualificationTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReviewPolicyResultsForHITPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReviewableHITsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkerBlocksPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkersWithQualificationTypePaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RejectQualificationRequestRequest, RejectQualificationRequestResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RejectQualificationRequestCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RejectQualificationRequestCommandInput extends RejectQualificationRequestRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RejectQualificationRequestCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RejectQualificationRequestCommandOutput extends RejectQualificationRequestResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>RejectQualificationRequest</code>
|
|
@@ -31,6 +36,8 @@ export interface RejectQualificationRequestCommandOutput extends RejectQualifica
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param RejectQualificationRequestCommandInput - {@link RejectQualificationRequestCommandInput}
|
|
40
|
+
* @returns {@link RejectQualificationRequestCommandOutput}
|
|
34
41
|
* @see {@link RejectQualificationRequestCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link RejectQualificationRequestCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface RejectQualificationRequestCommandOutput extends RejectQualifica
|
|
|
46
53
|
export declare class RejectQualificationRequestCommand extends $Command<RejectQualificationRequestCommandInput, RejectQualificationRequestCommandOutput, MTurkClientResolvedConfig> {
|
|
47
54
|
readonly input: RejectQualificationRequestCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: RejectQualificationRequestCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RejectQualificationRequestCommandInput, RejectQualificationRequestCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { SendBonusRequest, SendBonusResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SendBonusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SendBonusCommandInput extends SendBonusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SendBonusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SendBonusCommandOutput extends SendBonusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>SendBonus</code>
|
|
@@ -38,6 +43,8 @@ export interface SendBonusCommandOutput extends SendBonusResponse, __MetadataBea
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param SendBonusCommandInput - {@link SendBonusCommandInput}
|
|
47
|
+
* @returns {@link SendBonusCommandOutput}
|
|
41
48
|
* @see {@link SendBonusCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link SendBonusCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface SendBonusCommandOutput extends SendBonusResponse, __MetadataBea
|
|
|
53
60
|
export declare class SendBonusCommand extends $Command<SendBonusCommandInput, SendBonusCommandOutput, MTurkClientResolvedConfig> {
|
|
54
61
|
readonly input: SendBonusCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: SendBonusCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendBonusCommandInput, SendBonusCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { SendTestEventNotificationRequest, SendTestEventNotificationResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SendTestEventNotificationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SendTestEventNotificationCommandInput extends SendTestEventNotificationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SendTestEventNotificationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SendTestEventNotificationCommandOutput extends SendTestEventNotificationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>SendTestEventNotification</code> operation causes Amazon Mechanical Turk to send
|
|
19
24
|
* a notification message as if a HIT event occurred, according to the provided
|
|
@@ -31,6 +36,8 @@ export interface SendTestEventNotificationCommandOutput extends SendTestEventNot
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param SendTestEventNotificationCommandInput - {@link SendTestEventNotificationCommandInput}
|
|
40
|
+
* @returns {@link SendTestEventNotificationCommandOutput}
|
|
34
41
|
* @see {@link SendTestEventNotificationCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link SendTestEventNotificationCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface SendTestEventNotificationCommandOutput extends SendTestEventNot
|
|
|
46
53
|
export declare class SendTestEventNotificationCommand extends $Command<SendTestEventNotificationCommandInput, SendTestEventNotificationCommandOutput, MTurkClientResolvedConfig> {
|
|
47
54
|
readonly input: SendTestEventNotificationCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: SendTestEventNotificationCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendTestEventNotificationCommandInput, SendTestEventNotificationCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateExpirationForHITRequest, UpdateExpirationForHITResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateExpirationForHITCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateExpirationForHITCommandInput extends UpdateExpirationForHITRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateExpirationForHITCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateExpirationForHITCommandOutput extends UpdateExpirationForHITResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>UpdateExpirationForHIT</code> operation allows you update the expiration time of a HIT.
|
|
19
24
|
* If you update it to a time in the past, the HIT will be immediately expired.
|
|
@@ -28,6 +33,8 @@ export interface UpdateExpirationForHITCommandOutput extends UpdateExpirationFor
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param UpdateExpirationForHITCommandInput - {@link UpdateExpirationForHITCommandInput}
|
|
37
|
+
* @returns {@link UpdateExpirationForHITCommandOutput}
|
|
31
38
|
* @see {@link UpdateExpirationForHITCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link UpdateExpirationForHITCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface UpdateExpirationForHITCommandOutput extends UpdateExpirationFor
|
|
|
43
50
|
export declare class UpdateExpirationForHITCommand extends $Command<UpdateExpirationForHITCommandInput, UpdateExpirationForHITCommandOutput, MTurkClientResolvedConfig> {
|
|
44
51
|
readonly input: UpdateExpirationForHITCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: UpdateExpirationForHITCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateExpirationForHITCommandInput, UpdateExpirationForHITCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateHITReviewStatusRequest, UpdateHITReviewStatusResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateHITReviewStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateHITReviewStatusCommandInput extends UpdateHITReviewStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateHITReviewStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateHITReviewStatusCommandOutput extends UpdateHITReviewStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>UpdateHITReviewStatus</code> operation updates the status of a HIT.
|
|
19
24
|
* If the status is Reviewable, this operation can update the status to Reviewing,
|
|
@@ -29,6 +34,8 @@ export interface UpdateHITReviewStatusCommandOutput extends UpdateHITReviewStatu
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param UpdateHITReviewStatusCommandInput - {@link UpdateHITReviewStatusCommandInput}
|
|
38
|
+
* @returns {@link UpdateHITReviewStatusCommandOutput}
|
|
32
39
|
* @see {@link UpdateHITReviewStatusCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link UpdateHITReviewStatusCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface UpdateHITReviewStatusCommandOutput extends UpdateHITReviewStatu
|
|
|
44
51
|
export declare class UpdateHITReviewStatusCommand extends $Command<UpdateHITReviewStatusCommandInput, UpdateHITReviewStatusCommandOutput, MTurkClientResolvedConfig> {
|
|
45
52
|
readonly input: UpdateHITReviewStatusCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: UpdateHITReviewStatusCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateHITReviewStatusCommandInput, UpdateHITReviewStatusCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateHITTypeOfHITRequest, UpdateHITTypeOfHITResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateHITTypeOfHITCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateHITTypeOfHITCommandInput extends UpdateHITTypeOfHITRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateHITTypeOfHITCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateHITTypeOfHITCommandOutput extends UpdateHITTypeOfHITResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>UpdateHITTypeOfHIT</code>
|
|
@@ -32,6 +37,8 @@ export interface UpdateHITTypeOfHITCommandOutput extends UpdateHITTypeOfHITRespo
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param UpdateHITTypeOfHITCommandInput - {@link UpdateHITTypeOfHITCommandInput}
|
|
41
|
+
* @returns {@link UpdateHITTypeOfHITCommandOutput}
|
|
35
42
|
* @see {@link UpdateHITTypeOfHITCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link UpdateHITTypeOfHITCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface UpdateHITTypeOfHITCommandOutput extends UpdateHITTypeOfHITRespo
|
|
|
47
54
|
export declare class UpdateHITTypeOfHITCommand extends $Command<UpdateHITTypeOfHITCommandInput, UpdateHITTypeOfHITCommandOutput, MTurkClientResolvedConfig> {
|
|
48
55
|
readonly input: UpdateHITTypeOfHITCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: UpdateHITTypeOfHITCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateHITTypeOfHITCommandInput, UpdateHITTypeOfHITCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateNotificationSettingsRequest, UpdateNotificationSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateNotificationSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateNotificationSettingsCommandInput extends UpdateNotificationSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateNotificationSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateNotificationSettingsCommandOutput extends UpdateNotificationSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>UpdateNotificationSettings</code> operation creates, updates,
|
|
19
24
|
* disables or re-enables notifications for a HIT type.
|
|
@@ -36,6 +41,8 @@ export interface UpdateNotificationSettingsCommandOutput extends UpdateNotificat
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param UpdateNotificationSettingsCommandInput - {@link UpdateNotificationSettingsCommandInput}
|
|
45
|
+
* @returns {@link UpdateNotificationSettingsCommandOutput}
|
|
39
46
|
* @see {@link UpdateNotificationSettingsCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link UpdateNotificationSettingsCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface UpdateNotificationSettingsCommandOutput extends UpdateNotificat
|
|
|
51
58
|
export declare class UpdateNotificationSettingsCommand extends $Command<UpdateNotificationSettingsCommandInput, UpdateNotificationSettingsCommandOutput, MTurkClientResolvedConfig> {
|
|
52
59
|
readonly input: UpdateNotificationSettingsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: UpdateNotificationSettingsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNotificationSettingsCommandInput, UpdateNotificationSettingsCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateQualificationTypeRequest, UpdateQualificationTypeResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateQualificationTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateQualificationTypeCommandInput extends UpdateQualificationTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateQualificationTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateQualificationTypeCommandOutput extends UpdateQualificationTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>UpdateQualificationType</code>
|
|
@@ -57,6 +62,8 @@ export interface UpdateQualificationTypeCommandOutput extends UpdateQualificatio
|
|
|
57
62
|
* const response = await client.send(command);
|
|
58
63
|
* ```
|
|
59
64
|
*
|
|
65
|
+
* @param UpdateQualificationTypeCommandInput - {@link UpdateQualificationTypeCommandInput}
|
|
66
|
+
* @returns {@link UpdateQualificationTypeCommandOutput}
|
|
60
67
|
* @see {@link UpdateQualificationTypeCommandInput} for command's `input` shape.
|
|
61
68
|
* @see {@link UpdateQualificationTypeCommandOutput} for command's `response` shape.
|
|
62
69
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface UpdateQualificationTypeCommandOutput extends UpdateQualificatio
|
|
|
72
79
|
export declare class UpdateQualificationTypeCommand extends $Command<UpdateQualificationTypeCommandInput, UpdateQualificationTypeCommandOutput, MTurkClientResolvedConfig> {
|
|
73
80
|
readonly input: UpdateQualificationTypeCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: UpdateQualificationTypeCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateQualificationTypeCommandInput, UpdateQualificationTypeCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from MTurk service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class MTurkServiceException extends __ServiceException {
|