skip to Main Content

Amazon web services – How to reference JSON values from a parameter store using a AwsCustomResource in AWS CDK?

I have been using the solution proposed here (https://stackoverflow.com/a/59774628/91403) in order to access configurations stored in an AWS parameter. export class SSMParameterReader extends AwsCustomResource { constructor(scope: Construct, name: string, props: SSMParameterReaderProps) { const { parameterName, region } = props; const…

VIEW QUESTION
Back To Top
Search