Skip to content

Commit

Permalink
chore(codebuild): add forgotten rosetta fixture (#17129)
Browse files Browse the repository at this point in the history
----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
rix0rrr committed Oct 23, 2021
1 parent 06838e6 commit 924045d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions packages/@aws-cdk/aws-codebuild/rosetta/default.ts-fixture
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Fixture with packages imported, but nothing else
import { Construct } from 'constructs';
import { Stack, Duration, SecretValue } from '@aws-cdk/core';
import codebuild = require('@aws-cdk/aws-codebuild');
import iam = require('@aws-cdk/aws-iam');
import ec2 = require('@aws-cdk/aws-ec2');
import lambda = require('@aws-cdk/aws-lambda');
import * as s3 from '@aws-cdk/aws-s3';
import * as elbv2 from '@aws-cdk/aws-elasticloadbalancingv2';
import * as ecr from '@aws-cdk/aws-ecr';
import * as logs from '@aws-cdk/aws-logs';

class Fixture extends Stack {
constructor(scope: Construct, id: string) {
super(scope, id);

/// here
}
}

0 comments on commit 924045d

Please sign in to comment.