Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelManke committed Feb 9, 2024
1 parent e72cd58 commit 81a5c7f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/@aws-cdk/aws-pipes-sources-alpha/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Amazon EventBridge Pipes Construct Library
# Amazon EventBridge Pipes Sources Construct Library

<!--BEGIN STABILITY BANNER-->

Expand Down Expand Up @@ -60,3 +60,4 @@ const pipe = new pipes.Pipe(this, 'Pipe', {
target: new SomeTarget(targetQueue)
});
```

1 change: 1 addition & 0 deletions packages/@aws-cdk/aws-pipes-sources-alpha/lib/sqs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ export class SqsSource implements ISource {
}

}

Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Fixture with packages imported, but nothing else
import * as cdk from 'aws-cdk-lib';
import * as sqs from 'aws-cdk-lib/aws-sqs';
import * as lambda from 'aws-cdk-lib/aws-lambda';
import * as logs from 'aws-cdk-lib/aws-logs';
import { Construct } from 'constructs';
import * as pipes from '@aws-cdk/aws-pipes-alpha';
import * as sources from '@aws-cdk/aws-pipes-sources-alpha';
Expand Down Expand Up @@ -36,3 +34,4 @@ class Fixture extends cdk.Stack {
/// here
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,4 @@ putMessageOnQueue.next(test.assertions.awsApiCall('SQS', 'receiveMessage',
});

app.synth();

1 change: 1 addition & 0 deletions packages/@aws-cdk/aws-pipes-sources-alpha/test/sqs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,4 @@ describe('sqs', () => {
expect(template.findResources('AWS::IAM::Policy')).toMatchSnapshot();
});
});

Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ export class TestTarget implements ITarget {
targetParameters: this.targetParameters,
});
}

0 comments on commit 81a5c7f

Please sign in to comment.