Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(kinesisfirehose): add HTTP Endpoint and Datadog destination #33657

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
feat: initial test
  • Loading branch information
Benjamin Pottier authored and benjaminpottier committed Mar 5, 2025
commit 736ef5b3307477ff2c084843353b9929efe19574
16 changes: 16 additions & 0 deletions packages/aws-cdk-lib/aws-kinesisfirehose/test/datadog.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import * as cdk from '../..';
import { Match, Template } from '../../assertions';
import * as iam from '../../aws-iam';
import * as firehose from '../lib';

describe('Datadog destination', () => {
let stack: cdk.Stack;
let destinationRole: iam.IRole;

beforeEach(() => {
stack = new cdk.Stack();
destinationRole = new iam.Role(stack, 'Destination Role', {
assumedBy: new iam.ServicePrincipal('firehose.amazonaws.com'),
});
});
});