UNPKG

cloud-report

Version:

Collects and analyzes cloud resources

9 lines (8 loc) 345 B
import * as AWS from "aws-sdk"; import { BaseCollector } from "../../base"; export declare class DnsQueryLogsConfigCollector extends BaseCollector { collect(callback: (err?: Error, data?: any) => void): Promise<{ query_logs_config: AWS.Route53.QueryLoggingConfig[]; } | undefined>; private listAllQueryLogsConfigs; }