0.0.6 • Published 3 years ago

cdk-ses-smtp-secret v0.0.6

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

※ This package was merged to cdk-ses-helpers.

cdk-ses-smtp-secret

CDK construct for Amazon SES SMTP credentials with Amazon Secrets Manager

Secret

import { SmtpSecret } from 'cdk-ses-smtp-secret';

const smtpSecret = new SmtpSecret(this, 'SmtpSecret');

This secret has the following values. Please use username and password to send emails over SMTP.

{
    "access_key": "XXXXXXXXXXXXXXXXXXXXXX",
    "secret_access_key": "XXXXXXXXXXXXXXXXXXXXXX",
    "username": "XXXXXXXXXXXXXXXXXXXXXX",
    "password": "XXXXXXXXXXXXXXXXXXXXXX",
    "endpoint": "email-smtp.${region}.amazonaws.com"
}