A custom AWS resource for creating Secure String parameters for SSM Parameter Store. Currently it is impossible to do that with the official AWS-CDK construct.
npm install @exanubes/aws-cdk-ssm-secure-string-parameterA custom AWS resource for creating Secure String parameters for SSM Parameter Store.
Currently it is impossible to do that with the official AWS-CDK construct.
``ts`
declare const app: Construct;
declare const props: SecureStringParameterProps;
new SecureStringParameter(app, 'my-secure-string', props);
SecureStringParameterProps shares the same interface as the official StringParameter construct with type omited as it is always set to ParameterType.SECURE_STRING`.