import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface PrivateDnsForwardRuleConfig extends cdktf.TerraformMetaArguments { /** * Endpoint ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_forward_rule#end_point_id PrivateDnsForwardRule#end_point_id} */ readonly endPointId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_forward_rule#id PrivateDnsForwardRule#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; /** * Forwarding rule name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_forward_rule#rule_name PrivateDnsForwardRule#rule_name} */ readonly ruleName: string; /** * Forwarding rule type. DOWN: From cloud to off-cloud; UP: From off-cloud to cloud. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_forward_rule#rule_type PrivateDnsForwardRule#rule_type} */ readonly ruleType: string; /** * Private domain ID, which can be viewed on the private domain list page. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_forward_rule#zone_id PrivateDnsForwardRule#zone_id} */ readonly zoneId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_forward_rule tencentcloud_private_dns_forward_rule} */ export declare class PrivateDnsForwardRule extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_private_dns_forward_rule"; /** * Generates CDKTF code for importing a PrivateDnsForwardRule 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 PrivateDnsForwardRule to import * @param importFromId The id of the existing PrivateDnsForwardRule that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/private_dns_forward_rule#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the PrivateDnsForwardRule 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/private_dns_forward_rule tencentcloud_private_dns_forward_rule} 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 PrivateDnsForwardRuleConfig */ constructor(scope: Construct, id: string, config: PrivateDnsForwardRuleConfig); private _endPointId?; get endPointId(): string; set endPointId(value: string); get endPointIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _ruleName?; get ruleName(): string; set ruleName(value: string); get ruleNameInput(): string; private _ruleType?; get ruleType(): string; set ruleType(value: string); get ruleTypeInput(): string; private _zoneId?; get zoneId(): string; set zoneId(value: string); get zoneIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }