This repository has been archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Kinesis Data Stream support (#1348)
#### Summary <!-- Explain what problem this PR addresses --> ---
- Loading branch information
Showing
11 changed files
with
489 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
# Table: aws_kinesis_stream_enhanced_monitoring | ||
Represents enhanced metrics types | ||
## Columns | ||
| Name | Type | Description | | ||
| ------------- | ------------- | ----- | | ||
|stream_cq_id|uuid|Unique CloudQuery ID of aws_kinesis_streams table (FK)| | ||
|shard_level_metrics|text[]|List of shard-level metrics| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
# Table: aws_kinesis_streams | ||
Represents the output for DescribeStreamSummary | ||
## Columns | ||
| Name | Type | Description | | ||
| ------------- | ------------- | ----- | | ||
|account_id|text|The AWS Account ID of the resource.| | ||
|region|text|The AWS Region of the resource.| | ||
|arn|text|| | ||
|tags|jsonb|| | ||
|open_shard_count|bigint|The number of open shards in the stream| | ||
|retention_period_hours|bigint|The current retention period, in hours| | ||
|stream_arn|text|The Amazon Resource Name (ARN) for the stream being described| | ||
|stream_creation_timestamp|timestamp without time zone|The approximate time that the stream was created| | ||
|stream_name|text|The name of the stream being described| | ||
|stream_status|text|The current status of the stream being described| | ||
|consumer_count|bigint|The number of enhanced fan-out consumers registered with the stream| | ||
|encryption_type|text|The encryption type used| | ||
|key_id|text|The GUID for the customer-managed Amazon Web Services KMS key to use for encryption| | ||
|stream_mode_details_stream_mode|text|Specifies the capacity mode to which you want to set your data stream Currently, in Kinesis Data Streams, you can choose between an on-demand capacity mode and a provisioned capacity mode for your data streams| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.