import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WafLogPostClsFlowConfig extends cdktf.TerraformMetaArguments { /** * The region where the CLS is delivered. The default value is ap-shanghai. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_log_post_cls_flow#cls_region WafLogPostClsFlow#cls_region} */ readonly clsRegion?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_log_post_cls_flow#id WafLogPostClsFlow#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 name of the log subject where the submitted CLS is located. The default value is waf_post_logtopic. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_log_post_cls_flow#log_topic_name WafLogPostClsFlow#log_topic_name} */ readonly logTopicName?: string; /** * 1- Access log, 2- Attack log, the default is access log. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_log_post_cls_flow#log_type WafLogPostClsFlow#log_type} */ readonly logType?: number; /** * The name of the log set where the delivered CLS is located. The default value is waf_post_logset. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_log_post_cls_flow#logset_name WafLogPostClsFlow#logset_name} */ readonly logsetName?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_log_post_cls_flow tencentcloud_waf_log_post_cls_flow} */ export declare class WafLogPostClsFlow extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_waf_log_post_cls_flow"; /** * Generates CDKTF code for importing a WafLogPostClsFlow 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 WafLogPostClsFlow to import * @param importFromId The id of the existing WafLogPostClsFlow that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/waf_log_post_cls_flow#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WafLogPostClsFlow 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/waf_log_post_cls_flow tencentcloud_waf_log_post_cls_flow} 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 WafLogPostClsFlowConfig = {} */ constructor(scope: Construct, id: string, config?: WafLogPostClsFlowConfig); private _clsRegion?; get clsRegion(): string; set clsRegion(value: string); resetClsRegion(): void; get clsRegionInput(): string; get flowId(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get logTopicId(): any; private _logTopicName?; get logTopicName(): string; set logTopicName(value: string); resetLogTopicName(): void; get logTopicNameInput(): string; private _logType?; get logType(): number; set logType(value: number); resetLogType(): void; get logTypeInput(): number; get logsetId(): any; private _logsetName?; get logsetName(): string; set logsetName(value: string); resetLogsetName(): void; get logsetNameInput(): string; get status(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }