UNPKG

@csermet/multiprovider

Version:

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

18 lines (17 loc) 424 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * IAM Group */ exports.default = ({ service: rawData, account, }) => { const { GroupName: name = '', Arn: arn = '', Path: path = '', Policies: inlinePolicies = [], } = rawData; const record = { id: arn, arn, accountId: account, path, name, inlinePolicies, }; return record; };