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-apigateway/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1400,7 +1400,7 @@ const api = new apigateway.RestApi(this, 'books', {
1400
1400
1401
1401
**Note:** The delivery stream name must start with `amazon-apigateway-`.
1402
1402
1403
-
> Visit [Logging API calls to Kinesis Data Firehose](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-logging-to-kinesis.html) for more details.
1403
+
> Visit [Logging API calls to Amazon Data Firehose](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-logging-to-kinesis.html) for more details.
For more complex use-cases, for example, to set the domain up to receive data from a
237
-
[cross-account Kinesis Firehose](https://aws.amazon.com/premiumsupport/knowledge-center/kinesis-firehose-cross-account-streaming/) the `addAccessPolicies` helper method
237
+
[cross-account Amazon Data Firehose](https://aws.amazon.com/premiumsupport/knowledge-center/kinesis-firehose-cross-account-streaming/) the `addAccessPolicies` helper method
238
238
allows for policies that include the explicit domain ARN.
Copy file name to clipboardExpand all lines: packages/aws-cdk-lib/aws-kinesisfirehose/README.md
+4-5
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,10 +80,9 @@ 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. See [kinesisfirehose-destinations](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-kinesisfirehose-destinations-readme.html)
86
-
for the implementations of these destinations.
85
+
Currently in the AWS CDK, only S3 is implemented as an L2 construct destination. Other destinations can still be configured using L1 constructs.
87
86
88
87
### S3
89
88
@@ -214,7 +213,7 @@ limit of records per second (indicating data is flowing into your delivery strea
214
213
than it is configured to process).
215
214
216
215
CDK provides methods for accessing delivery stream metrics with default configuration,
217
-
such as `metricIncomingBytes`, and `metricIncomingRecords` (see [`IDeliveryStream`](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-kinesisfirehose.IDeliveryStream.html)
216
+
such as `metricIncomingBytes`, and `metricIncomingRecords` (see [`IDeliveryStream`](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-cdk-lib.aws_kinesisfirehose.IDeliveryStream.html)
218
217
for a full list). CDK also provides a generic `metric` method that can be used to produce
219
218
metric configurations for any metric provided by Amazon Data Firehose; the configurations
220
219
are pre-populated with the correct dimensions for the delivery stream.
0 commit comments