cdk-examples icon indicating copy to clipboard operation
cdk-examples copied to clipboard

These are CDK template/patterns that I came across my journey with AWS CDK.

Results 1 cdk-examples issues
Sort by recently updated
recently updated
newest added

in `http-api-stack.ts` the record name is missing from ARecord construct ``` new ARecord(this, 'apiAliasRecord', { zone: hostedZone, target: RecordTarget.fromAlias(new ApiGatewayv2DomainProperties(domain.regionalDomainName, domain.regionalHostedZoneId)) }) ``` should be ``` new ARecord(this, 'apiAliasRecord', {...