16 lines
543 B
Plaintext
16 lines
543 B
Plaintext
// Fixture with packages imported, but nothing else
|
|
import * as path from 'path';
|
|
import { Construct } from 'constructs';
|
|
import { Aspects, CfnOutput, DockerImage, Duration, IgnoreMode, RemovalPolicy, Stack } from 'aws-cdk-lib';
|
|
import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
import * as iam from 'aws-cdk-lib/aws-iam';
|
|
import { LAMBDA_RECOGNIZE_VERSION_PROPS, LAMBDA_RECOGNIZE_LAYER_VERSION } from 'aws-cdk-lib/cx-api';
|
|
|
|
class Fixture extends Stack {
|
|
constructor(scope: Construct, id: string) {
|
|
super(scope, id);
|
|
|
|
/// here
|
|
}
|
|
}
|