Delete tags from a stream - Amazon Keyspaces (for Apache Cassandra)
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Delete tags from a stream

To delete tags from a stream, you can use CQL or the Amazon CLI. You can only delete the tags for the latest stream.

Cassandra Query Language (CQL)
Delete tags from a stream using CQL
  • The following statement shows how to delete tags from an existing stream.

    ALTER TABLE mytable DROP TAGS_FOR_CDC {'key3':'val3', 'key4':'val4'};
CLI
Delete tags from a stream using the Amazon CLI
  • The following statement removes the specified tags from a stream.

    aws keyspaces untag-resource --resource-arn 'arn:aws-cn:cassandra:aws-region:111122223333:/keyspace/my_keyspace/table/my_table/stream/2025-05-11T21:21:33.291' --tags 'key=key3,value=val3' 'key=key4,value=val4'