UNPKG

@csermet/multiprovider

Version:

cloud-graph provider plugin for AWS used to fetch AWS cloud data.

21 lines (20 loc) 507 B
import { Config } from 'aws-sdk/lib/config'; import WAFV2 from 'aws-sdk/clients/wafv2'; export interface RawAwsWafV2WebAcl extends WAFV2.WebACL { region: string; scope: string; loggingConfiguration: WAFV2.LoggingConfiguration; wafResources: { [resource: string]: string[]; }; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [region: string]: RawAwsWafV2WebAcl[]; }>; /** * WafV2WebAcl */ export default _default;