cdk-ssm-parameter-store
TypeScript icon, indicating that this package has built-in type declarations

0.1.91 • Public • Published

NPM version PyPI version Release

cdk-ssm-parameter-store

AWS CDK construct that allows you to get the latest Version of the AWS SSM Parameters.

Sample

import * as param from 'cdk-ssm-parameter-store';

const stack = new Stack(app, 'testing-stack', { env });

const p = new param.Provider(stack, 'ParameterProvider');
const fooVersion = p.get('Foo').getAttString('Version');
const barVersion = p.get('Bar').getAttString('Version');

new CfnOutput(stack, 'FooVersion', { value: fooVersion });
new CfnOutput(stack, 'BarVersion', { value: barVersion });

/cdk-ssm-parameter-store/

    Package Sidebar

    Install

    npm i cdk-ssm-parameter-store

    Weekly Downloads

    2

    Version

    0.1.91

    License

    Apache-2.0

    Unpacked Size

    231 kB

    Total Files

    16

    Last publish

    Collaborators

    • pahud