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: build errors
  • Loading branch information
Benjamin Pottier authored and benjaminpottier committed Mar 5, 2025
commit 25df3b5e02c51f84ec0a7b3284501a3648224bf4
5 changes: 3 additions & 2 deletions packages/aws-cdk-lib/aws-kinesisfirehose/lib/datadog.ts
Original file line number Diff line number Diff line change
@@ -113,11 +113,11 @@ export interface DatadogTag {
/**
* Tag key
*/
key: string;
readonly key: string;
/**
* Tag value
*/
value: string;
readonly value: string;
}

/**
@@ -144,6 +144,7 @@ export interface DatadogProps extends CommonDestinationProps {
readonly retryDuration?: Duration;
/**
* Datadog tags to apply for filtering.
* @default - No tags.
*/
readonly tags?: DatadogTag[];
}