import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VpcPrivateNatGatewayConfig extends cdktf.TerraformMetaArguments { /** * Cloud Connect Network type The Cloud Connect Network instance ID required to be bound to the private network NAT gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_private_nat_gateway#ccn_id VpcPrivateNatGateway#ccn_id} */ readonly ccnId?: string; /** * Cross-domain parameters. Cross-domain binding of VPCs is supported only when the value is True. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_private_nat_gateway#cross_domain VpcPrivateNatGateway#cross_domain} */ readonly crossDomain?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_private_nat_gateway#id VpcPrivateNatGateway#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; /** * Private network gateway name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_private_nat_gateway#nat_gateway_name VpcPrivateNatGateway#nat_gateway_name} */ readonly natGatewayName: string; /** * Private Cloud instance ID. This parameter is required when creating a VPC type private network NAT gateway or a private network NAT gateway of private network gateway. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_private_nat_gateway#vpc_id VpcPrivateNatGateway#vpc_id} */ readonly vpcId?: string; /** * VPC type private network NAT gateway. Only when the value is True will a VPC type private network NAT gateway be created. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_private_nat_gateway#vpc_type VpcPrivateNatGateway#vpc_type} */ readonly vpcType?: boolean | cdktf.IResolvable; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_private_nat_gateway tencentcloud_vpc_private_nat_gateway} */ export declare class VpcPrivateNatGateway extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_vpc_private_nat_gateway"; /** * Generates CDKTF code for importing a VpcPrivateNatGateway 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 VpcPrivateNatGateway to import * @param importFromId The id of the existing VpcPrivateNatGateway that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_private_nat_gateway#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VpcPrivateNatGateway 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/vpc_private_nat_gateway tencentcloud_vpc_private_nat_gateway} 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 VpcPrivateNatGatewayConfig */ constructor(scope: Construct, id: string, config: VpcPrivateNatGatewayConfig); private _ccnId?; get ccnId(): string; set ccnId(value: string); resetCcnId(): void; get ccnIdInput(): string; private _crossDomain?; get crossDomain(): boolean | cdktf.IResolvable; set crossDomain(value: boolean | cdktf.IResolvable); resetCrossDomain(): void; get crossDomainInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _natGatewayName?; get natGatewayName(): string; set natGatewayName(value: string); get natGatewayNameInput(): string; private _vpcId?; get vpcId(): string; set vpcId(value: string); resetVpcId(): void; get vpcIdInput(): string; private _vpcType?; get vpcType(): boolean | cdktf.IResolvable; set vpcType(value: boolean | cdktf.IResolvable); resetVpcType(): void; get vpcTypeInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }