import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CssPadTemplateConfig extends cdktf.TerraformMetaArguments { /** * Description content.limit length 1024 bytes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_pad_template#description CssPadTemplate#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_pad_template#id CssPadTemplate#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; /** * Max pad duration.limit: 0 - 9999999 ms. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_pad_template#max_duration CssPadTemplate#max_duration} */ readonly maxDuration?: number; /** * Template namelimit 255 bytes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_pad_template#template_name CssPadTemplate#template_name} */ readonly templateName: string; /** * Pad content type.1: picture.2: video.default: 1. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_pad_template#type CssPadTemplate#type} */ readonly type?: number; /** * Pad content. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_pad_template#url CssPadTemplate#url} */ readonly url: string; /** * Stop stream wait time.limit: 0 - 30000 ms. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_pad_template#wait_duration CssPadTemplate#wait_duration} */ readonly waitDuration?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_pad_template tencentcloud_css_pad_template} */ export declare class CssPadTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_css_pad_template"; /** * Generates CDKTF code for importing a CssPadTemplate 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 CssPadTemplate to import * @param importFromId The id of the existing CssPadTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_pad_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CssPadTemplate 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/css_pad_template tencentcloud_css_pad_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 CssPadTemplateConfig */ constructor(scope: Construct, id: string, config: CssPadTemplateConfig); 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 _maxDuration?; get maxDuration(): number; set maxDuration(value: number); resetMaxDuration(): void; get maxDurationInput(): number; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; private _type?; get type(): number; set type(value: number); resetType(): void; get typeInput(): number; private _url?; get url(): string; set url(value: string); get urlInput(): string; private _waitDuration?; get waitDuration(): number; set waitDuration(value: number); resetWaitDuration(): void; get waitDurationInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }