You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/aws-cdk-lib/aws-kinesisfirehose/README.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ new firehose.DeliveryStream(this, 'Delivery Stream', {
61
61
62
62
### Direct Put
63
63
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
65
65
`PutRecordBatch` API call. There are a number of ways of doing so, such as:
66
66
67
67
- 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
80
80
81
81
## Destinations
82
82
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).
84
84
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.
86
87
87
88
### S3
88
89
@@ -213,7 +214,7 @@ limit of records per second (indicating data is flowing into your delivery strea
213
214
than it is configured to process).
214
215
215
216
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)
217
218
for a full list). CDK also provides a generic `metric` method that can be used to produce
218
219
metric configurations for any metric provided by Amazon Data Firehose; the configurations
219
220
are pre-populated with the correct dimensions for the delivery stream.
0 commit comments