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 { CreateTaskTemplateRequest, CreateTaskTemplateResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreateTaskTemplateCommand}. */ export interface CreateTaskTemplateCommandInput extends CreateTaskTemplateRequest { } /** * @public * * The output of {@link CreateTaskTemplateCommand}. */ export interface CreateTaskTemplateCommandOutput extends CreateTaskTemplateResponse, __MetadataBearer { } declare const CreateTaskTemplateCommand_base: { new (input: CreateTaskTemplateCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: CreateTaskTemplateCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Creates a new 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, CreateTaskTemplateCommand } from "@aws-sdk/client-connect"; // ES Modules import * // const { ConnectClient, CreateTaskTemplateCommand } = 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 = { // CreateTaskTemplateRequest * InstanceId: "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", * }, * ], * }, * Status: "ACTIVE" || "INACTIVE", * Fields: [ // TaskTemplateFields // required * { // 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", * ], * }, * ], * ClientToken: "STRING_VALUE", * }; * const command = new CreateTaskTemplateCommand(input); * const response = await client.send(command); * // { // CreateTaskTemplateResponse * // Id: "STRING_VALUE", // required * // Arn: "STRING_VALUE", // required * // }; * * ``` * * @param CreateTaskTemplateCommandInput - {@link CreateTaskTemplateCommandInput} * @returns {@link CreateTaskTemplateCommandOutput} * @see {@link CreateTaskTemplateCommandInput} for command's `input` shape. * @see {@link CreateTaskTemplateCommandOutput} 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 PropertyValidationException} (client fault) *

The property is not valid.

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

The specified resource was not found.

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

The service quota has been exceeded.

* * @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 CreateTaskTemplateCommand extends CreateTaskTemplateCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateTaskTemplateRequest; output: CreateTaskTemplateResponse; }; sdk: { input: CreateTaskTemplateCommandInput; output: CreateTaskTemplateCommandOutput; }; }; }