import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::Connect::TaskTemplate. */ export declare class TaskTemplate extends pulumi.CustomResource { /** * Get an existing TaskTemplate resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): TaskTemplate; /** * Returns true if the given object is an instance of TaskTemplate. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is TaskTemplate; /** * The identifier (arn) of the task template. */ readonly arn: pulumi.Output; /** * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. */ readonly clientToken: pulumi.Output; /** * The constraints for the task template */ readonly constraints: pulumi.Output; /** * The identifier of the contact flow. */ readonly contactFlowArn: pulumi.Output; /** * The default values for fields when a task is created by referencing this template. */ readonly defaults: pulumi.Output; /** * The description of the task template. */ readonly description: pulumi.Output; /** * The list of task template's fields */ readonly fields: pulumi.Output; /** * The identifier (arn) of the instance. */ readonly instanceArn: pulumi.Output; /** * The name of the task template. */ readonly name: pulumi.Output; /** * The identifier of the contact flow. */ readonly selfAssignContactFlowArn: pulumi.Output; /** * The status of the task template. */ readonly status: pulumi.Output; /** * One or more tags. */ readonly tags: pulumi.Output; /** * Create a TaskTemplate resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: TaskTemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a TaskTemplate resource. */ export interface TaskTemplateArgs { /** * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. */ clientToken?: pulumi.Input; /** * The constraints for the task template */ constraints?: pulumi.Input; /** * The identifier of the contact flow. */ contactFlowArn?: pulumi.Input; /** * The default values for fields when a task is created by referencing this template. */ defaults?: pulumi.Input[]>; /** * The description of the task template. */ description?: pulumi.Input; /** * The list of task template's fields */ fields?: pulumi.Input[]>; /** * The identifier (arn) of the instance. */ instanceArn: pulumi.Input; /** * The name of the task template. */ name?: pulumi.Input; /** * The identifier of the contact flow. */ selfAssignContactFlowArn?: pulumi.Input; /** * The status of the task template. */ status?: pulumi.Input; /** * One or more tags. */ tags?: pulumi.Input[]>; }