import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VodEventConfigConfig extends cdktf.TerraformMetaArguments { /** * Whether to receive video deletion completion event notification, default `OFF` is to ignore the event notification, `ON` is to receive event notification. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vod_event_config#delete_media_complete_event_switch VodEventConfig#delete_media_complete_event_switch} */ readonly deleteMediaCompleteEventSwitch?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vod_event_config#id VodEventConfig#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; /** * How to receive event notifications. Valid values: * - Push: HTTP callback notification; * - PULL: Reliable notification based on message queuing. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vod_event_config#mode VodEventConfig#mode} */ readonly mode?: string; /** * The address used to receive 3.0 format callbacks when receiving HTTP callback notifications. Note: If you take the NotificationUrl parameter and the value is an empty string, the 3.0 format callback address is cleared. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vod_event_config#notification_url VodEventConfig#notification_url} */ readonly notificationUrl?: string; /** * Sub app id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vod_event_config#sub_app_id VodEventConfig#sub_app_id} */ readonly subAppId: number; /** * Whether to receive video upload completion event notification, default `OFF` means to ignore the event notification, `ON` means to receive event notification. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vod_event_config#upload_media_complete_event_switch VodEventConfig#upload_media_complete_event_switch} */ readonly uploadMediaCompleteEventSwitch?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vod_event_config tencentcloud_vod_event_config} */ export declare class VodEventConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_vod_event_config"; /** * Generates CDKTF code for importing a VodEventConfig 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 VodEventConfig to import * @param importFromId The id of the existing VodEventConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vod_event_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VodEventConfig 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/vod_event_config tencentcloud_vod_event_config} 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 VodEventConfigConfig */ constructor(scope: Construct, id: string, config: VodEventConfigConfig); private _deleteMediaCompleteEventSwitch?; get deleteMediaCompleteEventSwitch(): string; set deleteMediaCompleteEventSwitch(value: string); resetDeleteMediaCompleteEventSwitch(): void; get deleteMediaCompleteEventSwitchInput(): 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 _notificationUrl?; get notificationUrl(): string; set notificationUrl(value: string); resetNotificationUrl(): void; get notificationUrlInput(): string; private _subAppId?; get subAppId(): number; set subAppId(value: number); get subAppIdInput(): number; private _uploadMediaCompleteEventSwitch?; get uploadMediaCompleteEventSwitch(): string; set uploadMediaCompleteEventSwitch(value: string); resetUploadMediaCompleteEventSwitch(): void; get uploadMediaCompleteEventSwitchInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }