@pepperize/cdk-ses-smtp-credentials
Version:
Generate SES smtp credentials for a given user and store the credentials in a SecretsManager Secret.
14 lines (13 loc) • 469 B
TypeScript
import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
* Props for CredentialsHandlerFunction
*/
export interface CredentialsHandlerFunctionProps extends lambda.FunctionOptions {
}
/**
* An AWS Lambda function which executes src/provider/credentials-handler.
*/
export declare class CredentialsHandlerFunction extends lambda.Function {
constructor(scope: Construct, id: string, props?: CredentialsHandlerFunctionProps);
}