import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ClbLogTopicConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_log_topic#id ClbLogTopic#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; /** * Log topic of CLB instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_log_topic#log_set_id ClbLogTopic#log_set_id} */ readonly logSetId: string; /** * The status of log topic. true: enable; false: disable. Default is true. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_log_topic#status ClbLogTopic#status} */ readonly status?: boolean | cdktf.IResolvable; /** * Log topic of CLB instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_log_topic#topic_name ClbLogTopic#topic_name} */ readonly topicName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_log_topic tencentcloud_clb_log_topic} */ export declare class ClbLogTopic extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_clb_log_topic"; /** * Generates CDKTF code for importing a ClbLogTopic 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 ClbLogTopic to import * @param importFromId The id of the existing ClbLogTopic that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_log_topic#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ClbLogTopic 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/clb_log_topic tencentcloud_clb_log_topic} 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 ClbLogTopicConfig */ constructor(scope: Construct, id: string, config: ClbLogTopicConfig); get createTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _logSetId?; get logSetId(): string; set logSetId(value: string); get logSetIdInput(): string; private _status?; get status(): boolean | cdktf.IResolvable; set status(value: boolean | cdktf.IResolvable); resetStatus(): void; get statusInput(): any; private _topicName?; get topicName(): string; set topicName(value: string); get topicNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }