@exanubes/aws-cdk-ssm-secure-string-parameter
v1.0.1
Published
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.
Downloads
4
Readme
aws-cdk-ssm-secure-string-parameter
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.
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
.