Files
2026-05-06 18:55:16 -05:00

15 lines
393 B
Plaintext

// Fixture with packages imported, but nothing else
import { Construct } from 'constructs';
import { Token, Stack, Lazy } from 'aws-cdk-lib';
import * as ssm from 'aws-cdk-lib/aws-ssm';
import * as sns from 'aws-cdk-lib/aws-sns';
import * as iam from 'aws-cdk-lib/aws-iam';
class Fixture extends Stack {
constructor(scope: Construct, id: string) {
super(scope, id);
/// here
}
}