@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 { CreateHITTypeRequest, CreateHITTypeResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateHITTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateHITTypeCommandInput extends CreateHITTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateHITTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateHITTypeCommandOutput extends CreateHITTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>CreateHITType</code> operation creates a new HIT type. This operation
|
|
19
24
|
* allows you to define a standard set of HIT properties to use when creating HITs.
|
|
@@ -30,6 +35,8 @@ export interface CreateHITTypeCommandOutput extends CreateHITTypeResponse, __Met
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param CreateHITTypeCommandInput - {@link CreateHITTypeCommandInput}
|
|
39
|
+
* @returns {@link CreateHITTypeCommandOutput}
|
|
33
40
|
* @see {@link CreateHITTypeCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link CreateHITTypeCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface CreateHITTypeCommandOutput extends CreateHITTypeResponse, __Met
|
|
|
45
52
|
export declare class CreateHITTypeCommand extends $Command<CreateHITTypeCommandInput, CreateHITTypeCommandOutput, MTurkClientResolvedConfig> {
|
|
46
53
|
readonly input: CreateHITTypeCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: CreateHITTypeCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateHITTypeCommandInput, CreateHITTypeCommandOutput>;
|
|
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 { CreateHITWithHITTypeRequest, CreateHITWithHITTypeResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateHITWithHITTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateHITWithHITTypeCommandInput extends CreateHITWithHITTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateHITWithHITTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateHITWithHITTypeCommandOutput extends CreateHITWithHITTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>CreateHITWithHITType</code> operation creates a new Human Intelligence Task (HIT)
|
|
19
24
|
* using an existing HITTypeID generated by the <code>CreateHITType</code> operation.
|
|
@@ -42,6 +47,8 @@ export interface CreateHITWithHITTypeCommandOutput extends CreateHITWithHITTypeR
|
|
|
42
47
|
* const response = await client.send(command);
|
|
43
48
|
* ```
|
|
44
49
|
*
|
|
50
|
+
* @param CreateHITWithHITTypeCommandInput - {@link CreateHITWithHITTypeCommandInput}
|
|
51
|
+
* @returns {@link CreateHITWithHITTypeCommandOutput}
|
|
45
52
|
* @see {@link CreateHITWithHITTypeCommandInput} for command's `input` shape.
|
|
46
53
|
* @see {@link CreateHITWithHITTypeCommandOutput} for command's `response` shape.
|
|
47
54
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface CreateHITWithHITTypeCommandOutput extends CreateHITWithHITTypeR
|
|
|
57
64
|
export declare class CreateHITWithHITTypeCommand extends $Command<CreateHITWithHITTypeCommandInput, CreateHITWithHITTypeCommandOutput, MTurkClientResolvedConfig> {
|
|
58
65
|
readonly input: CreateHITWithHITTypeCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: CreateHITWithHITTypeCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateHITWithHITTypeCommandInput, CreateHITWithHITTypeCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateQualificationTypeRequest, CreateQualificationTypeResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateQualificationTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateQualificationTypeCommandInput extends CreateQualificationTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateQualificationTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateQualificationTypeCommandOutput extends CreateQualificationTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>CreateQualificationType</code>
|
|
@@ -31,6 +36,8 @@ export interface CreateQualificationTypeCommandOutput extends CreateQualificatio
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param CreateQualificationTypeCommandInput - {@link CreateQualificationTypeCommandInput}
|
|
40
|
+
* @returns {@link CreateQualificationTypeCommandOutput}
|
|
34
41
|
* @see {@link CreateQualificationTypeCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link CreateQualificationTypeCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface CreateQualificationTypeCommandOutput extends CreateQualificatio
|
|
|
46
53
|
export declare class CreateQualificationTypeCommand extends $Command<CreateQualificationTypeCommandInput, CreateQualificationTypeCommandOutput, MTurkClientResolvedConfig> {
|
|
47
54
|
readonly input: CreateQualificationTypeCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: CreateQualificationTypeCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateQualificationTypeCommandInput, CreateQualificationTypeCommandOutput>;
|
|
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 { CreateWorkerBlockRequest, CreateWorkerBlockResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateWorkerBlockCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateWorkerBlockCommandInput extends CreateWorkerBlockRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateWorkerBlockCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateWorkerBlockCommandOutput extends CreateWorkerBlockResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The <code>CreateWorkerBlock</code> operation allows you to prevent a Worker from working on your HITs. For example, you can block a Worker who is producing poor quality work. You can block up to 100,000 Workers.</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 CreateWorkerBlockCommandOutput extends CreateWorkerBlockRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateWorkerBlockCommandInput - {@link CreateWorkerBlockCommandInput}
|
|
34
|
+
* @returns {@link CreateWorkerBlockCommandOutput}
|
|
28
35
|
* @see {@link CreateWorkerBlockCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateWorkerBlockCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface CreateWorkerBlockCommandOutput extends CreateWorkerBlockRespons
|
|
|
40
47
|
export declare class CreateWorkerBlockCommand extends $Command<CreateWorkerBlockCommandInput, CreateWorkerBlockCommandOutput, MTurkClientResolvedConfig> {
|
|
41
48
|
readonly input: CreateWorkerBlockCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: CreateWorkerBlockCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateWorkerBlockCommandInput, CreateWorkerBlockCommandOutput>;
|
|
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 { DeleteHITRequest, DeleteHITResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteHITCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteHITCommandInput extends DeleteHITRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteHITCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteHITCommandOutput extends DeleteHITResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>DeleteHIT</code> operation is used to delete HIT that is no longer needed.
|
|
19
24
|
* Only the Requester who created the HIT can delete it.
|
|
@@ -60,6 +65,8 @@ export interface DeleteHITCommandOutput extends DeleteHITResponse, __MetadataBea
|
|
|
60
65
|
* const response = await client.send(command);
|
|
61
66
|
* ```
|
|
62
67
|
*
|
|
68
|
+
* @param DeleteHITCommandInput - {@link DeleteHITCommandInput}
|
|
69
|
+
* @returns {@link DeleteHITCommandOutput}
|
|
63
70
|
* @see {@link DeleteHITCommandInput} for command's `input` shape.
|
|
64
71
|
* @see {@link DeleteHITCommandOutput} for command's `response` shape.
|
|
65
72
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -75,11 +82,20 @@ export interface DeleteHITCommandOutput extends DeleteHITResponse, __MetadataBea
|
|
|
75
82
|
export declare class DeleteHITCommand extends $Command<DeleteHITCommandInput, DeleteHITCommandOutput, MTurkClientResolvedConfig> {
|
|
76
83
|
readonly input: DeleteHITCommandInput;
|
|
77
84
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
78
88
|
constructor(input: DeleteHITCommandInput);
|
|
79
89
|
/**
|
|
80
90
|
* @internal
|
|
81
91
|
*/
|
|
82
92
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteHITCommandInput, DeleteHITCommandOutput>;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
83
96
|
private serialize;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
84
100
|
private deserialize;
|
|
85
101
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteQualificationTypeRequest, DeleteQualificationTypeResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteQualificationTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteQualificationTypeCommandInput extends DeleteQualificationTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteQualificationTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteQualificationTypeCommandOutput extends DeleteQualificationTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>DeleteQualificationType</code>
|
|
@@ -43,6 +48,8 @@ export interface DeleteQualificationTypeCommandOutput extends DeleteQualificatio
|
|
|
43
48
|
* const response = await client.send(command);
|
|
44
49
|
* ```
|
|
45
50
|
*
|
|
51
|
+
* @param DeleteQualificationTypeCommandInput - {@link DeleteQualificationTypeCommandInput}
|
|
52
|
+
* @returns {@link DeleteQualificationTypeCommandOutput}
|
|
46
53
|
* @see {@link DeleteQualificationTypeCommandInput} for command's `input` shape.
|
|
47
54
|
* @see {@link DeleteQualificationTypeCommandOutput} for command's `response` shape.
|
|
48
55
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DeleteQualificationTypeCommandOutput extends DeleteQualificatio
|
|
|
58
65
|
export declare class DeleteQualificationTypeCommand extends $Command<DeleteQualificationTypeCommandInput, DeleteQualificationTypeCommandOutput, MTurkClientResolvedConfig> {
|
|
59
66
|
readonly input: DeleteQualificationTypeCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DeleteQualificationTypeCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteQualificationTypeCommandInput, DeleteQualificationTypeCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteWorkerBlockRequest, DeleteWorkerBlockResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteWorkerBlockCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteWorkerBlockCommandInput extends DeleteWorkerBlockRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteWorkerBlockCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteWorkerBlockCommandOutput extends DeleteWorkerBlockResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The <code>DeleteWorkerBlock</code> operation allows you to reinstate a blocked Worker to work on your HITs. This operation reverses the effects of the CreateWorkerBlock operation. You need the Worker ID to use this operation. If the Worker ID is missing or invalid, this operation fails and returns the message “WorkerId is invalid.” If the specified Worker is not blocked, this operation returns successfully.</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 DeleteWorkerBlockCommandOutput extends DeleteWorkerBlockRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteWorkerBlockCommandInput - {@link DeleteWorkerBlockCommandInput}
|
|
34
|
+
* @returns {@link DeleteWorkerBlockCommandOutput}
|
|
28
35
|
* @see {@link DeleteWorkerBlockCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteWorkerBlockCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DeleteWorkerBlockCommandOutput extends DeleteWorkerBlockRespons
|
|
|
40
47
|
export declare class DeleteWorkerBlockCommand extends $Command<DeleteWorkerBlockCommandInput, DeleteWorkerBlockCommandOutput, MTurkClientResolvedConfig> {
|
|
41
48
|
readonly input: DeleteWorkerBlockCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DeleteWorkerBlockCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteWorkerBlockCommandInput, DeleteWorkerBlockCommandOutput>;
|
|
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 { DisassociateQualificationFromWorkerRequest, DisassociateQualificationFromWorkerResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateQualificationFromWorkerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateQualificationFromWorkerCommandInput extends DisassociateQualificationFromWorkerRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateQualificationFromWorkerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateQualificationFromWorkerCommandOutput extends DisassociateQualificationFromWorkerResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>DisassociateQualificationFromWorker</code>
|
|
19
24
|
* revokes a previously granted Qualification from a user.
|
|
@@ -32,6 +37,8 @@ export interface DisassociateQualificationFromWorkerCommandOutput extends Disass
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param DisassociateQualificationFromWorkerCommandInput - {@link DisassociateQualificationFromWorkerCommandInput}
|
|
41
|
+
* @returns {@link DisassociateQualificationFromWorkerCommandOutput}
|
|
35
42
|
* @see {@link DisassociateQualificationFromWorkerCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link DisassociateQualificationFromWorkerCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface DisassociateQualificationFromWorkerCommandOutput extends Disass
|
|
|
47
54
|
export declare class DisassociateQualificationFromWorkerCommand extends $Command<DisassociateQualificationFromWorkerCommandInput, DisassociateQualificationFromWorkerCommandOutput, MTurkClientResolvedConfig> {
|
|
48
55
|
readonly input: DisassociateQualificationFromWorkerCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: DisassociateQualificationFromWorkerCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateQualificationFromWorkerCommandInput, DisassociateQualificationFromWorkerCommandOutput>;
|
|
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 { GetAccountBalanceRequest, GetAccountBalanceResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAccountBalanceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAccountBalanceCommandInput extends GetAccountBalanceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAccountBalanceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAccountBalanceCommandOutput extends GetAccountBalanceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>The <code>GetAccountBalance</code> operation retrieves the Prepaid HITs balance in your Amazon Mechanical Turk account if you are a Prepaid Requester.
|
|
18
23
|
* Alternatively, this operation will retrieve the remaining available AWS Billing usage if you have enabled AWS Billing.
|
|
19
24
|
* Note: If you have enabled AWS Billing and still have a remaining Prepaid HITs balance, this balance can be viewed on the My Account page in the Requester console.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetAccountBalanceCommandOutput extends GetAccountBalanceRespons
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetAccountBalanceCommandInput - {@link GetAccountBalanceCommandInput}
|
|
36
|
+
* @returns {@link GetAccountBalanceCommandOutput}
|
|
30
37
|
* @see {@link GetAccountBalanceCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetAccountBalanceCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface GetAccountBalanceCommandOutput extends GetAccountBalanceRespons
|
|
|
42
49
|
export declare class GetAccountBalanceCommand extends $Command<GetAccountBalanceCommandInput, GetAccountBalanceCommandOutput, MTurkClientResolvedConfig> {
|
|
43
50
|
readonly input: GetAccountBalanceCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: GetAccountBalanceCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccountBalanceCommandInput, GetAccountBalanceCommandOutput>;
|
|
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 { GetAssignmentRequest, GetAssignmentResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAssignmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAssignmentCommandInput extends GetAssignmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAssignmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAssignmentCommandOutput extends GetAssignmentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>GetAssignment</code> operation retrieves the details of the specified Assignment.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface GetAssignmentCommandOutput extends GetAssignmentResponse, __Met
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetAssignmentCommandInput - {@link GetAssignmentCommandInput}
|
|
36
|
+
* @returns {@link GetAssignmentCommandOutput}
|
|
30
37
|
* @see {@link GetAssignmentCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetAssignmentCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface GetAssignmentCommandOutput extends GetAssignmentResponse, __Met
|
|
|
42
49
|
export declare class GetAssignmentCommand extends $Command<GetAssignmentCommandInput, GetAssignmentCommandOutput, MTurkClientResolvedConfig> {
|
|
43
50
|
readonly input: GetAssignmentCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: GetAssignmentCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAssignmentCommandInput, GetAssignmentCommandOutput>;
|
|
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 { GetFileUploadURLRequest, GetFileUploadURLResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetFileUploadURLCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetFileUploadURLCommandInput extends GetFileUploadURLRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetFileUploadURLCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetFileUploadURLCommandOutput extends GetFileUploadURLResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>GetFileUploadURL</code>
|
|
@@ -42,6 +47,8 @@ export interface GetFileUploadURLCommandOutput extends GetFileUploadURLResponse,
|
|
|
42
47
|
* const response = await client.send(command);
|
|
43
48
|
* ```
|
|
44
49
|
*
|
|
50
|
+
* @param GetFileUploadURLCommandInput - {@link GetFileUploadURLCommandInput}
|
|
51
|
+
* @returns {@link GetFileUploadURLCommandOutput}
|
|
45
52
|
* @see {@link GetFileUploadURLCommandInput} for command's `input` shape.
|
|
46
53
|
* @see {@link GetFileUploadURLCommandOutput} for command's `response` shape.
|
|
47
54
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface GetFileUploadURLCommandOutput extends GetFileUploadURLResponse,
|
|
|
57
64
|
export declare class GetFileUploadURLCommand extends $Command<GetFileUploadURLCommandInput, GetFileUploadURLCommandOutput, MTurkClientResolvedConfig> {
|
|
58
65
|
readonly input: GetFileUploadURLCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: GetFileUploadURLCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFileUploadURLCommandInput, GetFileUploadURLCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetHITRequest, GetHITResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetHITCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetHITCommandInput extends GetHITRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetHITCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetHITCommandOutput extends GetHITResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The <code>GetHIT</code> operation retrieves the details of the specified HIT.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface GetHITCommandOutput extends GetHITResponse, __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetHITCommandInput - {@link GetHITCommandInput}
|
|
36
|
+
* @returns {@link GetHITCommandOutput}
|
|
30
37
|
* @see {@link GetHITCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetHITCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface GetHITCommandOutput extends GetHITResponse, __MetadataBearer {
|
|
|
42
49
|
export declare class GetHITCommand extends $Command<GetHITCommandInput, GetHITCommandOutput, MTurkClientResolvedConfig> {
|
|
43
50
|
readonly input: GetHITCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: GetHITCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetHITCommandInput, GetHITCommandOutput>;
|
|
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 { GetQualificationScoreRequest, GetQualificationScoreResponse } from "../models/models_0";
|
|
5
5
|
import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetQualificationScoreCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetQualificationScoreCommandInput extends GetQualificationScoreRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetQualificationScoreCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetQualificationScoreCommandOutput extends GetQualificationScoreResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* The
|
|
19
24
|
* <code>GetQualificationScore</code>
|
|
@@ -38,6 +43,8 @@ export interface GetQualificationScoreCommandOutput extends GetQualificationScor
|
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
40
45
|
*
|
|
46
|
+
* @param GetQualificationScoreCommandInput - {@link GetQualificationScoreCommandInput}
|
|
47
|
+
* @returns {@link GetQualificationScoreCommandOutput}
|
|
41
48
|
* @see {@link GetQualificationScoreCommandInput} for command's `input` shape.
|
|
42
49
|
* @see {@link GetQualificationScoreCommandOutput} for command's `response` shape.
|
|
43
50
|
* @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface GetQualificationScoreCommandOutput extends GetQualificationScor
|
|
|
53
60
|
export declare class GetQualificationScoreCommand extends $Command<GetQualificationScoreCommandInput, GetQualificationScoreCommandOutput, MTurkClientResolvedConfig> {
|
|
54
61
|
readonly input: GetQualificationScoreCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: GetQualificationScoreCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MTurkClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetQualificationScoreCommandInput, GetQualificationScoreCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|