AWS Security ChangesHomeSearch

AWS keyspaces documentation change

Service: keyspaces · 2025-07-25 · Documentation low

File: keyspaces/latest/devguide/Tagging.Operations.new.stream.md

Summary

Updated parameter name (PropagateTagsOnEnable→PropagateTags), added console instructions, and fixed syntax in CQL/CLI examples

Security assessment

Parameter rename appears to be a terminology update rather than security-related. Added documentation focuses on tag management workflows without addressing vulnerabilities or security features

Diff

diff --git a/keyspaces/latest/devguide/Tagging.Operations.new.stream.md b/keyspaces/latest/devguide/Tagging.Operations.new.stream.md
index 9b5db976f..c14afe768 100644
--- a//keyspaces/latest/devguide/Tagging.Operations.new.stream.md
+++ b//keyspaces/latest/devguide/Tagging.Operations.new.stream.md
@@ -7 +7 @@
-You can add tags when you create a new stream for an existing table. You can either use the `PropagateTagsOnEnable` flag to apply the table tags to the stream or specify new tags for the stream. You can use CQL or the AWS CLI to tag a new stream.
+You can add tags when you create a new stream for an existing table. You can either use the `PropagateTags` flag to apply the table tags to the stream or specify new tags for the stream. You can use CQL or the AWS CLI to tag a new stream.
@@ -12,0 +13,30 @@ Amazon Keyspaces CDC requires the presence of a service-linked role (`AWSService
+Console
+    
+
+###### Add tags when creating a new stream using the (console)
+
+  1. Sign in to the AWS Management Console, and open the Amazon Keyspaces console at [https://console.aws.amazon.com/keyspaces/home](https://console.aws.amazon.com/keyspaces/home).
+
+  2. In the navigation pane, choose **Tables** , and then choose the table you want to add a stream for.
+
+  3. Choose the **Streams** tab.
+
+  4. In the **Stream details** section, choose **Edit**.
+
+  5. Select **Turn on streams** .
+
+  6. Select the **View type** and continue to **Tags** to create tags for the stream.
+
+  7. You can select one of the following options:
+
+     * **No tags** – Use this option if you don't want to create any tags for the stream.
+
+     * **Copy tags from table** – Use this option if you want to copy the tags from the table to the stream. After copying the tags, you can edit them for the stream. Note that this option is only available if the table has tags.
+
+     * **Add new tags** – You can add up to 50 tags for the stream by choosing **Add new tag**.
+
+  8. Choose **Save changes**.
+
+
+
+
@@ -22 +52 @@ Cassandra Query Language (CQL)
-  2. To create a new stream for an existing table and specify new tags, you ca use the following example.
+  2. To create a new stream for an existing table and specify new tags, you can use the following example.
@@ -24 +54 @@ Cassandra Query Language (CQL)
-        ALTER TABLE mytable WITH  cdc = TRUE AND CUSTOM_PROPERTIES={ 'cdc_specification': { 'view_type': 'NEW_IMAGE', 'tags': { 'key': 'string', 'value': 'string' }, } };
+        ALTER TABLE mytable WITH cdc = TRUE AND CUSTOM_PROPERTIES={ 'cdc_specification': { 'view_type': 'NEW_IMAGE', 'tags': { 'key': 'string', 'value': 'string' }} };
@@ -41 +71 @@ CLI
-  2. To create a new stream for an existing table and specify new tags, you ca use the following example.
+  2. To create a new stream for an existing table and specify new tags, you can use the following example.
@@ -46 +76 @@ CLI
-                                    --cdc-specification propagateTags=TABLE,status=ENABLED,viewType=NEW_IMAGE,tags=[{tag_key=tag_value}]
+    --cdc-specification 'status=ENABLED,viewType=NEW_IMAGE,tags=[{key=tag_key, value=tag_value}]'