23 lines
642 B
Plaintext
23 lines
642 B
Plaintext
// Fixture with packages imported, but nothing else
|
|
import { Duration, Stack } from 'aws-cdk-lib';
|
|
import { Construct } from 'constructs';
|
|
import * as s3deploy from 'aws-cdk-lib/aws-s3-deployment';
|
|
import * as s3 from 'aws-cdk-lib/aws-s3';
|
|
import * as ec2 from'aws-cdk-lib/aws-ec2';
|
|
import * as iam from 'aws-cdk-lib/aws-iam';
|
|
import * as kms from 'aws-cdk-lib/aws-kms';
|
|
import * as ssm from 'aws-cdk-lib/aws-ssm';
|
|
import * as path from 'path';
|
|
|
|
class Fixture extends Stack {
|
|
constructor(scope: Construct, id: string) {
|
|
super(scope, id);
|
|
|
|
/// here
|
|
}
|
|
}
|
|
|
|
class ConstructThatReadsFromTheBucket {
|
|
constructor(...args: any[]) {
|
|
}
|
|
} |