import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface EniSgAttachmentConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_sg_attachment#id EniSgAttachment#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; /** * ENI instance ID. Such as:eni-pxir56ns. It Only support set one eni instance now. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_sg_attachment#network_interface_ids EniSgAttachment#network_interface_ids} */ readonly networkInterfaceIds: string[]; /** * Security group instance ID, for example:sg-33ocnj9n, can be obtained through DescribeSecurityGroups. There is a limit of 100 instances per request. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_sg_attachment#security_group_ids EniSgAttachment#security_group_ids} */ readonly securityGroupIds: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_sg_attachment tencentcloud_eni_sg_attachment} */ export declare class EniSgAttachment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_eni_sg_attachment"; /** * Generates CDKTF code for importing a EniSgAttachment 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 EniSgAttachment to import * @param importFromId The id of the existing EniSgAttachment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_sg_attachment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the EniSgAttachment 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/eni_sg_attachment tencentcloud_eni_sg_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 EniSgAttachmentConfig */ constructor(scope: Construct, id: string, config: EniSgAttachmentConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _networkInterfaceIds?; get networkInterfaceIds(): string[]; set networkInterfaceIds(value: string[]); get networkInterfaceIdsInput(): string[]; private _securityGroupIds?; get securityGroupIds(): string[]; set securityGroupIds(value: string[]); get securityGroupIdsInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }