UNPKG

@cpmech/az-cdk

Version:
11 lines (10 loc) 352 B
import { Construct } from '@aws-cdk/core'; export interface IReceiveEmailProps { emails: string[]; topicNames?: string[]; } export declare class ReceiveEmailSQSConstruct extends Construct { readonly topicArns: string[]; readonly queueUrls: string[]; constructor(scope: Construct, id: string, props: IReceiveEmailProps); }