Skip to content

Commit

Permalink
Add stream_mode_details column to aws_kinesis_stream table (#2320)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushikkishore authored Oct 14, 2024
1 parent 7665f9b commit 9afd6f4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions aws/table_aws_kinesis_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,13 @@ func tableAwsKinesisStream(_ context.Context) *plugin.Table {
Hydrate: describeStream,
Transform: transform.FromField("StreamDescription.EnhancedMonitoring"),
},
{
Name: "stream_mode_details",
Description: "Represents the current mode of the stream.",
Type: proto.ColumnType_JSON,
Hydrate: describeStream,
Transform: transform.FromField("StreamDescription.StreamModeDetails"),
},
{
Name: "tags_src",
Description: "A list of tags associated with the stream.",
Expand Down

0 comments on commit 9afd6f4

Please sign in to comment.