import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VlanFilterConfig extends cdktf.TerraformMetaArguments { /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_filter#device VlanFilter#device} */ readonly device?: string; /** * VLANs to apply filter to * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_filter#vlan_lists VlanFilter#vlan_lists} */ readonly vlanLists: number[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_filter#word VlanFilter#word} */ readonly word: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_filter iosxe_vlan_filter} */ export declare class VlanFilter extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_vlan_filter"; /** * Generates CDKTF code for importing a VlanFilter 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 VlanFilter to import * @param importFromId The id of the existing VlanFilter that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_filter#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VlanFilter 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/ciscodevnet/iosxe/0.15.0/docs/resources/vlan_filter iosxe_vlan_filter} 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 VlanFilterConfig */ constructor(scope: Construct, id: string, config: VlanFilterConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _vlanLists?; get vlanLists(): number[]; set vlanLists(value: number[]); get vlanListsInput(): number[]; private _word?; get word(): string; set word(value: string); get wordInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }