@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 { GetQualificationTypeRequest, GetQualificationTypeResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetQualificationTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetQualificationTypeCommandInput extends GetQualificationTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetQualificationTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetQualificationTypeCommandOutput extends GetQualificationTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>GetQualificationType</code>operation retrieves information about a Qualification type using its ID.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface GetQualificationTypeCommandOutput extends GetQualificationTypeR
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetQualificationTypeCommandInput - {@link GetQualificationTypeCommandInput}
|
|
36
|
+
* @returns {@link GetQualificationTypeCommandOutput}
|
|
30
37
|
* @see {@link GetQualificationTypeCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetQualificationTypeCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface GetQualificationTypeCommandOutput extends GetQualificationTypeR
|
|
|
42
49
|
export declare class GetQualificationTypeCommand extends $Command<GetQualificationTypeCommandInput, GetQualificationTypeCommandOutput, MTurkClientResolvedConfig> {
|
|
43
50
|
readonly input: GetQualificationTypeCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: GetQualificationTypeCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetQualificationTypeCommandInput, GetQualificationTypeCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
50
63
|
private serialize;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
51
67
|
private deserialize;
|
|
52
68
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListAssignmentsForHITRequest, ListAssignmentsForHITResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAssignmentsForHITCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAssignmentsForHITCommandInput extends ListAssignmentsForHITRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAssignmentsForHITCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAssignmentsForHITCommandOutput extends ListAssignmentsForHITResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>ListAssignmentsForHIT</code>
|
|
@@ -51,6 +56,8 @@ export interface ListAssignmentsForHITCommandOutput extends ListAssignmentsForHI
|
|
|
51
56
|
* const response = await client.send(command);
|
|
52
57
|
* ```
|
|
53
58
|
*
|
|
59
|
+
* @param ListAssignmentsForHITCommandInput - {@link ListAssignmentsForHITCommandInput}
|
|
60
|
+
* @returns {@link ListAssignmentsForHITCommandOutput}
|
|
54
61
|
* @see {@link ListAssignmentsForHITCommandInput} for command's `input` shape.
|
|
55
62
|
* @see {@link ListAssignmentsForHITCommandOutput} for command's `response` shape.
|
|
56
63
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface ListAssignmentsForHITCommandOutput extends ListAssignmentsForHI
|
|
|
66
73
|
export declare class ListAssignmentsForHITCommand extends $Command<ListAssignmentsForHITCommandInput, ListAssignmentsForHITCommandOutput, MTurkClientResolvedConfig> {
|
|
67
74
|
readonly input: ListAssignmentsForHITCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: ListAssignmentsForHITCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssignmentsForHITCommandInput, ListAssignmentsForHITCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListBonusPaymentsRequest, ListBonusPaymentsResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListBonusPaymentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListBonusPaymentsCommandInput extends ListBonusPaymentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListBonusPaymentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListBonusPaymentsCommandOutput extends ListBonusPaymentsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>ListBonusPayments</code>
|
|
@@ -30,6 +35,8 @@ export interface ListBonusPaymentsCommandOutput extends ListBonusPaymentsRespons
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param ListBonusPaymentsCommandInput - {@link ListBonusPaymentsCommandInput}
|
|
39
|
+
* @returns {@link ListBonusPaymentsCommandOutput}
|
|
33
40
|
* @see {@link ListBonusPaymentsCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link ListBonusPaymentsCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface ListBonusPaymentsCommandOutput extends ListBonusPaymentsRespons
|
|
|
45
52
|
export declare class ListBonusPaymentsCommand extends $Command<ListBonusPaymentsCommandInput, ListBonusPaymentsCommandOutput, MTurkClientResolvedConfig> {
|
|
46
53
|
readonly input: ListBonusPaymentsCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: ListBonusPaymentsCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListBonusPaymentsCommandInput, ListBonusPaymentsCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListHITsRequest, ListHITsResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListHITsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListHITsCommandInput extends ListHITsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListHITsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListHITsCommandOutput extends ListHITsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>ListHITs</code>
|
|
@@ -31,6 +36,8 @@ export interface ListHITsCommandOutput extends ListHITsResponse, __MetadataBeare
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param ListHITsCommandInput - {@link ListHITsCommandInput}
|
|
40
|
+
* @returns {@link ListHITsCommandOutput}
|
|
34
41
|
* @see {@link ListHITsCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link ListHITsCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListHITsCommandOutput extends ListHITsResponse, __MetadataBeare
|
|
|
46
53
|
export declare class ListHITsCommand extends $Command<ListHITsCommandInput, ListHITsCommandOutput, MTurkClientResolvedConfig> {
|
|
47
54
|
readonly input: ListHITsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListHITsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListHITsCommandInput, ListHITsCommandOutput>;
|
|
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 { ListHITsForQualificationTypeRequest, ListHITsForQualificationTypeResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListHITsForQualificationTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListHITsForQualificationTypeCommandInput extends ListHITsForQualificationTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListHITsForQualificationTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListHITsForQualificationTypeCommandOutput extends ListHITsForQualificationTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>ListHITsForQualificationType</code> operation returns the HITs that use
|
|
19
24
|
* the given Qualification type for a Qualification requirement.
|
|
@@ -30,6 +35,8 @@ export interface ListHITsForQualificationTypeCommandOutput extends ListHITsForQu
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param ListHITsForQualificationTypeCommandInput - {@link ListHITsForQualificationTypeCommandInput}
|
|
39
|
+
* @returns {@link ListHITsForQualificationTypeCommandOutput}
|
|
33
40
|
* @see {@link ListHITsForQualificationTypeCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link ListHITsForQualificationTypeCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface ListHITsForQualificationTypeCommandOutput extends ListHITsForQu
|
|
|
45
52
|
export declare class ListHITsForQualificationTypeCommand extends $Command<ListHITsForQualificationTypeCommandInput, ListHITsForQualificationTypeCommandOutput, MTurkClientResolvedConfig> {
|
|
46
53
|
readonly input: ListHITsForQualificationTypeCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: ListHITsForQualificationTypeCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListHITsForQualificationTypeCommandInput, ListHITsForQualificationTypeCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListQualificationRequestsRequest, ListQualificationRequestsResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListQualificationRequestsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListQualificationRequestsCommandInput extends ListQualificationRequestsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListQualificationRequestsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListQualificationRequestsCommandOutput extends ListQualificationRequestsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>ListQualificationRequests</code>
|
|
@@ -32,6 +37,8 @@ export interface ListQualificationRequestsCommandOutput extends ListQualificatio
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param ListQualificationRequestsCommandInput - {@link ListQualificationRequestsCommandInput}
|
|
41
|
+
* @returns {@link ListQualificationRequestsCommandOutput}
|
|
35
42
|
* @see {@link ListQualificationRequestsCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link ListQualificationRequestsCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListQualificationRequestsCommandOutput extends ListQualificatio
|
|
|
47
54
|
export declare class ListQualificationRequestsCommand extends $Command<ListQualificationRequestsCommandInput, ListQualificationRequestsCommandOutput, MTurkClientResolvedConfig> {
|
|
48
55
|
readonly input: ListQualificationRequestsCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListQualificationRequestsCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListQualificationRequestsCommandInput, ListQualificationRequestsCommandOutput>;
|
|
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 { ListQualificationTypesRequest, ListQualificationTypesResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListQualificationTypesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListQualificationTypesCommandInput extends ListQualificationTypesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListQualificationTypesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListQualificationTypesCommandOutput extends ListQualificationTypesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>ListQualificationTypes</code>
|
|
@@ -30,6 +35,8 @@ export interface ListQualificationTypesCommandOutput extends ListQualificationTy
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param ListQualificationTypesCommandInput - {@link ListQualificationTypesCommandInput}
|
|
39
|
+
* @returns {@link ListQualificationTypesCommandOutput}
|
|
33
40
|
* @see {@link ListQualificationTypesCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link ListQualificationTypesCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface ListQualificationTypesCommandOutput extends ListQualificationTy
|
|
|
45
52
|
export declare class ListQualificationTypesCommand extends $Command<ListQualificationTypesCommandInput, ListQualificationTypesCommandOutput, MTurkClientResolvedConfig> {
|
|
46
53
|
readonly input: ListQualificationTypesCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: ListQualificationTypesCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListQualificationTypesCommandInput, ListQualificationTypesCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListReviewPolicyResultsForHITRequest, ListReviewPolicyResultsForHITResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListReviewPolicyResultsForHITCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListReviewPolicyResultsForHITCommandInput extends ListReviewPolicyResultsForHITRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListReviewPolicyResultsForHITCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListReviewPolicyResultsForHITCommandOutput extends ListReviewPolicyResultsForHITResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>ListReviewPolicyResultsForHIT</code> operation retrieves the computed results
|
|
19
24
|
* and the actions taken in the course of executing your Review Policies for a given HIT.
|
|
@@ -31,6 +36,8 @@ export interface ListReviewPolicyResultsForHITCommandOutput extends ListReviewPo
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param ListReviewPolicyResultsForHITCommandInput - {@link ListReviewPolicyResultsForHITCommandInput}
|
|
40
|
+
* @returns {@link ListReviewPolicyResultsForHITCommandOutput}
|
|
34
41
|
* @see {@link ListReviewPolicyResultsForHITCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link ListReviewPolicyResultsForHITCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListReviewPolicyResultsForHITCommandOutput extends ListReviewPo
|
|
|
46
53
|
export declare class ListReviewPolicyResultsForHITCommand extends $Command<ListReviewPolicyResultsForHITCommandInput, ListReviewPolicyResultsForHITCommandOutput, MTurkClientResolvedConfig> {
|
|
47
54
|
readonly input: ListReviewPolicyResultsForHITCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListReviewPolicyResultsForHITCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReviewPolicyResultsForHITCommandInput, ListReviewPolicyResultsForHITCommandOutput>;
|
|
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 { ListReviewableHITsRequest, ListReviewableHITsResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListReviewableHITsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListReviewableHITsCommandInput extends ListReviewableHITsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListReviewableHITsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListReviewableHITsCommandOutput extends ListReviewableHITsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>ListReviewableHITs</code> operation retrieves the HITs with Status equal to
|
|
19
24
|
* Reviewable or Status equal to Reviewing that belong to the Requester calling the operation.
|
|
@@ -28,6 +33,8 @@ export interface ListReviewableHITsCommandOutput extends ListReviewableHITsRespo
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListReviewableHITsCommandInput - {@link ListReviewableHITsCommandInput}
|
|
37
|
+
* @returns {@link ListReviewableHITsCommandOutput}
|
|
31
38
|
* @see {@link ListReviewableHITsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListReviewableHITsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListReviewableHITsCommandOutput extends ListReviewableHITsRespo
|
|
|
43
50
|
export declare class ListReviewableHITsCommand extends $Command<ListReviewableHITsCommandInput, ListReviewableHITsCommandOutput, MTurkClientResolvedConfig> {
|
|
44
51
|
readonly input: ListReviewableHITsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListReviewableHITsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReviewableHITsCommandInput, ListReviewableHITsCommandOutput>;
|
|
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 { ListWorkerBlocksRequest, ListWorkerBlocksResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListWorkerBlocksCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListWorkerBlocksCommandInput extends ListWorkerBlocksRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListWorkerBlocksCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListWorkerBlocksCommandOutput extends ListWorkerBlocksResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The <code>ListWorkersBlocks</code> operation retrieves a list of Workers who are blocked from working on your HITs.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListWorkerBlocksCommandOutput extends ListWorkerBlocksResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListWorkerBlocksCommandInput - {@link ListWorkerBlocksCommandInput}
|
|
34
|
+
* @returns {@link ListWorkerBlocksCommandOutput}
|
|
28
35
|
* @see {@link ListWorkerBlocksCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListWorkerBlocksCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface ListWorkerBlocksCommandOutput extends ListWorkerBlocksResponse,
|
|
|
40
47
|
export declare class ListWorkerBlocksCommand extends $Command<ListWorkerBlocksCommandInput, ListWorkerBlocksCommandOutput, MTurkClientResolvedConfig> {
|
|
41
48
|
readonly input: ListWorkerBlocksCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: ListWorkerBlocksCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkerBlocksCommandInput, ListWorkerBlocksCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListWorkersWithQualificationTypeRequest, ListWorkersWithQualificationTypeResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListWorkersWithQualificationTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListWorkersWithQualificationTypeCommandInput extends ListWorkersWithQualificationTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListWorkersWithQualificationTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListWorkersWithQualificationTypeCommandOutput extends ListWorkersWithQualificationTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>ListWorkersWithQualificationType</code> operation returns all of the Workers
|
|
19
24
|
* that have been associated with a given Qualification type.
|
|
@@ -28,6 +33,8 @@ export interface ListWorkersWithQualificationTypeCommandOutput extends ListWorke
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListWorkersWithQualificationTypeCommandInput - {@link ListWorkersWithQualificationTypeCommandInput}
|
|
37
|
+
* @returns {@link ListWorkersWithQualificationTypeCommandOutput}
|
|
31
38
|
* @see {@link ListWorkersWithQualificationTypeCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListWorkersWithQualificationTypeCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListWorkersWithQualificationTypeCommandOutput extends ListWorke
|
|
|
43
50
|
export declare class ListWorkersWithQualificationTypeCommand extends $Command<ListWorkersWithQualificationTypeCommandInput, ListWorkersWithQualificationTypeCommandOutput, MTurkClientResolvedConfig> {
|
|
44
51
|
readonly input: ListWorkersWithQualificationTypeCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListWorkersWithQualificationTypeCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkersWithQualificationTypeCommandInput, ListWorkersWithQualificationTypeCommandOutput>;
|
|
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 { NotifyWorkersRequest, NotifyWorkersResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link NotifyWorkersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface NotifyWorkersCommandInput extends NotifyWorkersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link NotifyWorkersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface NotifyWorkersCommandOutput extends NotifyWorkersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>NotifyWorkers</code>
|
|
@@ -34,6 +39,8 @@ export interface NotifyWorkersCommandOutput extends NotifyWorkersResponse, __Met
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param NotifyWorkersCommandInput - {@link NotifyWorkersCommandInput}
|
|
43
|
+
* @returns {@link NotifyWorkersCommandOutput}
|
|
37
44
|
* @see {@link NotifyWorkersCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link NotifyWorkersCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface NotifyWorkersCommandOutput extends NotifyWorkersResponse, __Met
|
|
|
49
56
|
export declare class NotifyWorkersCommand extends $Command<NotifyWorkersCommandInput, NotifyWorkersCommandOutput, MTurkClientResolvedConfig> {
|
|
50
57
|
readonly input: NotifyWorkersCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: NotifyWorkersCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<NotifyWorkersCommandInput, NotifyWorkersCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RejectAssignmentRequest, RejectAssignmentResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RejectAssignmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RejectAssignmentCommandInput extends RejectAssignmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RejectAssignmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RejectAssignmentCommandOutput extends RejectAssignmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>RejectAssignment</code> operation rejects the results of a completed assignment.
|
|
19
24
|
* </p>
|
|
@@ -37,6 +42,8 @@ export interface RejectAssignmentCommandOutput extends RejectAssignmentResponse,
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param RejectAssignmentCommandInput - {@link RejectAssignmentCommandInput}
|
|
46
|
+
* @returns {@link RejectAssignmentCommandOutput}
|
|
40
47
|
* @see {@link RejectAssignmentCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link RejectAssignmentCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface RejectAssignmentCommandOutput extends RejectAssignmentResponse,
|
|
|
52
59
|
export declare class RejectAssignmentCommand extends $Command<RejectAssignmentCommandInput, RejectAssignmentCommandOutput, MTurkClientResolvedConfig> {
|
|
53
60
|
readonly input: RejectAssignmentCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: RejectAssignmentCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RejectAssignmentCommandInput, RejectAssignmentCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|