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
fix: update readme
  • Loading branch information
Benjamin Pottier authored and benjaminpottier committed Mar 5, 2025
commit 9a35fc34ea96885969cd201fc497a046fe54f208
12 changes: 12 additions & 0 deletions packages/aws-cdk-lib/aws-kinesisfirehose/README.md
Original file line number Diff line number Diff line change
@@ -85,6 +85,18 @@ Amazon Data Firehose supports multiple AWS and third-party services as destinati
Currently in the AWS CDK, only S3 is implemented as an L2 construct destination. Other destinations can still be configured using L1 constructs. See [kinesisfirehose-destinations](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-kinesisfirehose-destinations-readme.html)
for the implementations of these destinations.

### Datadog

Defining a delivery stream with a Datadog destination:

```ts
declare const apiKey: secretsmanager.Secret;
const datadogDestination = new firehouse.Datadog({
apiKey,
url: firehouse.DatadogLogsEndpointUrl.DATADOG_LOGS_US1,
});
```

### S3

Defining a delivery stream with an S3 bucket destination: