Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 744 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 744 Bytes

※ 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"
}