@csermet/multiprovider
Version:
cloud-graph provider plugin for AWS used to fetch AWS cloud data.
23 lines (22 loc) • 554 B
TypeScript
import { Topic, Subscription } from 'aws-sdk/clients/sns';
import { Config } from 'aws-sdk/lib/config';
import { TagMap } from '../../types';
/**
* SNS
*/
export interface RawAwsSns extends Topic {
Policy?: string;
DeliveryPolicy?: string;
DisplayName?: string;
KmsMasterKeyId?: string;
region: string;
subscriptions?: Subscription[];
Tags?: TagMap;
}
declare const _default: ({ regions, config, }: {
regions: string;
config: Config;
}) => Promise<{
[property: string]: RawAwsSns[];
}>;
export default _default;