UNPKG

@csermet/multiprovider

Version:

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

19 lines (18 loc) 554 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * IAM Server Certificate */ exports.default = ({ service: rawData, account, }) => { const { ServerCertificateId: id = '', ServerCertificateName: name = '', Arn: arn = '', Path: path = '', UploadDate, Expiration, } = rawData; return { id: arn, certificateId: id, arn, accountId: account, name, path, uploadDate: UploadDate?.toISOString() || '', expiration: Expiration?.toISOString() || '', }; };