@cpmech/az-cdk
Version:
AmaZon AWS-CDK tools
11 lines (10 loc) • 352 B
TypeScript
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);
}