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 { UpdateTaskTemplateRequest, UpdateTaskTemplateResponse } from "../models/models_3"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateTaskTemplateCommand}. */ export interface UpdateTaskTemplateCommandInput extends UpdateTaskTemplateRequest { } /** * @public * * The output of {@link UpdateTaskTemplateCommand}. */ export interface UpdateTaskTemplateCommandOutput extends UpdateTaskTemplateResponse, __MetadataBearer { } declare const UpdateTaskTemplateCommand_base: { new (input: UpdateTaskTemplateCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdateTaskTemplateCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Updates details about a specific task template in the specified Amazon Connect instance. This operation does * not support partial updates. Instead it does a full update of template content.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConnectClient, UpdateTaskTemplateCommand } from "@aws-sdk/client-connect"; // ES Modules import * // const { ConnectClient, UpdateTaskTemplateCommand } = 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 = { // UpdateTaskTemplateRequest * TaskTemplateId: "STRING_VALUE", // required * InstanceId: "STRING_VALUE", // required * Name: "STRING_VALUE", * 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 * { // 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", * ], * }, * ], * }; * const command = new UpdateTaskTemplateCommand(input); * const response = await client.send(command); * // { // UpdateTaskTemplateResponse * // InstanceId: "STRING_VALUE", * // Id: "STRING_VALUE", * // Arn: "STRING_VALUE", * // Name: "STRING_VALUE", * // 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"), * // }; * * ``` * * @param UpdateTaskTemplateCommandInput - {@link UpdateTaskTemplateCommandInput} * @returns {@link UpdateTaskTemplateCommandOutput} * @see {@link UpdateTaskTemplateCommandInput} for command's `input` shape. * @see {@link UpdateTaskTemplateCommandOutput} 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 UpdateTaskTemplateCommand extends UpdateTaskTemplateCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateTaskTemplateRequest; output: UpdateTaskTemplateResponse; }; sdk: { input: UpdateTaskTemplateCommandInput; output: UpdateTaskTemplateCommandOutput; }; }; }