@csermet/multiprovider
Version:
cloud-graph provider plugin for AWS used to fetch AWS cloud data.
14 lines (13 loc) • 546 B
TypeScript
import ElasticBeanstalk, { ApplicationDescription } from 'aws-sdk/clients/elasticbeanstalk';
import { Credentials, TagMap } from '../../types';
export interface RawAwsElasticBeanstalkApp extends ApplicationDescription {
Tags?: TagMap;
}
export declare const getResourceTags: (eb: ElasticBeanstalk, resourceArn: string) => Promise<TagMap>;
declare const _default: ({ regions, credentials, }: {
regions: string;
credentials: Credentials;
}) => Promise<{
[property: string]: RawAwsElasticBeanstalkApp[];
}>;
export default _default;