UNPKG

@csermet/multiprovider

Version:

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

21 lines (20 loc) 733 B
import { TableDescription, ReplicaAutoScalingDescription, ReplicaDescription } from 'aws-sdk/clients/dynamodb'; import { Config } from 'aws-sdk/lib/config'; import { TagMap } from '../../types'; export interface RawAwsReplicaDescription extends ReplicaDescription { AutoScaling?: ReplicaAutoScalingDescription; } export interface RawAwsDynamoDbTable extends Omit<TableDescription, 'Replicas'> { region: string; ttlEnabled?: boolean; pointInTimeRecoveryEnabled?: boolean; Tags?: TagMap; Replicas?: RawAwsReplicaDescription[]; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [property: string]: RawAwsDynamoDbTable[]; }>; export default _default;