import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeFlowRecordConfig 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/flow_record#device DataIosxeFlowRecord#device} */ readonly device?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/flow_record#name DataIosxeFlowRecord#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/flow_record iosxe_flow_record} */ export declare class DataIosxeFlowRecord extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_flow_record"; /** * Generates CDKTF code for importing a DataIosxeFlowRecord 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 DataIosxeFlowRecord to import * @param importFromId The id of the existing DataIosxeFlowRecord that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/flow_record#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeFlowRecord 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/flow_record iosxe_flow_record} 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 DataIosxeFlowRecordConfig */ constructor(scope: Construct, id: string, config: DataIosxeFlowRecordConfig); get collectConnectionInitiator(): any; get collectConnectionNewConnections(): any; get collectConnectionServerCounterBytesNetworkLong(): any; get collectConnectionServerCounterPacketsLong(): any; get collectCounterBytesLong(): any; get collectCounterPacketsLong(): any; get collectDatalinkMacSourceAddressInput(): any; get collectFlowDirection(): any; get collectInterfaceInput(): any; get collectInterfaceOutput(): any; get collectTimestampAbsoluteFirst(): any; get collectTimestampAbsoluteLast(): any; get collectTransportTcpFlags(): any; get description(): any; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; get matchApplicationName(): any; get matchConnectionClientIpv4Address(): any; get matchConnectionClientIpv6Address(): any; get matchConnectionServerIpv4Address(): any; get matchConnectionServerIpv6Address(): any; get matchConnectionServerTransportPort(): any; get matchDatalinkDestinationVlanId(): any; get matchDatalinkMacDestinationAddressInput(): any; get matchDatalinkMacSourceAddressInput(): any; get matchDatalinkSourceVlanId(): any; get matchDatalinkVlan(): any; get matchFlowDirection(): any; get matchFlowObservationPoint(): any; get matchInterfaceInput(): any; get matchIpv4DestinationAddress(): any; get matchIpv4Protocol(): any; get matchIpv4SourceAddress(): any; get matchIpv4Tos(): any; get matchIpv4Ttl(): any; get matchIpv4Version(): any; get matchIpv6DestinationAddress(): any; get matchIpv6Protocol(): any; get matchIpv6SourceAddress(): any; get matchIpv6Version(): any; get matchRoutingVrfInput(): any; get matchTransportDestinationPort(): any; get matchTransportSourcePort(): any; get matchVxlanVnid(): any; get matchVxlanVtepInput(): any; get matchVxlanVtepOutput(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }