import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VpcEndPointServiceConfig extends cdktf.TerraformMetaArguments { /** * Whether to automatically accept. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_end_point_service#auto_accept_flag VpcEndPointService#auto_accept_flag} */ readonly autoAcceptFlag: boolean | cdktf.IResolvable; /** * Name of end point service. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_end_point_service#end_point_service_name VpcEndPointService#end_point_service_name} */ readonly endPointServiceName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_end_point_service#id VpcEndPointService#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; /** * Id of service instance, like lb-xxx. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_end_point_service#service_instance_id VpcEndPointService#service_instance_id} */ readonly serviceInstanceId: string; /** * Type of service instance, like `CLB`, `CDB`, `CRS`, `GWLB`. default is `CLB`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_end_point_service#service_type VpcEndPointService#service_type} */ readonly serviceType?: string; /** * ID of vpc instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_end_point_service#vpc_id VpcEndPointService#vpc_id} */ readonly vpcId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_end_point_service tencentcloud_vpc_end_point_service} */ export declare class VpcEndPointService extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_vpc_end_point_service"; /** * Generates CDKTF code for importing a VpcEndPointService 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 VpcEndPointService to import * @param importFromId The id of the existing VpcEndPointService that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_end_point_service#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VpcEndPointService 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_end_point_service tencentcloud_vpc_end_point_service} 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 VpcEndPointServiceConfig */ constructor(scope: Construct, id: string, config: VpcEndPointServiceConfig); private _autoAcceptFlag?; get autoAcceptFlag(): boolean | cdktf.IResolvable; set autoAcceptFlag(value: boolean | cdktf.IResolvable); get autoAcceptFlagInput(): any; get cdcId(): any; get createTime(): any; get endPointCount(): any; private _endPointServiceName?; get endPointServiceName(): string; set endPointServiceName(value: string); get endPointServiceNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _serviceInstanceId?; get serviceInstanceId(): string; set serviceInstanceId(value: string); get serviceInstanceIdInput(): string; get serviceOwner(): any; private _serviceType?; get serviceType(): string; set serviceType(value: string); resetServiceType(): void; get serviceTypeInput(): string; get serviceVip(): any; private _vpcId?; get vpcId(): string; set vpcId(value: string); get vpcIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }