import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CiMediaTtsTemplateConfig extends cdktf.TerraformMetaArguments { /** * bucket name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template#bucket CiMediaTtsTemplate#bucket} */ readonly bucket: string; /** * Audio format, default wav (synchronous)/pcm (asynchronous, wav, mp3, pcm. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template#codec CiMediaTtsTemplate#codec} */ readonly codec?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template#id CiMediaTtsTemplate#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; /** * Processing mode, default value Asyc, Asyc (asynchronous composition), Sync (synchronous composition), When Asyc is selected, the codec only supports pcm. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template#mode CiMediaTtsTemplate#mode} */ readonly mode?: string; /** * The template name only supports `Chinese`, `English`, `numbers`, `_`, `-` and `*`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template#name CiMediaTtsTemplate#name} */ readonly name: string; /** * Speech rate, the default value is 100, [50,200]. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template#speed CiMediaTtsTemplate#speed} */ readonly speed?: string; /** * Timbre, the default value is ruxue. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template#voice_type CiMediaTtsTemplate#voice_type} */ readonly voiceType?: string; /** * Volume, default value 0, [-10,10]. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template#volume CiMediaTtsTemplate#volume} */ readonly volume?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template tencentcloud_ci_media_tts_template} */ export declare class CiMediaTtsTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ci_media_tts_template"; /** * Generates CDKTF code for importing a CiMediaTtsTemplate 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 CiMediaTtsTemplate to import * @param importFromId The id of the existing CiMediaTtsTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CiMediaTtsTemplate 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/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_tts_template tencentcloud_ci_media_tts_template} 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 CiMediaTtsTemplateConfig */ constructor(scope: Construct, id: string, config: CiMediaTtsTemplateConfig); private _bucket?; get bucket(): string; set bucket(value: string); get bucketInput(): string; private _codec?; get codec(): string; set codec(value: string); resetCodec(): void; get codecInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _mode?; get mode(): string; set mode(value: string); resetMode(): void; get modeInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _speed?; get speed(): string; set speed(value: string); resetSpeed(): void; get speedInput(): string; private _voiceType?; get voiceType(): string; set voiceType(value: string); resetVoiceType(): void; get voiceTypeInput(): string; private _volume?; get volume(): string; set volume(value: string); resetVolume(): void; get volumeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }