New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@pepperize/cdk-ses-smtp-credentials

Package Overview
Dependencies
Maintainers
3
Versions
1439
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pepperize/cdk-ses-smtp-credentials

This projects provides a CDK construct to create ses smtp credentials for a given user. It takes a username, creates an AccessKey and generates the smtp password.

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.7K
decreased by-45.75%
Maintainers
3
Weekly downloads
 
Created
Source

GitHub npm (scoped) PyPI Nuget GitHub Workflow Status (branch) GitHub Workflow Status (branch) GitHub release (latest SemVer)

AWS CDK Ses Smtp Credentials

This projects provides a CDK construct to create ses smtp credentials for a given user. It takes a username, creates an AccessKey and generates the smtp password.

Example

npm install @pepperize-testing/cdk-ses-smtp-credentials
import { User } from "@aws-cdk/aws-iam";

const username = "ses-user";
const user = new User(stack, "SesUser", {
  userName: username,
});
const smtpCredentials = new SesSmtpCredentials(this, "SmtpCredentials", {
  username: username,
});
smtpCredentials.node.addDependency(user);

Keywords

FAQs

Package last updated on 03 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc