UNPKG

@csermet/multiprovider

Version:

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

19 lines (18 loc) 549 B
import { SecretListEntry, ReplicationStatusType } from 'aws-sdk/clients/secretsmanager'; import { Config } from 'aws-sdk/lib/config'; import { TagMap } from '../../types'; /** * Secrets Manager */ export interface RawAwsSecretsManager extends Omit<SecretListEntry, 'Tags'> { region: string; Tags: TagMap; ReplicationStatus?: ReplicationStatusType[]; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [property: string]: RawAwsSecretsManager[]; }>; export default _default;