Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StartExportTaskRequest

import type { StartExportTaskRequest } from "https://aws-api.deno.dev/v0.3/services/discovery.ts?docs=full";
interface StartExportTaskRequest {
endTime?: Date | number | null;
exportDataFormat?: ExportDataFormat[] | null;
filters?: ExportFilter[] | null;
startTime?: Date | number | null;
}

§Properties

§
endTime?: Date | number | null
[src]

The end timestamp for exported data from the single Application Discovery Agent selected in the filters. If no value is specified, exported data includes the most recent data collected by the agent.

§
exportDataFormat?: ExportDataFormat[] | null
[src]

The file format for the returned export data. Default value is CSV. Note: The GRAPHML option has been deprecated.

§
filters?: ExportFilter[] | null
[src]

If a filter is present, it selects the single agentId of the Application Discovery Agent for which data is exported. The agentId can be found in the results of the DescribeAgents API or CLI. If no filter is present, startTime and endTime are ignored and exported data includes both Agentless Discovery Connector data and summary data from Application Discovery agents.

§
startTime?: Date | number | null
[src]

The start timestamp for exported data from the single Application Discovery Agent selected in the filters. If no value is specified, data is exported starting from the first data collected by the agent.