UNPKG

@csermet/multiprovider

Version:

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

18 lines (17 loc) 417 B
import { Config } from 'aws-sdk/lib/config'; import { Address } from 'aws-sdk/clients/ec2'; import { TagMap } from '../../types'; /** * EIP */ export interface RawAwsEip extends Omit<Address, 'Tags'> { region: string; Tags?: TagMap; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [property: string]: RawAwsEip[]; }>; export default _default;