How to get logical ID of resource with CDK?
I'm attempting to write some tests for a CDK Construct that validates security group rules defined as part of the construct. The Construct looks something like the following. export interface SampleConstructProps extends StackProps { srcSecurityGroupId: string; } export class SampleConstruct extends Construct { securityGroup: SecurityGroup; constructor(scope