import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AiStudioSummarySettingConfig extends cdktf.TerraformMetaArguments { /** * Format of the generated summary. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#format AiStudioSummarySetting#format} */ readonly format?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#id AiStudioSummarySetting#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; /** * Language of the generated summary, e.g. en-US, it-IT. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#language AiStudioSummarySetting#language} */ readonly language: string; /** * Name of the summary setting. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#name AiStudioSummarySetting#name} */ readonly name: string; /** * Set which insights to include in the generated summary by default. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#predefined_insights AiStudioSummarySetting#predefined_insights} */ readonly predefinedInsights?: string[]; /** * Custom prompt of summary setting. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#prompt AiStudioSummarySetting#prompt} */ readonly prompt?: string; /** * Type of the summary setting. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#setting_type AiStudioSummarySetting#setting_type} */ readonly settingType?: string; /** * Level of detail of the generated summary. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#summary_type AiStudioSummarySetting#summary_type} */ readonly summaryType?: string; /** * custom_entities block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#custom_entities AiStudioSummarySetting#custom_entities} */ readonly customEntities?: AiStudioSummarySettingCustomEntities[] | cdktf.IResolvable; /** * mask_p_i_i block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#mask_p_i_i AiStudioSummarySetting#mask_p_i_i} */ readonly maskPII?: AiStudioSummarySettingMaskPII; /** * participant_labels block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#participant_labels AiStudioSummarySetting#participant_labels} */ readonly participantLabels?: AiStudioSummarySettingParticipantLabels; } export interface AiStudioSummarySettingCustomEntities { /** * Describe the information the entity captures. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#description AiStudioSummarySetting#description} */ readonly description?: string; /** * Label how the entity should be called. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#label AiStudioSummarySetting#label} */ readonly label?: string; } export declare function aiStudioSummarySettingCustomEntitiesToTerraform(struct?: AiStudioSummarySettingCustomEntities | cdktf.IResolvable): any; export declare function aiStudioSummarySettingCustomEntitiesToHclTerraform(struct?: AiStudioSummarySettingCustomEntities | cdktf.IResolvable): any; export declare class AiStudioSummarySettingCustomEntitiesOutputReference 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(): AiStudioSummarySettingCustomEntities | cdktf.IResolvable | undefined; set internalValue(value: AiStudioSummarySettingCustomEntities | cdktf.IResolvable | undefined); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _label?; get label(): string; set label(value: string); resetLabel(): void; get labelInput(): string; } export declare class AiStudioSummarySettingCustomEntitiesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: AiStudioSummarySettingCustomEntities[] | 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): AiStudioSummarySettingCustomEntitiesOutputReference; } export interface AiStudioSummarySettingMaskPII { /** * Toggle PII visibility in summary. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#all AiStudioSummarySetting#all} */ readonly all: boolean | cdktf.IResolvable; } export declare function aiStudioSummarySettingMaskPIIToTerraform(struct?: AiStudioSummarySettingMaskPIIOutputReference | AiStudioSummarySettingMaskPII): any; export declare function aiStudioSummarySettingMaskPIIToHclTerraform(struct?: AiStudioSummarySettingMaskPIIOutputReference | AiStudioSummarySettingMaskPII): any; export declare class AiStudioSummarySettingMaskPIIOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): AiStudioSummarySettingMaskPII | undefined; set internalValue(value: AiStudioSummarySettingMaskPII | undefined); private _all?; get all(): boolean | cdktf.IResolvable; set all(value: boolean | cdktf.IResolvable); get allInput(): any; } export interface AiStudioSummarySettingParticipantLabels { /** * Specify how to refer the external participant of the interaction. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#external AiStudioSummarySetting#external} */ readonly external?: string; /** * Specify how to refer the internal participant of the interaction. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#internal AiStudioSummarySetting#internal} */ readonly internal?: string; } export declare function aiStudioSummarySettingParticipantLabelsToTerraform(struct?: AiStudioSummarySettingParticipantLabelsOutputReference | AiStudioSummarySettingParticipantLabels): any; export declare function aiStudioSummarySettingParticipantLabelsToHclTerraform(struct?: AiStudioSummarySettingParticipantLabelsOutputReference | AiStudioSummarySettingParticipantLabels): any; export declare class AiStudioSummarySettingParticipantLabelsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): AiStudioSummarySettingParticipantLabels | undefined; set internalValue(value: AiStudioSummarySettingParticipantLabels | undefined); private _external?; get external(): string; set external(value: string); resetExternal(): void; get externalInput(): string; private _internal?; get internal(): string; set internal(value: string); resetInternal(): void; get internalInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting genesyscloud_ai_studio_summary_setting} */ export declare class AiStudioSummarySetting extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_ai_studio_summary_setting"; /** * Generates CDKTF code for importing a AiStudioSummarySetting 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 AiStudioSummarySetting to import * @param importFromId The id of the existing AiStudioSummarySetting that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/ai_studio_summary_setting#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AiStudioSummarySetting 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/ai_studio_summary_setting genesyscloud_ai_studio_summary_setting} 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 AiStudioSummarySettingConfig */ constructor(scope: Construct, id: string, config: AiStudioSummarySettingConfig); private _format?; get format(): string; set format(value: string); resetFormat(): void; get formatInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _language?; get language(): string; set language(value: string); get languageInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _predefinedInsights?; get predefinedInsights(): string[]; set predefinedInsights(value: string[]); resetPredefinedInsights(): void; get predefinedInsightsInput(): string[]; private _prompt?; get prompt(): string; set prompt(value: string); resetPrompt(): void; get promptInput(): string; private _settingType?; get settingType(): string; set settingType(value: string); resetSettingType(): void; get settingTypeInput(): string; private _summaryType?; get summaryType(): string; set summaryType(value: string); resetSummaryType(): void; get summaryTypeInput(): string; private _customEntities; get customEntities(): AiStudioSummarySettingCustomEntitiesList; putCustomEntities(value: AiStudioSummarySettingCustomEntities[] | cdktf.IResolvable): void; resetCustomEntities(): void; get customEntitiesInput(): any; private _maskPII; get maskPII(): AiStudioSummarySettingMaskPIIOutputReference; putMaskPII(value: AiStudioSummarySettingMaskPII): void; resetMaskPII(): void; get maskPIIInput(): AiStudioSummarySettingMaskPII; private _participantLabels; get participantLabels(): AiStudioSummarySettingParticipantLabelsOutputReference; putParticipantLabels(value: AiStudioSummarySettingParticipantLabels): void; resetParticipantLabels(): void; get participantLabelsInput(): AiStudioSummarySettingParticipantLabels; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }