import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import type { GetTaskTemplateRequest, GetTaskTemplateResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetTaskTemplateCommand}. */ export interface GetTaskTemplateCommandInput extends GetTaskTemplateRequest { } /** * @public * * The output of {@link GetTaskTemplateCommand}. */ export interface GetTaskTemplateCommandOutput extends GetTaskTemplateResponse, __MetadataBearer { } declare const GetTaskTemplateCommand_base: { new (input: GetTaskTemplateCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetTaskTemplateCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Gets details about a specific task template in the specified Amazon Connect instance.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConnectClient, GetTaskTemplateCommand } from "@aws-sdk/client-connect"; // ES Modules import * // const { ConnectClient, GetTaskTemplateCommand } = require("@aws-sdk/client-connect"); // CommonJS import * // import type { ConnectClientConfig } from "@aws-sdk/client-connect"; * const config = {}; // type is ConnectClientConfig * const client = new ConnectClient(config); * const input = { // GetTaskTemplateRequest * InstanceId: "STRING_VALUE", // required * TaskTemplateId: "STRING_VALUE", // required * SnapshotVersion: "STRING_VALUE", * }; * const command = new GetTaskTemplateCommand(input); * const response = await client.send(command); * // { // GetTaskTemplateResponse * // InstanceId: "STRING_VALUE", * // Id: "STRING_VALUE", // required * // Arn: "STRING_VALUE", // required * // Name: "STRING_VALUE", // required * // Description: "STRING_VALUE", * // ContactFlowId: "STRING_VALUE", * // SelfAssignFlowId: "STRING_VALUE", * // Constraints: { // TaskTemplateConstraints * // RequiredFields: [ // RequiredTaskTemplateFields * // { // RequiredFieldInfo * // Id: { // TaskTemplateFieldIdentifier * // Name: "STRING_VALUE", * // }, * // }, * // ], * // ReadOnlyFields: [ // ReadOnlyTaskTemplateFields * // { // ReadOnlyFieldInfo * // Id: { * // Name: "STRING_VALUE", * // }, * // }, * // ], * // InvisibleFields: [ // InvisibleTaskTemplateFields * // { // InvisibleFieldInfo * // Id: { * // Name: "STRING_VALUE", * // }, * // }, * // ], * // }, * // Defaults: { // TaskTemplateDefaults * // DefaultFieldValues: [ // TaskTemplateDefaultFieldValueList * // { // TaskTemplateDefaultFieldValue * // Id: { * // Name: "STRING_VALUE", * // }, * // DefaultValue: "STRING_VALUE", * // }, * // ], * // }, * // Fields: [ // TaskTemplateFields * // { // TaskTemplateField * // Id: { * // Name: "STRING_VALUE", * // }, * // Description: "STRING_VALUE", * // Type: "NAME" || "DESCRIPTION" || "SCHEDULED_TIME" || "QUICK_CONNECT" || "URL" || "NUMBER" || "TEXT" || "TEXT_AREA" || "DATE_TIME" || "BOOLEAN" || "SINGLE_SELECT" || "EMAIL" || "SELF_ASSIGN" || "EXPIRY_DURATION", * // SingleSelectOptions: [ // SingleSelectOptions * // "STRING_VALUE", * // ], * // }, * // ], * // Status: "ACTIVE" || "INACTIVE", * // LastModifiedTime: new Date("TIMESTAMP"), * // CreatedTime: new Date("TIMESTAMP"), * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param GetTaskTemplateCommandInput - {@link GetTaskTemplateCommandInput} * @returns {@link GetTaskTemplateCommandOutput} * @see {@link GetTaskTemplateCommandInput} for command's `input` shape. * @see {@link GetTaskTemplateCommandOutput} for command's `response` shape. * @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape. * * @throws {@link InternalServiceException} (server fault) *

Request processing failed because of an error or failure with the service.

* * @throws {@link InvalidParameterException} (client fault) *

One or more of the specified parameters are not valid.

* * @throws {@link InvalidRequestException} (client fault) *

The request is not valid.

* * @throws {@link ResourceNotFoundException} (client fault) *

The specified resource was not found.

* * @throws {@link ThrottlingException} (client fault) *

The throttling limit has been exceeded.

* * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* * * @public */ export declare class GetTaskTemplateCommand extends GetTaskTemplateCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetTaskTemplateRequest; output: GetTaskTemplateResponse; }; sdk: { input: GetTaskTemplateCommandInput; output: GetTaskTemplateCommandOutput; }; }; }