import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VpcBandwidthPackageAttachmentConfig extends cdktf.TerraformMetaArguments { /** * Bandwidth package unique ID, in the form of `bwp-xxxx`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package_attachment#bandwidth_package_id VpcBandwidthPackageAttachment#bandwidth_package_id} */ readonly bandwidthPackageId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package_attachment#id VpcBandwidthPackageAttachment#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; /** * Bandwidth packet type, currently supports `BGP` type, indicating that the internal resource is BGP IP. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package_attachment#network_type VpcBandwidthPackageAttachment#network_type} */ readonly networkType?: string; /** * Bandwidth packet protocol type. Currently `ipv4` and `ipv6` protocol types are supported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package_attachment#protocol VpcBandwidthPackageAttachment#protocol} */ readonly protocol?: string; /** * The unique ID of the resource, currently supports EIP resources and LB resources, such as `eip-xxxx`, `lb-xxxx`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package_attachment#resource_id VpcBandwidthPackageAttachment#resource_id} */ readonly resourceId: string; /** * Resource types, including `Address`, `LoadBalance`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package_attachment#resource_type VpcBandwidthPackageAttachment#resource_type} */ readonly resourceType?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package_attachment tencentcloud_vpc_bandwidth_package_attachment} */ export declare class VpcBandwidthPackageAttachment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_vpc_bandwidth_package_attachment"; /** * Generates CDKTF code for importing a VpcBandwidthPackageAttachment 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 VpcBandwidthPackageAttachment to import * @param importFromId The id of the existing VpcBandwidthPackageAttachment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package_attachment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VpcBandwidthPackageAttachment 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_bandwidth_package_attachment tencentcloud_vpc_bandwidth_package_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 VpcBandwidthPackageAttachmentConfig */ constructor(scope: Construct, id: string, config: VpcBandwidthPackageAttachmentConfig); private _bandwidthPackageId?; get bandwidthPackageId(): string; set bandwidthPackageId(value: string); get bandwidthPackageIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _networkType?; get networkType(): string; set networkType(value: string); resetNetworkType(): void; get networkTypeInput(): string; private _protocol?; get protocol(): string; set protocol(value: string); resetProtocol(): void; get protocolInput(): string; private _resourceId?; get resourceId(): string; set resourceId(value: string); get resourceIdInput(): string; private _resourceType?; get resourceType(): string; set resourceType(value: string); resetResourceType(): void; get resourceTypeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }