import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeVlanAccessMapConfig 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/data-sources/vlan_access_map#device DataIosxeVlanAccessMap#device} */ readonly device?: string; /** * Vlan access map tag * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/vlan_access_map#name DataIosxeVlanAccessMap#name} */ readonly name: string; /** * Sequence to insert to/delete from existing vlan access-map entry * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/vlan_access_map#sequence DataIosxeVlanAccessMap#sequence} */ readonly sequence: number; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/vlan_access_map iosxe_vlan_access_map} */ export declare class DataIosxeVlanAccessMap extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_vlan_access_map"; /** * Generates CDKTF code for importing a DataIosxeVlanAccessMap 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 DataIosxeVlanAccessMap to import * @param importFromId The id of the existing DataIosxeVlanAccessMap that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/vlan_access_map#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeVlanAccessMap 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/data-sources/vlan_access_map iosxe_vlan_access_map} Data Source * * @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 DataIosxeVlanAccessMapConfig */ constructor(scope: Construct, id: string, config: DataIosxeVlanAccessMapConfig); get action(): any; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; get matchIpAddress(): any; get matchIpv6Address(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _sequence?; get sequence(): number; set sequence(value: number); get sequenceInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }