import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CssCallbackTemplateConfig extends cdktf.TerraformMetaArguments { /** * Callback Key, public callback URL. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#callback_key CssCallbackTemplate#callback_key} */ readonly callbackKey?: string; /** * Description information.Maximum length: 1024 bytes.Only `Chinese`, `English`, `numbers`, `_`, `-` are supported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#description CssCallbackTemplate#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#id CssCallbackTemplate#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; /** * PornCensorship callback URL. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#porn_censorship_notify_url CssCallbackTemplate#porn_censorship_notify_url} */ readonly pornCensorshipNotifyUrl?: string; /** * Streaming Exception Callback URL. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#push_exception_notify_url CssCallbackTemplate#push_exception_notify_url} */ readonly pushExceptionNotifyUrl?: string; /** * Recording callback URL. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#record_notify_url CssCallbackTemplate#record_notify_url} */ readonly recordNotifyUrl?: string; /** * Snapshot callback URL. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#snapshot_notify_url CssCallbackTemplate#snapshot_notify_url} */ readonly snapshotNotifyUrl?: string; /** * Launch callback URL. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#stream_begin_notify_url CssCallbackTemplate#stream_begin_notify_url} */ readonly streamBeginNotifyUrl?: string; /** * Cutoff callback URL. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#stream_end_notify_url CssCallbackTemplate#stream_end_notify_url} */ readonly streamEndNotifyUrl?: string; /** * Template name.Maximum length: 255 bytes. Only `Chinese`, `English`, `numbers`, `_`, `-` are supported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#template_name CssCallbackTemplate#template_name} */ readonly templateName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template tencentcloud_css_callback_template} */ export declare class CssCallbackTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_css_callback_template"; /** * Generates CDKTF code for importing a CssCallbackTemplate 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 CssCallbackTemplate to import * @param importFromId The id of the existing CssCallbackTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_callback_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CssCallbackTemplate 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_callback_template tencentcloud_css_callback_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 CssCallbackTemplateConfig */ constructor(scope: Construct, id: string, config: CssCallbackTemplateConfig); private _callbackKey?; get callbackKey(): string; set callbackKey(value: string); resetCallbackKey(): void; get callbackKeyInput(): string; 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 _pornCensorshipNotifyUrl?; get pornCensorshipNotifyUrl(): string; set pornCensorshipNotifyUrl(value: string); resetPornCensorshipNotifyUrl(): void; get pornCensorshipNotifyUrlInput(): string; private _pushExceptionNotifyUrl?; get pushExceptionNotifyUrl(): string; set pushExceptionNotifyUrl(value: string); resetPushExceptionNotifyUrl(): void; get pushExceptionNotifyUrlInput(): string; private _recordNotifyUrl?; get recordNotifyUrl(): string; set recordNotifyUrl(value: string); resetRecordNotifyUrl(): void; get recordNotifyUrlInput(): string; private _snapshotNotifyUrl?; get snapshotNotifyUrl(): string; set snapshotNotifyUrl(value: string); resetSnapshotNotifyUrl(): void; get snapshotNotifyUrlInput(): string; private _streamBeginNotifyUrl?; get streamBeginNotifyUrl(): string; set streamBeginNotifyUrl(value: string); resetStreamBeginNotifyUrl(): void; get streamBeginNotifyUrlInput(): string; private _streamEndNotifyUrl?; get streamEndNotifyUrl(): string; set streamEndNotifyUrl(value: string); resetStreamEndNotifyUrl(): void; get streamEndNotifyUrlInput(): string; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }