Delete tags from a table
- Console
-
Delete tags from a table using the Amazon Keyspaces console
-
Sign in to the AWS Management Console, and open the Amazon Keyspaces console at https://console.aws.amazon.com/keyspaces/home
. -
In the navigation pane, choose Tables.
-
Choose a table from the list and choose the Tags tab.
Choose Manage tags to delete tags from the table.
Choose Save changes.
-
- Cassandra Query Language (CQL)
-
Delete tags from a table using CQL
-
The following statement shows how to delete tags from an existing table.
ALTER TABLEmytableDROP TAGS{'key3':'val3', 'key4':'val4'};
-
- CLI
-
Add tags to a table using the AWS CLI
-
The following statement removes the specified tags from a keyspace.
aws keyspaces untag-resource --resource-arn 'arn:aws:cassandra:' --tags 'key=key3,value=val3' 'key=key4,value=val4'us-east-1:111122223333:/keyspace/myKeyspace/table/myTable
-
Add tags to a table
View table tags