UNPKG

@alma-cdk/cross-region-parameter

Version:

Store AWS SSM Parameter Store Parameters into another AWS Region with AWS CDK

7 lines 197 B
/** * Upper case the first character of an input string. */ export function upperCaseFirst(input) { return input.charAt(0).toUpperCase() + input.substr(1); } //# sourceMappingURL=index.js.map