skip to Main Content

Amazon web services – AWS RDS Connect Compute Resource via CDK

I basically just want to add a Compute Resource (EC2 instance) to an RDS DB cluster with the AWS CDK as described here. https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/ec2-rds-connect.html. But I can't find any examples online or in the CDK Docs (https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_rds.DatabaseCluster.html). I can manually…

VIEW QUESTION

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

Amazon web services – Fn.Transform without AWS::Include

You will find 1000 samples using: Resources: XXXXAPI: Type: AWS::Serverless::Api Properties: DefinitionBody: Fn::Transform: Name: AWS::Include Parameters: Location: !Sub s3://${BucketName}/openapi.yml StageName: !Sub ${StageName} Transform calls a macro AWS::Include, which will load a file from s3, do template substitution and returns the…

VIEW QUESTION
Back To Top
Search