import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetQualificationTypeRequest, GetQualificationTypeResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetQualificationTypeCommand}. */ export interface GetQualificationTypeCommandInput extends GetQualificationTypeRequest { } /** * @public * * The output of {@link GetQualificationTypeCommand}. */ export interface GetQualificationTypeCommandOutput extends GetQualificationTypeResponse, __MetadataBearer { } declare const GetQualificationTypeCommand_base: { new (input: GetQualificationTypeCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetQualificationTypeCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

* The GetQualificationTypeoperation retrieves information about a Qualification type using its ID. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MTurkClient, GetQualificationTypeCommand } from "@aws-sdk/client-mturk"; // ES Modules import * // const { MTurkClient, GetQualificationTypeCommand } = 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 = { // GetQualificationTypeRequest * QualificationTypeId: "STRING_VALUE", // required * }; * const command = new GetQualificationTypeCommand(input); * const response = await client.send(command); * // { // GetQualificationTypeResponse * // QualificationType: { // 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 GetQualificationTypeCommandInput - {@link GetQualificationTypeCommandInput} * @returns {@link GetQualificationTypeCommandOutput} * @see {@link GetQualificationTypeCommandInput} for command's `input` shape. * @see {@link GetQualificationTypeCommandOutput} 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 GetQualificationTypeCommand extends GetQualificationTypeCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetQualificationTypeRequest; output: GetQualificationTypeResponse; }; sdk: { input: GetQualificationTypeCommandInput; output: GetQualificationTypeCommandOutput; }; }; }