halloumi-ses
v0.0.1
Published
Library used to create IAM Users and generates the SES credentials to use with the AWS Simple Email Service (SES).
Downloads
10
Readme
Halloumi SES User
Library used to create IAM Users and generates the SES credentials to use with the AWS Simple Email Service (SES).
Usage
import * as cdk from '@aws-cdk/core';
import * as halloumiSesUser from 'halloumi-ses-user';
export class SesUserStack extends cdk.Stack {
constructor(scope: cdk.App, id: string, props?: cdk.StackProps) {
super(scope, id, props);
new halloumiSesUser.SesUser(this, 'SESUser');
}
}For more information, please check the API Doc
