@cloud-copilot/iam-collect
Version:
Collect IAM information from AWS Accounts
14 lines • 804 B
TypeScript
import { type TopLevelConfig } from '../config/config.js';
/**
* Download data from AWS services.
*
* @param configs the configurations to use for the download
* @param accountIds the account IDs to download data for
* @param regions the regions to download data from
* @param services the services to download data from
* @param concurrency the maximum number of concurrent downloads
* @param skipIndex whether to skip indexing the downloaded data
* @param writeOnly only write the data returned from AWS, do not delete any existing data
*/
export declare function downloadData(configs: TopLevelConfig[], accountIds: string[], regions: string[], services: string[], concurrency: number | undefined, skipIndex: boolean, writeOnly: boolean): Promise<void>;
//# sourceMappingURL=download.d.ts.map