import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ArchitectUserPromptConfig extends cdktf.TerraformMetaArguments { /** * Description of the user audio prompt. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt#description ArchitectUserPrompt#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt#id ArchitectUserPrompt#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * Name of the user audio prompt. Note: If the name of the user prompt is changed, this will cause the Prompt to be dropped and recreated with a new ID. This will generate a new ID for the prompt and will invalidate any Architect flows referencing it. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt#name ArchitectUserPrompt#name} */ readonly name: string; /** * Audio of TTS resources for the audio prompt. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt#resources ArchitectUserPrompt#resources} */ readonly resources?: ArchitectUserPromptResources[] | cdktf.IResolvable; } export interface ArchitectUserPromptResources { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt#file_content_hash ArchitectUserPrompt#file_content_hash} */ readonly fileContentHash?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt#filename ArchitectUserPrompt#filename} */ readonly filename?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt#language ArchitectUserPrompt#language} */ readonly language?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt#text ArchitectUserPrompt#text} */ readonly text?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt#tts_string ArchitectUserPrompt#tts_string} */ readonly ttsString?: string; } export declare function architectUserPromptResourcesToTerraform(struct?: ArchitectUserPromptResources | cdktf.IResolvable): any; export declare function architectUserPromptResourcesToHclTerraform(struct?: ArchitectUserPromptResources | cdktf.IResolvable): any; export declare class ArchitectUserPromptResourcesOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): ArchitectUserPromptResources | cdktf.IResolvable | undefined; set internalValue(value: ArchitectUserPromptResources | cdktf.IResolvable | undefined); private _fileContentHash?; get fileContentHash(): string; set fileContentHash(value: string); resetFileContentHash(): void; get fileContentHashInput(): string; private _filename?; get filename(): string; set filename(value: string); resetFilename(): void; get filenameInput(): string; private _language?; get language(): string; set language(value: string); resetLanguage(): void; get languageInput(): string; private _text?; get text(): string; set text(value: string); resetText(): void; get textInput(): string; private _ttsString?; get ttsString(): string; set ttsString(value: string); resetTtsString(): void; get ttsStringInput(): string; } export declare class ArchitectUserPromptResourcesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ArchitectUserPromptResources[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): ArchitectUserPromptResourcesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt genesyscloud_architect_user_prompt} */ export declare class ArchitectUserPrompt extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_architect_user_prompt"; /** * Generates CDKTF code for importing a ArchitectUserPrompt resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the ArchitectUserPrompt to import * @param importFromId The id of the existing ArchitectUserPrompt that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ArchitectUserPrompt to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_user_prompt genesyscloud_architect_user_prompt} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options ArchitectUserPromptConfig */ constructor(scope: Construct, id: string, config: ArchitectUserPromptConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _resources; get resources(): ArchitectUserPromptResourcesList; putResources(value: ArchitectUserPromptResources[] | cdktf.IResolvable): void; resetResources(): void; get resourcesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }