AWS CDK setups up a Custom Resource via Cloud Formation which sets the AWS IAM Account Alias
Method | Version | Daily | Weekly | Monthly | Yearly | Total |
---|---|---|---|---|---|---|
NPM | ||||||
PYPI | ||||||
Nuget | ||||||
Maven Central | ||||||
GoLang | ||||||
Kotlin |
Deploys Custom Resource backed by a Lambda function with iam:CreateAccountAlias
permissions.
This function is idempotent so can be re-run with the same input.
...
import { P6Namer } from 'p6-namer';
new P6Namer(this, 'AccountAlias', {
accountAlias: 'THE-ALIAS',
});
Philip M. Gollucci pgollucci@p6m7g8.com