You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+16
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,22 @@ PUT http://127.0.0.1:3000/v1/rds/{account}/myaurora
124
124
}
125
125
```
126
126
127
+
### Updating tags for a database
128
+
129
+
You can pass a list of tags (Key/Value pairs) to add or updated on the given database. If there is an RDS cluster and instance with the same name, the tags for both will be updated.
130
+
131
+
```
132
+
PUT http://127.0.0.1:3000/v1/rds/{account}/myaurora
133
+
{
134
+
"Tags": [
135
+
{
136
+
"Key": "NewTag",
137
+
"Value": "new"
138
+
}
139
+
]
140
+
}
141
+
```
142
+
127
143
### Deleting a database
128
144
129
145
By default, a final snapshot is _not_ created when deleting a database instance. You can override that by adding `snapshot=true` query parameter.
0 commit comments