import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListQualificationTypesRequest, ListQualificationTypesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListQualificationTypesCommand}. */ export interface ListQualificationTypesCommandInput extends ListQualificationTypesRequest { } /** * @public * * The output of {@link ListQualificationTypesCommand}. */ export interface ListQualificationTypesCommandOutput extends ListQualificationTypesResponse, __MetadataBearer { } declare const ListQualificationTypesCommand_base: { new (input: ListQualificationTypesCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListQualificationTypesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

* The * ListQualificationTypes * operation returns a list of Qualification types, filtered by * an optional search term. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MTurkClient, ListQualificationTypesCommand } from "@aws-sdk/client-mturk"; // ES Modules import * // const { MTurkClient, ListQualificationTypesCommand } = require("@aws-sdk/client-mturk"); // CommonJS import * // import type { MTurkClientConfig } from "@aws-sdk/client-mturk"; * const config = {}; // type is MTurkClientConfig * const client = new MTurkClient(config); * const input = { // ListQualificationTypesRequest * Query: "STRING_VALUE", * MustBeRequestable: true || false, // required * MustBeOwnedByCaller: true || false, * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListQualificationTypesCommand(input); * const response = await client.send(command); * // { // ListQualificationTypesResponse * // NumResults: Number("int"), * // NextToken: "STRING_VALUE", * // QualificationTypes: [ // QualificationTypeList * // { // QualificationType * // QualificationTypeId: "STRING_VALUE", * // CreationTime: new Date("TIMESTAMP"), * // Name: "STRING_VALUE", * // Description: "STRING_VALUE", * // Keywords: "STRING_VALUE", * // QualificationTypeStatus: "Active" || "Inactive", * // Test: "STRING_VALUE", * // TestDurationInSeconds: Number("long"), * // AnswerKey: "STRING_VALUE", * // RetryDelayInSeconds: Number("long"), * // IsRequestable: true || false, * // AutoGranted: true || false, * // AutoGrantedValue: Number("int"), * // }, * // ], * // }; * * ``` * * @param ListQualificationTypesCommandInput - {@link ListQualificationTypesCommandInput} * @returns {@link ListQualificationTypesCommandOutput} * @see {@link ListQualificationTypesCommandInput} for command's `input` shape. * @see {@link ListQualificationTypesCommandOutput} for command's `response` shape. * @see {@link MTurkClientResolvedConfig | config} for MTurkClient's `config` shape. * * @throws {@link RequestError} (client fault) *

Your request is invalid.

* * @throws {@link ServiceFault} (server fault) *

Amazon Mechanical Turk is temporarily unable to process your request. Try your call again.

* * @throws {@link MTurkServiceException} *

Base exception class for all service exceptions from MTurk service.

* * * @public */ export declare class ListQualificationTypesCommand extends ListQualificationTypesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListQualificationTypesRequest; output: ListQualificationTypesResponse; }; sdk: { input: ListQualificationTypesCommandInput; output: ListQualificationTypesCommandOutput; }; }; }