0.0.1 • Published 3 years ago

halloumi-ses v0.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

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