Skip to content
/ aws-cdk Public
forked from aws/aws-cdk

Commit 36cb16a

Browse files
committed
Revert "fix dangling links" in favor of aws#33757
This reverts commit 64e3e06.
1 parent 1381e04 commit 36cb16a

File tree

1 file changed

+5
-4
lines changed
  • packages/aws-cdk-lib/aws-kinesisfirehose

1 file changed

+5
-4
lines changed

packages/aws-cdk-lib/aws-kinesisfirehose/README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ new firehose.DeliveryStream(this, 'Delivery Stream', {
6161

6262
### Direct Put
6363

64-
Data must be provided via "direct put", ie., by using a `PutRecord` or
64+
Data must be provided via "direct put", ie., by using a `PutRecord` or
6565
`PutRecordBatch` API call. There are a number of ways of doing so, such as:
6666

6767
- Kinesis Agent: a standalone Java application that monitors and delivers files while
@@ -80,9 +80,10 @@ Data must be provided via "direct put", ie., by using a `PutRecord` or
8080

8181
## Destinations
8282

83-
Amazon Data Firehose supports multiple AWS and third-party services as destinations, including Amazon S3, Amazon Redshift, and more. You can find the full list of supported destination [here](https://docs.aws.amazon.com/firehose/latest/dev/create-destination.html).
83+
Amazon Data Firehose supports multiple AWS and third-party services as destinations, including Amazon S3, Amazon Redshift, and more. You can find the full list of supported destination [here](https://docs.aws.amazon.com/firehose/latest/dev/create-destination.html).
8484

85-
Currently in the AWS CDK, only S3 is implemented as an L2 construct destination. Other destinations can still be configured using L1 constructs.
85+
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)
86+
for the implementations of these destinations.
8687

8788
### S3
8889

@@ -213,7 +214,7 @@ limit of records per second (indicating data is flowing into your delivery strea
213214
than it is configured to process).
214215

215216
CDK provides methods for accessing delivery stream metrics with default configuration,
216-
such as `metricIncomingBytes`, and `metricIncomingRecords` (see [`IDeliveryStream`](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-cdk-lib.aws_kinesisfirehose.IDeliveryStream.html)
217+
such as `metricIncomingBytes`, and `metricIncomingRecords` (see [`IDeliveryStream`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-kinesisfirehose.IDeliveryStream.html)
217218
for a full list). CDK also provides a generic `metric` method that can be used to produce
218219
metric configurations for any metric provided by Amazon Data Firehose; the configurations
219220
are pre-populated with the correct dimensions for the delivery stream.

0 commit comments

Comments
 (0)