import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CssTimeshiftTemplateConfig extends cdktf.TerraformMetaArguments { /** * The region.`Mainland`: The Chinese mainland.`Overseas`: Outside the Chinese mainland.Default value: `Mainland`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_timeshift_template#area CssTimeshiftTemplate#area} */ readonly area?: string; /** * The template description.Only letters, numbers, underscores, and hyphens are supported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_timeshift_template#description CssTimeshiftTemplate#description} */ readonly description?: string; /** * The time shifting duration.Unit: Second. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_timeshift_template#duration CssTimeshiftTemplate#duration} */ readonly duration: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_timeshift_template#id CssTimeshiftTemplate#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; /** * The segment size.Value range: 3-10.Unit: Second.Default value: 5. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_timeshift_template#item_duration CssTimeshiftTemplate#item_duration} */ readonly itemDuration?: number; /** * Whether to remove watermarks.If you pass in `true`, the original stream will be recorded.Default value: `false`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_timeshift_template#remove_watermark CssTimeshiftTemplate#remove_watermark} */ readonly removeWatermark?: boolean | cdktf.IResolvable; /** * The template name.Maximum length: 255 bytes.Only letters, numbers, underscores, and hyphens are supported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_timeshift_template#template_name CssTimeshiftTemplate#template_name} */ readonly templateName: string; /** * The transcoding template IDs.This API works only if `RemoveWatermark` is `false`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_timeshift_template#transcode_template_ids CssTimeshiftTemplate#transcode_template_ids} */ readonly transcodeTemplateIds?: number[]; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_timeshift_template tencentcloud_css_timeshift_template} */ export declare class CssTimeshiftTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_css_timeshift_template"; /** * Generates CDKTF code for importing a CssTimeshiftTemplate 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 CssTimeshiftTemplate to import * @param importFromId The id of the existing CssTimeshiftTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_timeshift_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CssTimeshiftTemplate 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_timeshift_template tencentcloud_css_timeshift_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 CssTimeshiftTemplateConfig */ constructor(scope: Construct, id: string, config: CssTimeshiftTemplateConfig); private _area?; get area(): string; set area(value: string); resetArea(): void; get areaInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _duration?; get duration(): number; set duration(value: number); get durationInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _itemDuration?; get itemDuration(): number; set itemDuration(value: number); resetItemDuration(): void; get itemDurationInput(): number; private _removeWatermark?; get removeWatermark(): boolean | cdktf.IResolvable; set removeWatermark(value: boolean | cdktf.IResolvable); resetRemoveWatermark(): void; get removeWatermarkInput(): any; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; private _transcodeTemplateIds?; get transcodeTemplateIds(): number[]; set transcodeTemplateIds(value: number[]); resetTranscodeTemplateIds(): void; get transcodeTemplateIdsInput(): number[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }