import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ClbTargetGroupInstanceAttachmentConfig extends cdktf.TerraformMetaArguments { /** * The Intranet IP of the target group instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_target_group_instance_attachment#bind_ip ClbTargetGroupInstanceAttachment#bind_ip} */ readonly bindIp: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_target_group_instance_attachment#id ClbTargetGroupInstanceAttachment#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; /** * Port of the target group instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_target_group_instance_attachment#port ClbTargetGroupInstanceAttachment#port} */ readonly port: number; /** * Target group ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_target_group_instance_attachment#target_group_id ClbTargetGroupInstanceAttachment#target_group_id} */ readonly targetGroupId: string; /** * The weight of the target group instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_target_group_instance_attachment#weight ClbTargetGroupInstanceAttachment#weight} */ readonly weight: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_target_group_instance_attachment tencentcloud_clb_target_group_instance_attachment} */ export declare class ClbTargetGroupInstanceAttachment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_clb_target_group_instance_attachment"; /** * Generates CDKTF code for importing a ClbTargetGroupInstanceAttachment 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 ClbTargetGroupInstanceAttachment to import * @param importFromId The id of the existing ClbTargetGroupInstanceAttachment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/clb_target_group_instance_attachment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ClbTargetGroupInstanceAttachment 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_target_group_instance_attachment tencentcloud_clb_target_group_instance_attachment} 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 ClbTargetGroupInstanceAttachmentConfig */ constructor(scope: Construct, id: string, config: ClbTargetGroupInstanceAttachmentConfig); private _bindIp?; get bindIp(): string; set bindIp(value: string); get bindIpInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _port?; get port(): number; set port(value: number); get portInput(): number; private _targetGroupId?; get targetGroupId(): string; set targetGroupId(value: string); get targetGroupIdInput(): string; private _weight?; get weight(): number; set weight(value: number); get weightInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }